@charset "UTF-8";
/* ------------------------------------------------------------------------------
 *
 *  # Additional variables
 *
 *  Mainly 3rd party libraries and additional variables for default
 *  Bootstrap components.
 *
 * ---------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------
 *
 *  # Custom DecMuc functions
 *
 *  Utility mixins and functions for evalutating source code across our variables, maps, and mixins.
 *
 * ---------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------
 *
 *  # Custom template mixins
 *
 *  All custom mixins are prefixed with "ll-" to avoid conflicts
 *
 * ---------------------------------------------------------------------------- */
:root,
[data-color-theme=light] {
  --blue: #0d6efd;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #d63384;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #198754;
  --teal: #20c997;
  --cyan: #0dcaf0;
  --black: #000;
  --white: #fff;
  --gray: rgb(89.4, 90.12, 91.56);
  --gray-dark: rgb(48, 48.9, 50.7);
  --gray-100: rgb(236.6, 236.68, 236.84);
  --gray-200: rgb(218.2, 218.36, 218.68);
  --gray-300: rgb(190.6, 190.88, 191.44);
  --gray-400: rgb(153.8, 154.24, 155.12);
  --gray-500: rgb(117, 117.6, 118.8);
  --gray-600: rgb(89.4, 90.12, 91.56);
  --gray-700: rgb(66.4, 67.22, 68.86);
  --gray-800: rgb(48, 48.9, 50.7);
  --gray-900: rgb(34.2, 35.16, 37.08);
  --primary: #eaff48;
  --secondary: #c67416;
  --tertiary: #10b981;
  --quaternary: #780752;
  --success: #7ece25;
  --info: #0ea5e9;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #191a1c;
  --primary-rgb: 234, 255, 72;
  --secondary-rgb: 198, 116, 22;
  --tertiary-rgb: 16, 185, 129;
  --quaternary-rgb: 120, 7, 82;
  --success-rgb: 126, 206, 37;
  --info-rgb: 14, 165, 233;
  --warning-rgb: 255, 193, 7;
  --danger-rgb: 220, 53, 69;
  --light-rgb: 248, 249, 250;
  --dark-rgb: 25, 26, 28;
  --body-color-rgb: 25, 26, 28;
  --body-bg-rgb: 255, 255, 255;
  --font-sans-serif: "Manrope", system-ui, -apple-system, sans-serif;
  --font-monospace: "Courier New", monospace;
  --gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --body-font-family: var(--font-sans-serif);
  --body-font-size: 1rem;
  --body-font-weight: 400;
  --body-line-height: 1.5;
  --body-color: #191a1c;
  --body-bg: #ffffff;
  --border-width: 1px;
  --border-style: solid;
  --border-color: rgb(190.6, 190.88, 191.44);
  --border-color-translucent: rgba(0, 0, 0, 0.175);
  --border-radius: 0.375rem;
  --border-radius-sm: 0.25rem;
  --border-radius-lg: 0.5rem;
  --border-radius-xl: 1rem;
  --border-radius-2xl: 2rem;
  --border-radius-pill: 50rem;
  --link-color: #eaff48;
  --link-hover-color: rgb(187.2, 204, 57.6);
  --code-color: #d63384;
  --highlight-bg: rgb(255, 242.6, 205.4);
}

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

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

body {
  margin: 0;
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
  color: var(--body-color);
  text-align: var(--body-text-align);
  background-color: var(--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(--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(--link-color);
  text-decoration: underline;
}
a:hover {
  color: var(--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(--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(--code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--body-bg);
  background-color: var(--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: rgb(89.4, 90.12, 91.56);
  text-align: left;
}

th {
  font-weight: 600;
  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);
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend {
  line-height: inherit;
}
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);
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}
.display-1 {
  font-weight: 300;
  line-height: 1.2;
}

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

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

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

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

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

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

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

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

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

.blockquote {
  --blockquote-margin-y: 1rem;
  --blockquote-font-size: 1.25rem;
  --blockquote-footer-font-size: 0.875em;
  --blockquote-footer-color: rgb(89.4, 90.12, 91.56);
  margin-bottom: var(--blockquote-margin-y);
  font-size: var(--blockquote-font-size);
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: calc(var(--blockquote-margin-y) * -1);
  margin-bottom: var(--blockquote-margin-y);
  font-size: var(--blockquote-footer-font-size);
  color: var(--blockquote-footer-color);
}
.blockquote-footer::before {
  content: "— ";
}

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

.img-thumbnail {
  --thumbnail-padding: 0.25rem;
  --thumbnail-bg: #ffffff;
  --thumbnail-border-width: 1px;
  --thumbnail-border-color: var(--border-color);
  --thumbnail-border-radius: 0.375rem;
  --thumbnail-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding: var(--thumbnail-padding);
  background-color: var(--thumbnail-bg);
  border: var(--thumbnail-border-width) solid var(--thumbnail-border-color);
  border-radius: var(--thumbnail-border-radius);
  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: rgb(89.4, 90.12, 91.56);
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --gutter-x: 1.5rem;
  --gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--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 {
  --gutter-x: 1.5rem;
  --gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--gutter-y));
  margin-right: calc(-0.5 * var(--gutter-x));
  margin-left: calc(-0.5 * var(--gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-top: var(--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 {
  --gutter-x: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.table-group-divider {
  border-top: calc(var(--table-border-width) * 2) solid var(--table-group-separator-color);
}

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

.table-sm {
  --table-cell-padding-y: 0.25rem;
  --table-cell-padding-x: 0.25rem;
}

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

.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) > * {
  --table-accent-bg: var(--table-striped-bg);
  color: var(--table-striped-color);
}

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

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

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

.table-primary {
  --table-color: #000;
  --table-bg: rgb(250.8, 255, 218.4);
  --table-border-color: rgb(225.72, 229.5, 196.56);
  --table-striped-bg: rgb(238.26, 242.25, 207.48);
  --table-striped-color: #000;
  --table-active-bg: rgb(225.72, 229.5, 196.56);
  --table-active-color: #000;
  --table-hover-bg: rgb(231.99, 235.875, 202.02);
  --table-hover-color: #000;
  color: var(--table-color);
  border-color: var(--table-border-color);
}

.table-secondary {
  --table-color: #000;
  --table-bg: rgb(243.6, 227.2, 208.4);
  --table-border-color: rgb(219.24, 204.48, 187.56);
  --table-striped-bg: rgb(231.42, 215.84, 197.98);
  --table-striped-color: #000;
  --table-active-bg: rgb(219.24, 204.48, 187.56);
  --table-active-color: #fff;
  --table-hover-bg: rgb(225.33, 210.16, 192.77);
  --table-hover-color: #000;
  color: var(--table-color);
  border-color: var(--table-border-color);
}

.table-success {
  --table-color: #000;
  --table-bg: rgb(229.2, 245.2, 211.4);
  --table-border-color: rgb(206.28, 220.68, 190.26);
  --table-striped-bg: rgb(217.74, 232.94, 200.83);
  --table-striped-color: #000;
  --table-active-bg: rgb(206.28, 220.68, 190.26);
  --table-active-color: #000;
  --table-hover-bg: rgb(212.01, 226.81, 195.545);
  --table-hover-color: #000;
  color: var(--table-color);
  border-color: var(--table-border-color);
}

.table-info {
  --table-color: #000;
  --table-bg: rgb(206.8, 237, 250.6);
  --table-border-color: rgb(186.12, 213.3, 225.54);
  --table-striped-bg: rgb(196.46, 225.15, 238.07);
  --table-striped-color: #000;
  --table-active-bg: rgb(186.12, 213.3, 225.54);
  --table-active-color: #fff;
  --table-hover-bg: rgb(191.29, 219.225, 231.805);
  --table-hover-color: #000;
  color: var(--table-color);
  border-color: var(--table-border-color);
}

.table-warning {
  --table-color: #000;
  --table-bg: rgb(255, 242.6, 205.4);
  --table-border-color: rgb(229.5, 218.34, 184.86);
  --table-striped-bg: rgb(242.25, 230.47, 195.13);
  --table-striped-color: #000;
  --table-active-bg: rgb(229.5, 218.34, 184.86);
  --table-active-color: #000;
  --table-hover-bg: rgb(235.875, 224.405, 189.995);
  --table-hover-color: #000;
  color: var(--table-color);
  border-color: var(--table-border-color);
}

.table-danger {
  --table-color: #000;
  --table-bg: rgb(248, 214.6, 217.8);
  --table-border-color: rgb(223.2, 193.14, 196.02);
  --table-striped-bg: rgb(235.6, 203.87, 206.91);
  --table-striped-color: #000;
  --table-active-bg: rgb(223.2, 193.14, 196.02);
  --table-active-color: #fff;
  --table-hover-bg: rgb(229.4, 198.505, 201.465);
  --table-hover-color: #fff;
  color: var(--table-color);
  border-color: var(--table-border-color);
}

.table-light {
  --table-color: #000;
  --table-bg: #f8f9fa;
  --table-border-color: rgb(223.2, 224.1, 225);
  --table-striped-bg: rgb(235.6, 236.55, 237.5);
  --table-striped-color: #000;
  --table-active-bg: rgb(223.2, 224.1, 225);
  --table-active-color: #000;
  --table-hover-bg: rgb(229.4, 230.325, 231.25);
  --table-hover-color: #000;
  color: var(--table-color);
  border-color: var(--table-border-color);
}

.table-dark {
  --table-color: #fff;
  --table-bg: #191a1c;
  --table-border-color: rgb(48, 48.9, 50.7);
  --table-striped-bg: rgb(36.5, 37.45, 39.35);
  --table-striped-color: #fff;
  --table-active-bg: rgb(48, 48.9, 50.7);
  --table-active-color: #fff;
  --table-hover-bg: rgb(42.25, 43.175, 45.025);
  --table-hover-color: #fff;
  color: var(--table-color);
  border-color: var(--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 {
  --form-label-margin-bottom: 0.5rem;
  margin-bottom: var(--form-label-margin-bottom);
}

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

.col-form-label-lg {
  --form-label-padding-y: 0.5rem;
  --form-label-font-size: 1.125rem;
}

.col-form-label-sm {
  --form-label-padding-y: 0.25rem;
  --form-label-font-size: 0.875rem;
}

.form-text {
  --form-text-color: rgb(89.4, 90.12, 91.56);
  --form-text-margin-top: 0.25rem;
  --form-text-font-size: 0.875em;
  --form-text-font-style: ;
  --form-text-font-weight: ;
  margin-top: var(--form-text-margin-top);
  font-size: var(--form-text-font-size);
  font-style: var(--form-text-font-style);
  font-weight: var(--form-text-font-weight);
  color: var(--form-text-color);
}

.form-control {
  --input-padding-y: 0.375rem;
  --input-padding-x: 0.75rem;
  --input-height: calc(1.5em + 0.75rem + 2px);
  --input-bg: #ffffff;
  --input-color: #191a1c;
  --input-plaintext-color: #191a1c;
  --input-placeholder-color: rgb(89.4, 90.12, 91.56);
  --input-font-weight: 400;
  --input-font-size: 1rem;
  --input-line-height: 1.5;
  --input-border-width: 1px;
  --input-border-color: rgb(153.8, 154.24, 155.12);
  --input-border-radius: 0.375rem;
  --input-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --input-focus-bg: #ffffff;
  --input-focus-border-color: rgb(244.5, 255, 163.5);
  --input-focus-box-shadow: 0 0 0 0.25rem rgba(234, 255, 72, 0.25);
  --input-disabled-bg: rgb(218.2, 218.36, 218.68);
  --input-disabled-border-color: var(--gray-400);
  display: block;
  width: 100%;
  padding: var(--input-padding-y) var(--input-padding-x);
  font-size: var(--input-font-size);
  font-weight: var(--input-font-weight);
  line-height: var(--input-line-height);
  color: var(--input-color);
  background-color: var(--input-bg);
  background-clip: padding-box;
  border: var(--input-border-width) solid var(--input-border-color);
  appearance: none;
  border-radius: var(--input-border-radius);
  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] {
  --form-file-button-color: #191a1c;
  --form-file-button-bg: rgb(218.2, 218.36, 218.68);
  --form-file-button-hover-bg: rgb(207.29, 207.442, 207.746);
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #191a1c;
  background-color: var(--input-focus-bg);
  border-color: var(--input-focus-border-color);
  outline: 0;
  box-shadow: var(--input-focus-box-shadow);
}
.form-control::-webkit-date-and-time-value {
  height: var(--body-line-height-computed);
}
.form-control::placeholder {
  color: var(--input-placeholder-color);
  opacity: 1;
}
.form-control:disabled {
  color: var(--input-disabled-color);
  background-color: var(--input-disabled-bg);
  border-color: var(--input-disabled-border-color);
  opacity: 1;
}
.form-control::file-selector-button {
  padding: var(--input-padding-y) var(--input-padding-x);
  margin: calc(var(--input-padding-y) * -1) calc(var(--input-padding-x) * -1);
  margin-inline-end: var(--input-padding-x);
  color: var(--form-file-button-color);
  background-color: var(--form-file-button-bg);
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: var(--input-border-width);
  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: var(--form-file-button-hover-bg);
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: var(--input-padding-y) 0;
  margin-bottom: 0;
  line-height: var(--input-line-height);
  color: var(--input-plaintext-color);
  background-color: transparent;
  border: solid transparent;
  border-width: var(--input-border-width) 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 {
  --input-height: calc(1.5em + 0.5rem + 2px);
  --input-padding-y: 0.25rem;
  --input-padding-x: 0.5rem;
  --input-font-size: 0.875rem;
  --input-line-height: var(--body-line-height-sm);
  --input-border-radius: 0.25rem;
}

.form-control-lg {
  --input-height: calc(1.5em + 1rem + 2px);
  --input-padding-y: 0.5rem;
  --input-padding-x: 1rem;
  --input-font-size: 1.125rem;
  --input-line-height: var(--body-line-height-lg);
  --input-border-radius: 0.5rem;
}

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

.form-control-color {
  width: 3rem;
  height: auto;
  padding: var(--input-padding-y);
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  height: var(--body-line-height-computed);
  border-radius: var(--input-border-radius);
}
.form-control-color::-webkit-color-swatch {
  height: var(--body-line-height-computed);
  border-radius: var(--input-border-radius);
}

.form-select {
  --form-select-padding-y: 0.375rem;
  --form-select-padding-x: 0.75rem;
  --form-select-bg: #ffffff;
  --form-select-bg-position: right 0.75rem center;
  --form-select-bg-size: 16px 12px;
  --form-select-color: #191a1c;
  --form-select-font-family: ;
  --form-select-font-size: 1rem;
  --form-select-line-height: 1.5;
  --form-select-border-width: 1px;
  --form-select-border-color: rgb(153.8, 154.24, 155.12);
  --form-select-border-radius: 0.375rem;
  --form-select-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --form-select-focus-border-color: rgb(244.5, 255, 163.5);
  --form-select-focus-box-shadow: 0 0 0 0.25rem rgba(234, 255, 72, 0.25);
  --form-select-disabled-color: #191a1c;
  --form-select-disabled-bg: rgb(218.2, 218.36, 218.68);
  --form-select-disabled-border-color: var(--gray-400);
  --form-select-indicator-padding: 2.25rem;
  display: block;
  width: 100%;
  padding: var(--form-select-padding-y) var(--form-select-indicator-padding) var(--form-select-padding-y) var(--form-select-padding-x);
  -moz-padding-start: calc(var(--form-select-padding-x) - 3px);
  font-family: var(--form-select-font-family);
  font-size: var(--form-select-font-size);
  font-weight: 400;
  line-height: var(--form-select-line-height);
  color: var(--form-select-color);
  background-color: var(--form-select-bg);
  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='rgb%2848, 48.9, 50.7%29' 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: var(--form-select-bg-position);
  background-size: var(--form-select-bg-size);
  border: var(--form-select-border-width) solid var(--form-select-border-color);
  border-radius: var(--form-select-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select {
  appearance: none;
}
.form-select:focus {
  border-color: var(--form-select-focus-border-color);
  outline: 0;
  box-shadow: var(--form-select-focus-box-shadow);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: var(--form-select-padding-x);
  background-image: none;
}
.form-select:disabled {
  color: var(--form-select-disabled-color);
  background-color: var(--form-select-disabled-bg);
  border-color: var(--form-select-disabled-border-color);
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--form-select-color);
}

.form-select-sm {
  --form-select-padding-y: 0.25rem;
  --form-select-padding-x: 0.5rem;
  --form-select-font-size: 0.875rem;
  --form-select-line-height: var(--body-line-height-sm);
  --form-select-border-radius: 0.25rem;
}

.form-select-lg {
  --form-select-padding-y: 0.5rem;
  --form-select-padding-x: 1rem;
  --form-select-font-size: 1.125rem;
  --form-select-line-height: var(--body-line-height-lg);
  --form-select-border-radius: 0.5rem;
}

.form-check {
  --form-check-min-height: 1.5rem;
  --form-check-padding-start: 1.5em;
  --form-check-margin-bottom: 0.125rem;
  display: block;
  min-height: var(--form-check-min-height);
  padding-left: var(--form-check-padding-start);
  margin-bottom: var(--form-check-margin-bottom);
}
.form-check .form-check-input {
  float: left;
  margin-left: calc(var(--form-check-padding-start) * -1);
}

.form-check-reverse {
  padding-right: var(--form-check-padding-start);
  padding-left: 0;
  text-align: right;
}
.form-check-reverse .form-check-input {
  float: right;
  margin-right: calc(var(--form-check-padding-start) * -1);
  margin-left: 0;
}

.form-check-input {
  --form-check-input-width: 1em;
  --form-check-input-height: 1em;
  --form-check-input-bg: #ffffff;
  --form-check-input-border: 1px solid rgba(0, 0, 0, 0.25);
  --form-check-input-border-radius: 0.25em;
  --form-check-input-focus-border: rgb(244.5, 255, 163.5);
  --form-check-input-focus-box-shadow: 0 0 0 0.25rem rgba(234, 255, 72, 0.25);
  --form-check-input-checked-bg-color: #eaff48;
  --form-check-input-checked-border-color: #eaff48;
  --form-check-input-disabled-opacity: 0.5;
  --form-check-input-indeterminate-bg-color: #eaff48;
  --form-check-input-indeterminate-border-color: #eaff48;
  --form-check-checked-bg-color-rgb: var(--component-active-bg-rgb);
  --form-check-checked-border-color: #eaff48;
  --form-check-radio-border-radius: 50%;
  width: var(--form-check-input-width);
  height: var(--form-check-input-height);
  margin-top: calc((var(--body-line-height) - var(--form-check-input-height)) * 0.5);
  vertical-align: top;
  background-color: var(--form-check-input-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--form-check-input-border);
  appearance: none;
  print-color-adjust: exact;
  transition: box-shadow var(--transition-base-timer) ease-in-out, border-color var(--transition-base-timer) ease-in-out, background-color var(--transition-base-timer) ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-check-input {
    transition: none;
  }
}
.form-check-input[type=checkbox] {
  border-radius: var(--form-check-input-border-radius);
}
.form-check-input[type=radio] {
  border-radius: var(--form-check-radio-border-radius);
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: var(--form-check-input-focus-border);
  outline: 0;
  box-shadow: var(--form-check-input-focus-box-shadow);
}
.form-check-input:checked {
  background-color: var(--form-check-input-checked-bg-color);
  border-color: var(--form-check-input-checked-border-color);
}
.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: var(--form-check-input-indeterminate-bg-color);
  border-color: var(--form-check-input-indeterminate-border-color);
  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: var(--form-check-input-disabled-opacity);
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: var(--form-check-label-disabled-opacity);
}

.form-check-label {
  --form-check-label-disabled-opacity: 0.5;
}

.form-switch {
  --form-check-padding-start: 2.5em;
}
.form-switch .form-check-input {
  --form-check-input-width: 2em;
  --form-check-input-border-radius: 2em;
  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;
  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='rgb%28244.5, 255, 163.5%29'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-inline {
  --form-check-inline-margin-end: 1rem;
  display: inline-block;
  margin-right: var(--form-check-inline-margin-end);
}

.btn-check {
  --form-check-btn-check-disabled-opacity: 0.65;
  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: var(--form-check-btn-check-disabled-opacity);
}

.form-range {
  --form-range-thumb-width: 1rem;
  --form-range-thumb-height: 1rem;
  --form-range-thumb-focus-box-shadow-width: 0.25rem;
  --form-range-thumb-focus-box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.25rem rgba(234, 255, 72, 0.25);
  --form-range-thumb-bg: #eaff48;
  --form-range-thumb-border: 0;
  --form-range-thumb-border-radius: 1rem;
  --form-range-thumb-box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
  --form-range-thumb-active-bg: rgb(248.7, 255, 200.1);
  --form-range-thumb-disabled-bg: rgb(117, 117.6, 118.8);
  --form-range-track-width: 100%;
  --form-range-track-height: 0.5rem;
  --form-range-track-bg: rgb(190.6, 190.88, 191.44);
  --form-range-track-border-radius: 1rem;
  --form-range-track-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  width: 100%;
  height: calc(--form-range-thumb-height + calc(var(--form-range-thumb-focus-box-shadow-width) * 2));
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: var(--form-range-thumb-focus-box-shadow);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: var(--form-range-thumb-focus-box-shadow);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: var(--form-range-thumb-width);
  height: var(--form-range-thumb-height);
  margin-top: calc((var(--form-range-track-height) - var(--form-range-thumb-height)) * 0.5);
  background-color: var(--form-range-thumb-bg);
  border: var(--form-range-thumb-border);
  border-radius: var(--form-range-thumb-border-radius);
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    transition: none;
  }
}
.form-range::-webkit-slider-thumb {
  appearance: none;
}
.form-range::-webkit-slider-thumb:active {
  background-color: var(--form-range-thumb-active-bg);
}
.form-range::-webkit-slider-runnable-track {
  width: var(--form-range-track-width);
  height: var(--form-range-track-height);
  color: transparent;
  cursor: pointer;
  background-color: var(--form-range-track-bg);
  border-color: transparent;
  border-radius: var(--form-range-track-border-radius);
}
.form-range::-moz-range-thumb {
  width: var(--form-range-thumb-width);
  height: var(--form-range-thumb-height);
  background-color: var(--form-range-thumb-bg);
  border: var(--form-range-thumb-border);
  border-radius: var(--form-range-thumb-border-radius);
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    transition: none;
  }
}
.form-range::-moz-range-thumb {
  appearance: none;
}
.form-range::-moz-range-thumb:active {
  background-color: var(--form-range-thumb-active-bg);
}
.form-range::-moz-range-track {
  width: var(--form-range-track-width);
  height: var(--form-range-track-height);
  color: transparent;
  cursor: pointer;
  background-color: var(--form-range-track-bg);
  border-color: transparent;
  border-radius: var(--form-range-track-border-radius);
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: var(--form-range-thumb-disabled-bg);
}
.form-range:disabled::-moz-range-thumb {
  background-color: var(--form-range-thumb-disabled-bg);
}

.form-floating {
  --form-floating-height: calc(3.5rem + 2px);
  --form-floating-line-height: 1.25;
  --form-floating-padding-y: 1rem;
  --form-floating-padding-x: 0.75rem;
  --form-floating-input-padding-t: 1.625rem;
  --form-floating-input-padding-b: 0.625rem;
  --form-floating-label-opacity: 0.65;
  --form-floating-label-transform: scale(0.85) translateY(-0.4rem) translateX(0.15rem);
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  height: var(--form-floating-height);
  line-height: var(--form-floating-line-height);
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--form-floating-padding-y) var(--form-floating-padding-x);
  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: var(--form-floating-padding-y) var(--form-floating-padding-x);
}
.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: var(--form-floating-input-padding-t);
  padding-bottom: var(--form-floating-input-padding-b);
}
.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: var(--form-floating-input-padding-t);
  padding-bottom: var(--form-floating-input-padding-b);
}
.form-floating > .form-select {
  padding-top: var(--form-floating-input-padding-t);
  padding-bottom: var(--form-floating-input-padding-b);
}
.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: var(--form-floating-label-opacity);
  transform: var(--form-floating-label-transform);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: var(--form-floating-label-opacity);
  transform: var(--form-floating-label-transform);
}
.form-floating > .form-control-plaintext ~ label {
  border-width: 1px 0;
}

.input-group {
  --input-group-addon-padding-y: 0.375rem;
  --input-group-addon-padding-x: 0.75rem;
  --input-group-addon-bg: rgb(218.2, 218.36, 218.68);
  --input-group-addon-color: #191a1c;
  --input-group-addon-font-size: 1rem;
  --input-group-addon-font-weight: 400;
  --input-group-addon-line-height: 1.5;
  --input-group-addon-border-width: 1px;
  --input-group-addon-border-color: rgb(153.8, 154.24, 155.12);
  --input-group-addon-border-radius: 0.375rem;
  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: var(--input-group-addon-padding-y) var(--input-group-addon-padding-x);
  font-size: var(--input-group-addon-font-size);
  font-weight: var(--input-group-addon-font-weight);
  line-height: var(--input-group-addon-line-height);
  color: var(--input-group-addon-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--input-group-addon-bg);
  border: var(--input-group-addon-border-width) solid var(--input-group-addon-border-color);
  border-radius: var(--input-group-addon-border-radius);
}

.input-group-lg > .form-control {
  --input-padding-y: 0.5rem;
  --input-padding-x: 1rem;
  --input-font-size: 1.125rem;
  --input-line-height: var(--body-line-height-lg);
  --input-border-radius: 0.5rem;
}
.input-group-lg > .form-select {
  --form-select-padding-y: 0.5rem;
  --form-select-padding-x: 1rem;
  --form-select-indicator-padding: 3rem;
  --form-select-font-size: 1.125rem;
  --form-select-line-height: var(--body-line-height-lg);
  --form-select-border-radius: 0.5rem;
}
.input-group-lg > .input-group-text {
  --input-group-addon-padding-y: 0.5rem;
  --input-group-addon-padding-x: 1rem;
  --input-group-addon-font-size: 1.125rem;
  --input-group-addon-line-height: var(--body-line-height-lg);
  --input-group-addon-border-radius: 0.5rem;
}
.input-group-lg > .btn {
  --btn-padding-y: 0.5rem;
  --btn-padding-x: 1rem;
  --btn-font-size: 1.125rem;
  --btn-line-height: var(--body-line-height-lg);
  --btn-border-radius: 0.5rem;
}

.input-group-sm > .form-control {
  --input-padding-y: 0.25rem;
  --input-padding-x: 0.5rem;
  --input-font-size: 0.875rem;
  --input-line-height: var(--body-line-height-sm);
  --input-border-radius: 0.25rem;
}
.input-group-sm > .form-select {
  --form-select-padding-y: 0.25rem;
  --form-select-padding-x: 0.5rem;
  --form-select-indicator-padding: 1.5rem;
  --form-select-font-size: 0.875rem;
  --form-select-line-height: var(--body-line-height-sm);
  --form-select-border-radius: 0.25rem;
}
.input-group-sm > .input-group-text {
  --input-group-addon-padding-y: 0.25rem;
  --input-group-addon-padding-x: 0.5rem;
  --input-group-addon-font-size: 0.875rem;
  --input-group-addon-line-height: var(--body-line-height-sm);
  --input-group-addon-border-radius: 0.25rem;
}
.input-group-sm > .btn {
  --btn-padding-y: 0.25rem;
  --btn-padding-x: 0.5rem;
  --btn-font-size: 0.875rem;
  --btn-line-height: var(--body-line-height-sm);
  --btn-border-radius: 0.25rem;
}

.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: calc(1px * -1);
  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 {
  --form-validation-color: #7ece25;
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--form-validation-color);
}

.valid-tooltip {
  --form-validation-tooltip-color: #fff;
  --form-validation-tooltip-bg: rgba(126, 206, 37, 0.9);
  --form-validation-tooltip-border-radius: 0.375rem;
  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: var(--form-validation-tooltip-color);
  background-color: var(--form-validation-tooltip-bg);
  border-radius: var(--form-validation-tooltip-border-radius);
}

.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 {
  --form-validation-border-color: #7ece25;
  --form-validation-focus-box-shadow: 0 0 0 0.25rem rgba(126, 206, 37, 0.25);
  border-color: var(--form-validation-border-color);
  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='%237ece25' 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 {
  box-shadow: var(--form-validation-focus-box-shadow);
}

.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 {
  --form-validation-border-color: #7ece25;
  --form-validation-focus-box-shadow: 0 0 0 0.25rem rgba(126, 206, 37, 0.25);
  border-color: var(--form-validation-border-color);
}
.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='rgb%2848, 48.9, 50.7%29' 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='%237ece25' 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);
}
[data-color-theme=dark] .was-validated .form-select:valid:not([multiple]):not([size]), [data-color-theme=dark] .was-validated .form-select:valid:not([multiple])[size="1"], [data-color-theme=dark] .form-select.is-valid:not([multiple]):not([size]), [data-color-theme=dark] .form-select.is-valid:not([multiple])[size="1"] {
  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='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%237ece25' 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");
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: var(--form-validation-border-color);
  box-shadow: var(--form-validation-focus-box-shadow);
}

.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 {
  --focus-ring-box-shadow: 0 0 0 0.25rem rgba(126, 206, 37, 0.25);
  --component-active-bg: #7ece25;
  border-color: var(--component-active-bg);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  --form-validation-color: #7ece25;
  color: var(--form-validation-color);
}

.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 {
  --form-validation-color: #dc3545;
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--form-validation-color);
}

.invalid-tooltip {
  --form-validation-tooltip-color: #fff;
  --form-validation-tooltip-bg: rgba(220, 53, 69, 0.9);
  --form-validation-tooltip-border-radius: 0.375rem;
  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: var(--form-validation-tooltip-color);
  background-color: var(--form-validation-tooltip-bg);
  border-radius: var(--form-validation-tooltip-border-radius);
}

.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 {
  --form-validation-border-color: #dc3545;
  --form-validation-focus-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
  border-color: var(--form-validation-border-color);
  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 {
  box-shadow: var(--form-validation-focus-box-shadow);
}

.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 {
  --form-validation-border-color: #dc3545;
  --form-validation-focus-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
  border-color: var(--form-validation-border-color);
}
.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='rgb%2848, 48.9, 50.7%29' 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);
}
[data-color-theme=dark] .was-validated .form-select:invalid:not([multiple]):not([size]), [data-color-theme=dark] .was-validated .form-select:invalid:not([multiple])[size="1"], [data-color-theme=dark] .form-select.is-invalid:not([multiple]):not([size]), [data-color-theme=dark] .form-select.is-invalid:not([multiple])[size="1"] {
  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='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: var(--form-validation-border-color);
  box-shadow: var(--form-validation-focus-box-shadow);
}

.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 {
  --focus-ring-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
  --component-active-bg: #dc3545;
  border-color: var(--component-active-bg);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  --form-validation-color: #dc3545;
  color: var(--form-validation-color);
}

.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 {
  --btn-padding-x: 0.75rem;
  --btn-padding-y: 0.375rem;
  --btn-font-family: ;
  --btn-font-size: 1rem;
  --btn-font-weight: 400;
  --btn-line-height: 1.5;
  --btn-color: #191a1c;
  --btn-bg: transparent;
  --btn-border-width: 1px;
  --btn-border-color: transparent;
  --btn-border-radius: 0.375rem;
  --btn-hover-border-color: transparent;
  --btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --btn-disabled-opacity: 0.65;
  --btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: var(--btn-line-height);
  color: var(--btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: var(--btn-border-width) solid var(--btn-border-color);
  border-radius: var(--btn-border-radius);
  background-color: var(--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(--btn-hover-color);
  background-color: var(--btn-hover-bg);
  border-color: var(--btn-hover-border-color);
}
.btn-check + .btn:hover {
  color: var(--btn-color);
  background-color: var(--btn-bg);
  border-color: var(--btn-border-color);
}
.btn:focus-visible {
  color: var(--btn-hover-color);
  background-color: var(--btn-hover-bg);
  border-color: var(--btn-hover-border-color);
  outline: 0;
  box-shadow: var(--btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--btn-hover-border-color);
  outline: 0;
  box-shadow: var(--btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--btn-active-color);
  background-color: var(--btn-active-bg);
  border-color: var(--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(--btn-focus-box-shadow);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  color: var(--btn-disabled-color);
  pointer-events: none;
  background-color: var(--btn-disabled-bg);
  border-color: var(--btn-disabled-border-color);
  opacity: var(--btn-disabled-opacity);
}

.btn-primary {
  --btn-color: #000;
  --btn-bg: #eaff48;
  --btn-border-color: #eaff48;
  --btn-hover-color: #fff;
  --btn-hover-bg: rgb(198.9, 216.75, 61.2);
  --btn-hover-border-color: rgb(210.6, 229.5, 64.8);
  --btn-focus-shadow-rgb: 199, 217, 61;
  --btn-active-color: #fff;
  --btn-active-bg: rgb(187.2, 204, 57.6);
  --btn-active-border-color: rgb(210.6, 229.5, 64.8);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #000;
  --btn-disabled-bg: #eaff48;
  --btn-disabled-border-color: #eaff48;
}

.btn-secondary {
  --btn-color: #fff;
  --btn-bg: #c67416;
  --btn-border-color: #c67416;
  --btn-hover-color: #fff;
  --btn-hover-bg: rgb(168.3, 98.6, 18.7);
  --btn-hover-border-color: rgb(158.4, 92.8, 17.6);
  --btn-focus-shadow-rgb: 207, 137, 57;
  --btn-active-color: #fff;
  --btn-active-bg: rgb(158.4, 92.8, 17.6);
  --btn-active-border-color: rgb(148.5, 87, 16.5);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #fff;
  --btn-disabled-bg: #c67416;
  --btn-disabled-border-color: #c67416;
}

.btn-tertiary {
  --btn-color: #fff;
  --btn-bg: #10b981;
  --btn-border-color: #10b981;
  --btn-hover-color: #fff;
  --btn-hover-bg: rgb(13.6, 157.25, 109.65);
  --btn-hover-border-color: rgb(12.8, 148, 103.2);
  --btn-focus-shadow-rgb: 52, 196, 148;
  --btn-active-color: #fff;
  --btn-active-bg: rgb(12.8, 148, 103.2);
  --btn-active-border-color: rgb(12, 138.75, 96.75);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #fff;
  --btn-disabled-bg: #10b981;
  --btn-disabled-border-color: #10b981;
}

.btn-quaternary {
  --btn-color: #fff;
  --btn-bg: #780752;
  --btn-border-color: #780752;
  --btn-hover-color: #fff;
  --btn-hover-bg: rgb(102, 5.95, 69.7);
  --btn-hover-border-color: rgb(96, 5.6, 65.6);
  --btn-focus-shadow-rgb: 140, 44, 108;
  --btn-active-color: #fff;
  --btn-active-bg: rgb(96, 5.6, 65.6);
  --btn-active-border-color: rgb(90, 5.25, 61.5);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #fff;
  --btn-disabled-bg: #780752;
  --btn-disabled-border-color: #780752;
}

.btn-success {
  --btn-color: #fff;
  --btn-bg: #7ece25;
  --btn-border-color: #7ece25;
  --btn-hover-color: #fff;
  --btn-hover-bg: rgb(107.1, 175.1, 31.45);
  --btn-hover-border-color: rgb(100.8, 164.8, 29.6);
  --btn-focus-shadow-rgb: 145, 213, 70;
  --btn-active-color: #fff;
  --btn-active-bg: rgb(100.8, 164.8, 29.6);
  --btn-active-border-color: rgb(94.5, 154.5, 27.75);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #fff;
  --btn-disabled-bg: #7ece25;
  --btn-disabled-border-color: #7ece25;
}

.btn-info {
  --btn-color: #fff;
  --btn-bg: #0ea5e9;
  --btn-border-color: #0ea5e9;
  --btn-hover-color: #fff;
  --btn-hover-bg: rgb(11.9, 140.25, 198.05);
  --btn-hover-border-color: rgb(11.2, 132, 186.4);
  --btn-focus-shadow-rgb: 50, 179, 236;
  --btn-active-color: #fff;
  --btn-active-bg: rgb(11.2, 132, 186.4);
  --btn-active-border-color: rgb(10.5, 123.75, 174.75);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #fff;
  --btn-disabled-bg: #0ea5e9;
  --btn-disabled-border-color: #0ea5e9;
}

.btn-warning {
  --btn-color: #fff;
  --btn-bg: #ffc107;
  --btn-border-color: #ffc107;
  --btn-hover-color: #fff;
  --btn-hover-bg: rgb(216.75, 164.05, 5.95);
  --btn-hover-border-color: rgb(204, 154.4, 5.6);
  --btn-focus-shadow-rgb: 255, 202, 44;
  --btn-active-color: #fff;
  --btn-active-bg: rgb(204, 154.4, 5.6);
  --btn-active-border-color: rgb(191.25, 144.75, 5.25);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #fff;
  --btn-disabled-bg: #ffc107;
  --btn-disabled-border-color: #ffc107;
}

.btn-danger {
  --btn-color: #fff;
  --btn-bg: #dc3545;
  --btn-border-color: #dc3545;
  --btn-hover-color: #fff;
  --btn-hover-bg: rgb(187, 45.05, 58.65);
  --btn-hover-border-color: rgb(176, 42.4, 55.2);
  --btn-focus-shadow-rgb: 225, 83, 97;
  --btn-active-color: #fff;
  --btn-active-bg: rgb(176, 42.4, 55.2);
  --btn-active-border-color: rgb(165, 39.75, 51.75);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #fff;
  --btn-disabled-bg: #dc3545;
  --btn-disabled-border-color: #dc3545;
}

.btn-light {
  --btn-color: var(--body-color);
  --btn-bg: var(--gray-200);
  --btn-border-color: var(--gray-400);
  --btn-hover-color: var(--body-color);
  --btn-hover-bg: var(--gray-300);
  --btn-hover-border-color: var(--gray-500);
  --btn-focus-shadow-rgb: 211, 212, 213;
  --btn-active-color: var(--body-color);
  --btn-active-bg: var(--gray-400);
  --btn-active-border-color: var(--gray-600);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: var(--body-color);
  --btn-disabled-bg: var(--gray-200);
  --btn-disabled-border-color: var(--gray-400);
}

.btn-dark {
  --btn-color: #fff;
  --btn-bg: #191a1c;
  --btn-border-color: #191a1c;
  --btn-hover-color: #fff;
  --btn-hover-bg: rgb(59.5, 60.35, 62.05);
  --btn-hover-border-color: rgb(48, 48.9, 50.7);
  --btn-focus-shadow-rgb: 60, 60, 62;
  --btn-active-color: #fff;
  --btn-active-bg: rgb(71, 71.8, 73.4);
  --btn-active-border-color: rgb(48, 48.9, 50.7);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #fff;
  --btn-disabled-bg: #191a1c;
  --btn-disabled-border-color: #191a1c;
}

.btn-outline-primary {
  --btn-color: #eaff48;
  --btn-border-color: #eaff48;
  --btn-hover-color: #000;
  --btn-hover-bg: #eaff48;
  --btn-hover-border-color: #eaff48;
  --btn-focus-shadow-rgb: 234, 255, 72;
  --btn-active-color: #000;
  --btn-active-bg: rgb(231.0737704918, 255, 46.5);
  --btn-active-border-color: #eaff48;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #eaff48;
  --btn-disabled-bg: transparent;
  --gradient: none;
}

.btn-outline-secondary {
  --btn-color: #c67416;
  --btn-border-color: #c67416;
  --btn-hover-color: #fff;
  --btn-hover-bg: #c67416;
  --btn-hover-border-color: #c67416;
  --btn-focus-shadow-rgb: 198, 116, 22;
  --btn-active-color: #fff;
  --btn-active-bg: rgb(175.05, 102.5545454545, 19.45);
  --btn-active-border-color: #c67416;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #c67416;
  --btn-disabled-bg: transparent;
  --gradient: none;
}

.btn-outline-tertiary {
  --btn-color: #10b981;
  --btn-border-color: #10b981;
  --btn-hover-color: #fff;
  --btn-hover-bg: #10b981;
  --btn-hover-border-color: #10b981;
  --btn-focus-shadow-rgb: 16, 185, 129;
  --btn-active-color: #fff;
  --btn-active-bg: rgb(13.9701492537, 161.5298507463, 112.6343283582);
  --btn-active-border-color: #10b981;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #10b981;
  --btn-disabled-bg: transparent;
  --gradient: none;
}

.btn-outline-quaternary {
  --btn-color: #780752;
  --btn-border-color: #780752;
  --btn-hover-color: #fff;
  --btn-hover-bg: #780752;
  --btn-hover-border-color: #780752;
  --btn-focus-shadow-rgb: 120, 7, 82;
  --btn-active-color: #fff;
  --btn-active-bg: rgb(95.905511811, 5.594488189, 65.5354330709);
  --btn-active-border-color: #780752;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #780752;
  --btn-disabled-bg: transparent;
  --gradient: none;
}

.btn-outline-success {
  --btn-color: #7ece25;
  --btn-border-color: #7ece25;
  --btn-hover-color: #fff;
  --btn-hover-bg: #7ece25;
  --btn-hover-border-color: #7ece25;
  --btn-focus-shadow-rgb: 126, 206, 37;
  --btn-active-color: #fff;
  --btn-active-bg: rgb(112.7777777778, 184.3827160494, 33.1172839506);
  --btn-active-border-color: #7ece25;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #7ece25;
  --btn-disabled-bg: transparent;
  --gradient: none;
}

.btn-outline-info {
  --btn-color: #0ea5e9;
  --btn-border-color: #0ea5e9;
  --btn-hover-color: #fff;
  --btn-hover-bg: #0ea5e9;
  --btn-hover-border-color: #0ea5e9;
  --btn-focus-shadow-rgb: 14, 165, 233;
  --btn-active-color: #fff;
  --btn-active-bg: rgb(12.5546558704, 147.9655870445, 208.9453441296);
  --btn-active-border-color: #0ea5e9;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #0ea5e9;
  --btn-disabled-bg: transparent;
  --gradient: none;
}

.btn-outline-warning {
  --btn-color: #ffc107;
  --btn-border-color: #ffc107;
  --btn-hover-color: #fff;
  --btn-hover-bg: #ffc107;
  --btn-hover-border-color: #ffc107;
  --btn-focus-shadow-rgb: 255, 193, 7;
  --btn-active-color: #fff;
  --btn-active-bg: rgb(236.5, 177.375, 0);
  --btn-active-border-color: #ffc107;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #ffc107;
  --btn-disabled-bg: transparent;
  --gradient: none;
}

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

.btn-outline-light {
  --btn-color: var(--body-color);
  --btn-border-color: var(--gray-400);
  --btn-hover-color: var(--body-color);
  --btn-hover-bg: var(--gray-300);
  --btn-hover-border-color: var(--gray-500);
  --btn-focus-shadow-rgb: 248, 249, 250;
  --btn-active-color: var(--body-color);
  --btn-active-bg: var(--gray-400);
  --btn-active-border-color: var(--gray-600);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: var(--body-color);
  --btn-disabled-bg: var(--gray-200);
}

.btn-outline-dark {
  --btn-color: #191a1c;
  --btn-border-color: #191a1c;
  --btn-hover-color: #fff;
  --btn-hover-bg: #191a1c;
  --btn-hover-border-color: #191a1c;
  --btn-focus-shadow-rgb: 25, 26, 28;
  --btn-active-color: #fff;
  --btn-active-bg: rgb(12.9716981132, 13.4905660377, 14.5283018868);
  --btn-active-border-color: #191a1c;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #191a1c;
  --btn-disabled-bg: transparent;
  --gradient: none;
}

.btn-link {
  --btn-font-weight: 400;
  --btn-color: var(--link-color);
  --btn-bg: transparent;
  --btn-border-color: transparent;
  --btn-hover-color: var(--link-hover-color);
  --btn-hover-border-color: transparent;
  --btn-active-color: var(--link-hover-color);
  --btn-active-border-color: transparent;
  --btn-disabled-color: rgb(89.4, 90.12, 91.56);
  --btn-disabled-border-color: transparent;
  --btn-box-shadow: none;
  --btn-focus-shadow-rgb: 199, 217, 61;
  text-decoration: underline;
}
.btn-link:focus-visible {
  color: var(--btn-color);
}
.btn-link:hover {
  color: var(--btn-hover-color);
}

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

.btn-sm, .btn-group-sm > .btn {
  --btn-padding-y: 0.25rem;
  --btn-padding-x: 0.5rem;
  --btn-font-size: 0.875rem;
  --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;
  font-family: var(--icon-font-family);
  font-size: 0.3em;
  line-height: 1;
  content: "\f107";
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  --dropdown-zindex: 1000;
  --dropdown-min-width: 10rem;
  --dropdown-padding-x: 0;
  --dropdown-padding-y: 0.5rem;
  --dropdown-spacer: 0.125rem;
  --dropdown-font-size: 1rem;
  --dropdown-color: #191a1c;
  --dropdown-bg: #fff;
  --dropdown-border-color: var(--border-color-translucent);
  --dropdown-border-radius: 0.375rem;
  --dropdown-border-width: 1px;
  --dropdown-inner-border-radius: calc(0.375rem - 1px);
  --dropdown-divider-bg: var(--border-color-translucent);
  --dropdown-divider-margin-y: 0.5rem;
  --dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --dropdown-link-color: rgb(34.2, 35.16, 37.08);
  --dropdown-link-hover-color: rgb(30.78, 31.644, 33.372);
  --dropdown-link-hover-bg: rgb(218.2, 218.36, 218.68);
  --dropdown-link-active-color: #fff;
  --dropdown-link-active-bg: #eaff48;
  --dropdown-link-disabled-color: rgb(117, 117.6, 118.8);
  --dropdown-item-padding-x: 1rem;
  --dropdown-item-padding-y: 0.25rem;
  --dropdown-header-color: rgb(89.4, 90.12, 91.56);
  --dropdown-header-padding-x: 1rem;
  --dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--dropdown-zindex);
  display: none;
  min-width: var(--dropdown-min-width);
  padding: var(--dropdown-padding-y) var(--dropdown-padding-x);
  margin: 0;
  font-size: var(--dropdown-font-size);
  color: var(--dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--dropdown-bg);
  background-clip: padding-box;
  border: var(--dropdown-border-width) solid var(--dropdown-border-color);
  border-radius: var(--dropdown-border-radius);
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--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(--dropdown-spacer);
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  font-family: var(--icon-font-family);
  font-size: 0.3em;
  line-height: 1;
  content: "\f106";
}
.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(--dropdown-spacer);
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  font-family: var(--icon-font-family);
  font-size: 0.3em;
  line-height: 1;
  content: "\f105";
}
.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(--dropdown-spacer);
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  font-family: var(--icon-font-family);
  font-size: 0.3em;
  line-height: 1;
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  font-family: var(--icon-font-family);
  font-size: 0.3em;
  line-height: 1;
  content: "\f104";
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

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

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--dropdown-item-padding-y) var(--dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--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(--dropdown-link-hover-color);
  background-color: var(--dropdown-link-hover-bg);
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--dropdown-link-active-bg);
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

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

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

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

.dropdown-menu-dark {
  --dropdown-color: rgb(190.6, 190.88, 191.44);
  --dropdown-bg: rgb(48, 48.9, 50.7);
  --dropdown-border-color: var(--border-color-translucent);
  --dropdown-box-shadow: var(--box-shadow);
  --dropdown-link-color: rgb(190.6, 190.88, 191.44);
  --dropdown-link-hover-color: #fff;
  --dropdown-divider-bg: var(--border-color-translucent);
  --dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --dropdown-link-active-color: #fff;
  --dropdown-link-active-bg: #eaff48;
  --dropdown-link-disabled-color: rgb(117, 117.6, 118.8);
  --dropdown-header-color: rgb(117, 117.6, 118.8);
}

.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: calc(1px * -1);
}
.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: calc(var(--btn-padding-x) * 0.75);
  padding-left: calc(var(--btn-padding-x) * 0.75);
}
.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: calc(var(--btn-padding-x-sm) * 0.75);
  padding-left: calc(var(--btn-padding-x-sm) * 0.75);
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: calc(var(--btn-padding-x-lg) * 0.75);
  padding-left: calc(var(--btn-padding-x-lg) * 0.75);
}

.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: calc(var(--btn-border-width) * -1);
}
.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 {
  --nav-link-padding-x: 1rem;
  --nav-link-padding-y: 0.5rem;
  --nav-link-font-weight: ;
  --nav-link-color: var(--link-color);
  --nav-link-hover-color: var(--link-hover-color);
  --nav-link-disabled-color: rgb(89.4, 90.12, 91.56);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--nav-link-padding-y) var(--nav-link-padding-x);
  font-size: var(--nav-link-font-size);
  font-weight: var(--nav-link-font-weight);
  color: var(--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(--nav-link-hover-color);
}
.nav-link.disabled {
  color: var(--nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --nav-tabs-border-width: 1px;
  --nav-tabs-border-color: rgb(190.6, 190.88, 191.44);
  --nav-tabs-border-radius: 0.375rem;
  --nav-tabs-link-hover-border-color: rgb(218.2, 218.36, 218.68) rgb(218.2, 218.36, 218.68) rgb(190.6, 190.88, 191.44);
  --nav-tabs-link-active-color: rgb(66.4, 67.22, 68.86);
  --nav-tabs-link-active-bg: #ffffff;
  --nav-tabs-link-active-border-color: rgb(190.6, 190.88, 191.44) rgb(190.6, 190.88, 191.44) #ffffff;
  border-bottom: var(--nav-tabs-border-width) solid var(--nav-tabs-border-color);
}
.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--nav-tabs-border-width));
  background: none;
  border: var(--nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--nav-tabs-border-radius);
  border-top-right-radius: var(--nav-tabs-border-radius);
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--nav-tabs-link-hover-border-color);
}
.nav-tabs .nav-link.disabled, .nav-tabs .nav-link:disabled {
  color: var(--nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--nav-tabs-link-active-color);
  background-color: var(--nav-tabs-link-active-bg);
  border-color: var(--nav-tabs-link-active-border-color);
}
.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills {
  --nav-pills-border-radius: 0.375rem;
  --nav-pills-link-active-color: #fff;
  --nav-pills-link-active-bg: #eaff48;
}
.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: var(--nav-pills-border-radius);
}
.nav-pills .nav-link:disabled {
  color: var(--nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--nav-pills-link-active-color);
  background-color: var(--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 {
  --navbar-padding-x: calc(var(--spacer) * 0.5);
  --navbar-padding-y: 0.5rem;
  --navbar-color: rgba(0, 0, 0, 0.55);
  --navbar-hover-color: rgba(0, 0, 0, 0.7);
  --navbar-disabled-color: rgba(0, 0, 0, 0.3);
  --navbar-active-color: rgba(0, 0, 0, 0.9);
  --navbar-brand-padding-y: 0.40625rem;
  --navbar-brand-margin-end: 1rem;
  --navbar-brand-font-size: 1.125rem;
  --navbar-brand-color: rgba(0, 0, 0, 0.9);
  --navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
  --navbar-nav-link-padding-x: 0.5rem;
  --navbar-toggler-padding-y: 0.25rem;
  --navbar-toggler-padding-x: 0.75rem;
  --navbar-toggler-font-size: 1.125rem;
  --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");
  --navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
  --navbar-toggler-border-radius: 0.375rem;
  --navbar-toggler-focus-width: 0.25rem;
  --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(--navbar-padding-y) var(--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(--navbar-brand-padding-y);
  padding-bottom: var(--navbar-brand-padding-y);
  margin-right: var(--navbar-brand-margin-end);
  font-size: var(--navbar-brand-font-size);
  color: var(--navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  color: var(--navbar-brand-hover-color);
}

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

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

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

.navbar-toggler {
  padding: var(--navbar-toggler-padding-y) var(--navbar-toggler-padding-x);
  font-size: var(--navbar-toggler-font-size);
  line-height: 1;
  color: var(--navbar-color);
  background-color: transparent;
  border: var(--border-width) solid var(--navbar-toggler-border-color);
  border-radius: var(--navbar-toggler-border-radius);
  transition: var(--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(--navbar-toggler-focus-width);
}

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

.navbar-nav-scroll {
  max-height: var(--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(--navbar-nav-link-padding-x);
    padding-left: var(--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(--navbar-nav-link-padding-x);
    padding-left: var(--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(--navbar-nav-link-padding-x);
    padding-left: var(--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(--navbar-nav-link-padding-x);
    padding-left: var(--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(--navbar-nav-link-padding-x);
    padding-left: var(--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(--navbar-nav-link-padding-x);
  padding-left: var(--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 {
  --navbar-color: rgba(255, 255, 255, 0.55);
  --navbar-hover-color: rgba(255, 255, 255, 0.75);
  --navbar-disabled-color: rgba(255, 255, 255, 0.25);
  --navbar-active-color: #fff;
  --navbar-brand-color: #fff;
  --navbar-brand-hover-color: #fff;
  --navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  --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 {
  --card-spacer-y: 1rem;
  --card-spacer-x: 1rem;
  --card-title-spacer-y: 0.5rem;
  --card-border-width: 1px;
  --card-border-color: var(--border-color-translucent);
  --card-border-radius: 0.375rem;
  --card-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.075), var(--box-shadow);
  --card-inner-border-radius: calc(0.375rem - 1px);
  --card-cap-padding-y: 0.5rem;
  --card-cap-padding-x: 1rem;
  --card-cap-bg: rgba(0, 0, 0, 0.03);
  --card-cap-color: ;
  --card-height: ;
  --card-color: ;
  --card-bg: #fff;
  --card-img-overlay-padding: 1rem;
  --card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--card-height);
  word-wrap: break-word;
  background-color: var(--card-bg);
  background-clip: border-box;
  border: var(--card-border-width) solid var(--card-border-color);
  border-radius: var(--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(--card-inner-border-radius);
  border-top-right-radius: var(--card-inner-border-radius);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: var(--card-inner-border-radius);
  border-bottom-left-radius: var(--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(--card-spacer-y) var(--card-spacer-x);
  color: var(--card-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

.card-group > .card {
  margin-bottom: var(--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 {
  --accordion-color: var(--body-color);
  --accordion-bg: #ffffff;
  --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;
  --accordion-border-color: var(--border-color);
  --accordion-border-width: 1px;
  --accordion-border-radius: 0.375rem;
  --accordion-inner-border-radius: calc(0.375rem - 1px);
  --accordion-btn-padding-x: 1.25rem;
  --accordion-btn-padding-y: 1rem;
  --accordion-btn-color: var(--body-color);
  --accordion-btn-bg: var(--accordion-bg);
  --accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--body-color%29'%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");
  --accordion-btn-icon-width: 1.25rem;
  --accordion-btn-icon-transform: rotate(-180deg);
  --accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28210.6, 229.5, 64.8%29'%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");
  --accordion-btn-focus-border-color: rgb(244.5, 255, 163.5);
  --accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(234, 255, 72, 0.25);
  --accordion-body-padding-x: 1.25rem;
  --accordion-body-padding-y: 1rem;
  --accordion-active-color: rgb(210.6, 229.5, 64.8);
  --accordion-active-bg: rgb(252.9, 255, 236.7);
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--accordion-btn-padding-y) var(--accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--accordion-btn-color);
  text-align: left;
  background-color: var(--accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--accordion-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--accordion-active-color);
  background-color: var(--accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--accordion-border-width)) 0 var(--accordion-border-color);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--accordion-btn-active-icon);
  transform: var(--accordion-btn-icon-transform);
}
.accordion-button::after {
  flex-shrink: 0;
  width: var(--accordion-btn-icon-width);
  height: var(--accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--accordion-btn-icon-width);
  transition: var(--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(--accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: var(--accordion-btn-focus-box-shadow);
}

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

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

.accordion-body {
  padding: var(--accordion-body-padding-y) var(--accordion-body-padding-x);
}

.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 {
  --breadcrumb-padding-x: 0;
  --breadcrumb-padding-y: 0;
  --breadcrumb-margin-bottom: 1rem;
  --breadcrumb-bg: ;
  --breadcrumb-border-radius: ;
  --breadcrumb-divider-color: rgb(89.4, 90.12, 91.56);
  --breadcrumb-item-padding-x: 0.5rem;
  --breadcrumb-item-active-color: rgb(89.4, 90.12, 91.56);
  display: flex;
  flex-wrap: wrap;
  padding: var(--breadcrumb-padding-y) var(--breadcrumb-padding-x);
  margin-bottom: var(--breadcrumb-margin-bottom);
  font-size: var(--breadcrumb-font-size);
  list-style: none;
  background-color: var(--breadcrumb-bg);
  border-radius: var(--breadcrumb-border-radius);
}

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

.pagination {
  --pagination-padding-x: 0.75rem;
  --pagination-padding-y: 0.375rem;
  --pagination-font-size: 1rem;
  --pagination-margin-start: -1px;
  --pagination-color: var(--link-color);
  --pagination-bg: #fff;
  --pagination-border-width: 1px;
  --pagination-border-color: rgb(190.6, 190.88, 191.44);
  --pagination-border-radius: 0.375rem;
  --pagination-hover-color: var(--link-hover-color);
  --pagination-hover-bg: rgb(218.2, 218.36, 218.68);
  --pagination-hover-border-color: rgb(190.6, 190.88, 191.44);
  --pagination-focus-color: var(--link-hover-color);
  --pagination-focus-bg: rgb(218.2, 218.36, 218.68);
  --pagination-focus-box-shadow: 0 0 0 0.25rem rgba(234, 255, 72, 0.25);
  --pagination-active-color: #fff;
  --pagination-active-bg: #eaff48;
  --pagination-active-border-color: #eaff48;
  --pagination-disabled-color: rgb(89.4, 90.12, 91.56);
  --pagination-disabled-bg: #fff;
  --pagination-disabled-border-color: rgb(190.6, 190.88, 191.44);
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  padding: var(--pagination-padding-y) var(--pagination-padding-x);
  font-size: var(--pagination-font-size);
  color: var(--pagination-color);
  text-decoration: none;
  background-color: var(--pagination-bg);
  border: var(--pagination-border-width) solid var(--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(--pagination-hover-color);
  background-color: var(--pagination-hover-bg);
  border-color: var(--pagination-hover-border-color);
}
.page-link:focus {
  z-index: 3;
  color: var(--pagination-focus-color);
  background-color: var(--pagination-focus-bg);
  outline: 0;
  box-shadow: var(--pagination-focus-box-shadow);
}
.page-link.active, .active > .page-link {
  z-index: 3;
  color: var(--pagination-active-color);
  background-color: var(--pagination-active-bg);
  border-color: var(--pagination-active-border-color);
}
.page-link.disabled, .disabled > .page-link {
  color: var(--pagination-disabled-color);
  pointer-events: none;
  background-color: var(--pagination-disabled-bg);
  border-color: var(--pagination-disabled-border-color);
}

.page-item:not(:first-child) .page-link {
  margin-left: var(--pagination-margin-start);
}
.page-item .page-link {
  border-radius: var(--pagination-border-radius);
}

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

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

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

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

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

.alert-heading {
  color: inherit;
}

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

.alert-dismissible {
  padding-right: var(--alert-dismissible-padding-r);
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: calc(var(--alert-padding-y) * 1.25) var(--alert-padding-x);
}

.alert-primary {
  --alert-color: rgb(140.4, 153, 43.2);
  --alert-bg: rgb(250.8, 255, 218.4);
  --alert-border-color: rgb(248.7, 255, 200.1);
  --alert-link-color: rgb(112.32, 122.4, 34.56);
  --alert-link-hover-color: rgb(98.28, 107.1, 30.24);
}
.alert-primary .alert-link {
  color: var(--alert-link-color);
}
.alert-primary .alert-link:hover, .alert-primary .alert-link:focus {
  color: var(--alert-link-hover-color);
}

.alert-secondary {
  --alert-color: rgb(118.8, 69.6, 13.2);
  --alert-bg: rgb(243.6, 227.2, 208.4);
  --alert-border-color: rgb(237.9, 213.3, 185.1);
  --alert-link-color: rgb(95.04, 55.68, 10.56);
  --alert-link-hover-color: rgb(83.16, 48.72, 9.24);
}
.alert-secondary .alert-link {
  color: var(--alert-link-color);
}
.alert-secondary .alert-link:hover, .alert-secondary .alert-link:focus {
  color: var(--alert-link-hover-color);
}

.alert-tertiary {
  --alert-color: rgb(9.6, 111, 77.4);
  --alert-bg: rgb(207.2, 241, 229.8);
  --alert-border-color: rgb(183.3, 234, 217.2);
  --alert-link-color: rgb(7.68, 88.8, 61.92);
  --alert-link-hover-color: rgb(6.72, 77.7, 54.18);
}
.alert-tertiary .alert-link {
  color: var(--alert-link-color);
}
.alert-tertiary .alert-link:hover, .alert-tertiary .alert-link:focus {
  color: var(--alert-link-hover-color);
}

.alert-quaternary {
  --alert-color: rgb(72, 4.2, 49.2);
  --alert-bg: rgb(228, 205.4, 220.4);
  --alert-border-color: rgb(214.5, 180.6, 203.1);
  --alert-link-color: rgb(57.6, 3.36, 39.36);
  --alert-link-hover-color: rgb(50.4, 2.94, 34.44);
}
.alert-quaternary .alert-link {
  color: var(--alert-link-color);
}
.alert-quaternary .alert-link:hover, .alert-quaternary .alert-link:focus {
  color: var(--alert-link-hover-color);
}

.alert-success {
  --alert-color: rgb(75.6, 123.6, 22.2);
  --alert-bg: rgb(229.2, 245.2, 211.4);
  --alert-border-color: rgb(216.3, 240.3, 189.6);
  --alert-link-color: rgb(60.48, 98.88, 17.76);
  --alert-link-hover-color: rgb(52.92, 86.52, 15.54);
}
.alert-success .alert-link {
  color: var(--alert-link-color);
}
.alert-success .alert-link:hover, .alert-success .alert-link:focus {
  color: var(--alert-link-hover-color);
}

.alert-info {
  --alert-color: rgb(8.4, 99, 139.8);
  --alert-bg: rgb(206.8, 237, 250.6);
  --alert-border-color: rgb(182.7, 228, 248.4);
  --alert-link-color: rgb(6.72, 79.2, 111.84);
  --alert-link-hover-color: rgb(5.88, 69.3, 97.86);
}
.alert-info .alert-link {
  color: var(--alert-link-color);
}
.alert-info .alert-link:hover, .alert-info .alert-link:focus {
  color: var(--alert-link-hover-color);
}

.alert-warning {
  --alert-color: rgb(153, 115.8, 4.2);
  --alert-bg: rgb(255, 242.6, 205.4);
  --alert-border-color: rgb(255, 236.4, 180.6);
  --alert-link-color: rgb(122.4, 92.64, 3.36);
  --alert-link-hover-color: rgb(107.1, 81.06, 2.94);
}
.alert-warning .alert-link {
  color: var(--alert-link-color);
}
.alert-warning .alert-link:hover, .alert-warning .alert-link:focus {
  color: var(--alert-link-hover-color);
}

.alert-danger {
  --alert-color: rgb(132, 31.8, 41.4);
  --alert-bg: rgb(248, 214.6, 217.8);
  --alert-border-color: rgb(244.5, 194.4, 199.2);
  --alert-link-color: rgb(105.6, 25.44, 33.12);
  --alert-link-hover-color: rgb(92.4, 22.26, 28.98);
}
.alert-danger .alert-link {
  color: var(--alert-link-color);
}
.alert-danger .alert-link:hover, .alert-danger .alert-link:focus {
  color: var(--alert-link-hover-color);
}

.alert-light {
  --alert-color: rgb(148.8, 149.4, 150);
  --alert-bg: rgb(253.6, 253.8, 254);
  --alert-border-color: rgb(252.9, 253.2, 253.5);
  --alert-link-color: rgb(119.04, 119.52, 120);
  --alert-link-hover-color: rgb(104.16, 104.58, 105);
}
.alert-light .alert-link {
  color: var(--alert-link-color);
}
.alert-light .alert-link:hover, .alert-light .alert-link:focus {
  color: var(--alert-link-hover-color);
}

.alert-dark {
  --alert-color: rgb(15, 15.6, 16.8);
  --alert-bg: rgb(209, 209.2, 209.6);
  --alert-border-color: rgb(186, 186.3, 186.9);
  --alert-link-color: rgb(12, 12.48, 13.44);
  --alert-link-hover-color: rgb(10.5, 10.92, 11.76);
}
.alert-dark .alert-link {
  color: var(--alert-link-color);
}
.alert-dark .alert-link:hover, .alert-dark .alert-link:focus {
  color: var(--alert-link-hover-color);
}

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

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--progress-bar-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--progress-bar-bg);
  transition: var(--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(--progress-height) var(--progress-height);
}

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

.list-group {
  --list-group-color: rgb(34.2, 35.16, 37.08);
  --list-group-bg: #fff;
  --list-group-border-color: rgba(0, 0, 0, 0.125);
  --list-group-border-width: 1px;
  --list-group-border-radius: 0.375rem;
  --list-group-item-padding-x: 1rem;
  --list-group-item-padding-y: 0.5rem;
  --list-group-action-color: rgb(66.4, 67.22, 68.86);
  --list-group-action-hover-color: rgb(66.4, 67.22, 68.86);
  --list-group-action-hover-bg: rgb(236.6, 236.68, 236.84);
  --list-group-action-active-color: #191a1c;
  --list-group-action-active-bg: rgb(218.2, 218.36, 218.68);
  --list-group-disabled-color: rgb(89.4, 90.12, 91.56);
  --list-group-disabled-bg: #fff;
  --list-group-active-color: #fff;
  --list-group-active-bg: #eaff48;
  --list-group-active-border-color: #eaff48;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: var(--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(--list-group-action-color);
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: var(--list-group-action-hover-color);
  text-decoration: none;
  background-color: var(--list-group-action-hover-bg);
}
.list-group-item-action:active {
  color: var(--list-group-action-active-color);
  background-color: var(--list-group-action-active-bg);
}

.list-group-item {
  position: relative;
  display: block;
  padding: var(--list-group-item-padding-y) var(--list-group-item-padding-x);
  color: var(--list-group-color);
  text-decoration: none;
  background-color: var(--list-group-bg);
  border: var(--list-group-border-width) solid var(--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(--list-group-disabled-color);
  pointer-events: none;
  background-color: var(--list-group-disabled-bg);
}
.list-group-item.active {
  z-index: 2;
  color: var(--list-group-active-color);
  background-color: var(--list-group-active-bg);
  border-color: var(--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(--list-group-border-width));
  border-top-width: var(--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(--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(--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(--list-group-border-width);
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: calc(-1 * var(--list-group-border-width));
  border-left-width: var(--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(--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(--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(--list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--list-group-border-width));
    border-left-width: var(--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(--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(--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(--list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--list-group-border-width));
    border-left-width: var(--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(--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(--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(--list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--list-group-border-width));
    border-left-width: var(--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(--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(--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(--list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--list-group-border-width));
    border-left-width: var(--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(--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(--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(--list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--list-group-border-width));
    border-left-width: var(--list-group-border-width);
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 var(--list-group-border-width);
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: rgb(140.4, 153, 43.2);
  background-color: rgb(250.8, 255, 218.4);
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: rgb(140.4, 153, 43.2);
  background-color: rgb(225.72, 229.5, 196.56);
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(140.4, 153, 43.2);
  border-color: rgb(140.4, 153, 43.2);
}

.list-group-item-secondary {
  color: rgb(118.8, 69.6, 13.2);
  background-color: rgb(243.6, 227.2, 208.4);
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: rgb(118.8, 69.6, 13.2);
  background-color: rgb(219.24, 204.48, 187.56);
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(118.8, 69.6, 13.2);
  border-color: rgb(118.8, 69.6, 13.2);
}

.list-group-item-tertiary {
  color: rgb(9.6, 111, 77.4);
  background-color: rgb(207.2, 241, 229.8);
}
.list-group-item-tertiary.list-group-item-action:hover, .list-group-item-tertiary.list-group-item-action:focus {
  color: rgb(9.6, 111, 77.4);
  background-color: rgb(186.48, 216.9, 206.82);
}
.list-group-item-tertiary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(9.6, 111, 77.4);
  border-color: rgb(9.6, 111, 77.4);
}

.list-group-item-quaternary {
  color: rgb(72, 4.2, 49.2);
  background-color: rgb(228, 205.4, 220.4);
}
.list-group-item-quaternary.list-group-item-action:hover, .list-group-item-quaternary.list-group-item-action:focus {
  color: rgb(72, 4.2, 49.2);
  background-color: rgb(205.2, 184.86, 198.36);
}
.list-group-item-quaternary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(72, 4.2, 49.2);
  border-color: rgb(72, 4.2, 49.2);
}

.list-group-item-success {
  color: rgb(75.6, 123.6, 22.2);
  background-color: rgb(229.2, 245.2, 211.4);
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: rgb(75.6, 123.6, 22.2);
  background-color: rgb(206.28, 220.68, 190.26);
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: rgb(75.6, 123.6, 22.2);
  border-color: rgb(75.6, 123.6, 22.2);
}

.list-group-item-info {
  color: rgb(8.4, 99, 139.8);
  background-color: rgb(206.8, 237, 250.6);
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: rgb(8.4, 99, 139.8);
  background-color: rgb(186.12, 213.3, 225.54);
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: rgb(8.4, 99, 139.8);
  border-color: rgb(8.4, 99, 139.8);
}

.list-group-item-warning {
  color: rgb(153, 115.8, 4.2);
  background-color: rgb(255, 242.6, 205.4);
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: rgb(153, 115.8, 4.2);
  background-color: rgb(229.5, 218.34, 184.86);
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: rgb(153, 115.8, 4.2);
  border-color: rgb(153, 115.8, 4.2);
}

.list-group-item-danger {
  color: rgb(132, 31.8, 41.4);
  background-color: rgb(248, 214.6, 217.8);
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: rgb(132, 31.8, 41.4);
  background-color: rgb(223.2, 193.14, 196.02);
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: rgb(132, 31.8, 41.4);
  border-color: rgb(132, 31.8, 41.4);
}

.list-group-item-light {
  color: rgb(148.8, 149.4, 150);
  background-color: rgb(253.6, 253.8, 254);
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: rgb(148.8, 149.4, 150);
  background-color: rgb(228.24, 228.42, 228.6);
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: rgb(148.8, 149.4, 150);
  border-color: rgb(148.8, 149.4, 150);
}

.list-group-item-dark {
  color: rgb(15, 15.6, 16.8);
  background-color: rgb(209, 209.2, 209.6);
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: rgb(15, 15.6, 16.8);
  background-color: rgb(188.1, 188.28, 188.64);
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: rgb(15, 15.6, 16.8);
  border-color: rgb(15, 15.6, 16.8);
}

.btn-close {
  --btn-close-width: 1em;
  --btn-close-height: 1em;
  --btn-close-padding-y: 0.25em;
  --btn-close-padding-x: 0.25em;
  --btn-close-color: #000;
  --btn-close-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#000'><path 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'/></svg>");
  --btn-close-opacity: 0.5;
  --btn-close-hover-opacity: 0.75;
  --btn-close-focus-opacity: 1;
  --btn-close-disabled-opacity: 0.25;
  box-sizing: content-box;
  width: var(--btn-close-width);
  height: var(--btn-close-height);
  padding: var(--btn-close-padding-y) var(--btn-close-padding-x);
  color: var(--btn-close-color);
  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/var(--btn-close-width) auto no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: var(--btn-close-opacity);
}
.btn-close:hover {
  color: var(--btn-close-color);
  text-decoration: none;
  opacity: var(--btn-close-hover-opacity);
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(234, 255, 72, 0.25);
  opacity: var(--btn-close-focus-opacity);
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: var(--btn-close-disabled-opacity);
}

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

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

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

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

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

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

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

.modal-dialog-scrollable {
  height: calc(100% - var(--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(--modal-margin) * 2);
}

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

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

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

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

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

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

@media (min-width: 576px) {
  .modal {
    --modal-margin: 1.75rem;
    --modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  .modal-dialog {
    max-width: var(--modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --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 {
  --tooltip-zindex: 1080;
  --tooltip-max-width: 200px;
  --tooltip-padding-x: 0.5rem;
  --tooltip-padding-y: 0.25rem;
  --tooltip-margin: ;
  --tooltip-font-size: 0.875rem;
  --tooltip-color: #fff;
  --tooltip-bg: #000;
  --tooltip-border-radius: 0.375rem;
  --tooltip-opacity: 0.9;
  --tooltip-arrow-width: 0.8rem;
  --tooltip-arrow-height: 0.4rem;
  z-index: var(--tooltip-zindex);
  display: block;
  padding: var(--tooltip-arrow-height);
  margin: var(--tooltip-margin);
  font-family: var(--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(--tooltip-font-size);
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: var(--tooltip-opacity);
}
.tooltip .tooltip-arrow {
  display: block;
  width: var(--tooltip-arrow-width);
  height: var(--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(--tooltip-arrow-height) calc(var(--tooltip-arrow-width) * 0.5) 0;
  border-top-color: var(--tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: 0;
  width: var(--tooltip-arrow-height);
  height: var(--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(--tooltip-arrow-width) * 0.5) var(--tooltip-arrow-height) calc(var(--tooltip-arrow-width) * 0.5) 0;
  border-right-color: var(--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(--tooltip-arrow-width) * 0.5) var(--tooltip-arrow-height);
  border-bottom-color: var(--tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: 0;
  width: var(--tooltip-arrow-height);
  height: var(--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(--tooltip-arrow-width) * 0.5) 0 calc(var(--tooltip-arrow-width) * 0.5) var(--tooltip-arrow-height);
  border-left-color: var(--tooltip-bg);
}

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

.popover {
  --popover-zindex: 1070;
  --popover-max-width: 276px;
  --popover-font-size: 0.875rem;
  --popover-bg: #fff;
  --popover-border-width: 1px;
  --popover-border-color: var(--border-color-translucent);
  --popover-border-radius: 0.5rem;
  --popover-inner-border-radius: calc(0.5rem - 1px);
  --popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --popover-header-padding-x: 1rem;
  --popover-header-padding-y: 0.5rem;
  --popover-header-font-size: 1rem;
  --popover-header-color: var(--body-color);
  --popover-header-bg: rgb(239.7, 239.7, 239.7);
  --popover-body-padding-x: 1rem;
  --popover-body-padding-y: 1rem;
  --popover-body-color: #191a1c;
  --popover-arrow-width: 1rem;
  --popover-arrow-height: 0.5rem;
  --popover-arrow-border: var(--popover-border-color);
  z-index: var(--popover-zindex);
  display: block;
  max-width: var(--popover-max-width);
  font-family: var(--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(--popover-font-size);
  word-wrap: break-word;
  background-color: var(--popover-bg);
  background-clip: padding-box;
  border: var(--popover-border-width) solid var(--popover-border-color);
  border-radius: var(--popover-border-radius);
}
.popover .popover-arrow {
  display: block;
  width: var(--popover-arrow-width);
  height: var(--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(--popover-arrow-height)) - var(--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(--popover-arrow-height) calc(var(--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(--popover-arrow-border);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: var(--popover-border-width);
  border-top-color: var(--popover-bg);
}

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

/* rtl:end:ignore */
.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-1 * (var(--popover-arrow-height)) - var(--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(--popover-arrow-width) * 0.5) var(--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(--popover-arrow-border);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: var(--popover-border-width);
  border-bottom-color: var(--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(--popover-arrow-width);
  margin-left: calc(-0.5 * var(--popover-arrow-width));
  content: "";
  border-bottom: var(--popover-border-width) solid var(--popover-header-bg);
}

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

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

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

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

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

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

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

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

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    --spinner-animation-speed: 1.5s;
  }
}
.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  --offcanvas-zindex: 1045;
  --offcanvas-width: 400px;
  --offcanvas-height: 30vh;
  --offcanvas-padding-x: 1rem;
  --offcanvas-padding-y: 1rem;
  --offcanvas-color: ;
  --offcanvas-bg: #fff;
  --offcanvas-border-width: 1px;
  --offcanvas-border-color: var(--border-color-translucent);
  --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(--offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--offcanvas-color);
    visibility: hidden;
    background-color: var(--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(--offcanvas-width);
    border-right: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-sm.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--offcanvas-width);
    border-left: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-sm.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--offcanvas-height);
    max-height: 100%;
    border-bottom: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-sm.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--offcanvas-height);
    max-height: 100%;
    border-top: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
    visibility: visible;
  }
}
@media (min-width: 576px) {
  .offcanvas-sm {
    --offcanvas-height: auto;
    --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(--offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--offcanvas-color);
    visibility: hidden;
    background-color: var(--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(--offcanvas-width);
    border-right: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-md.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--offcanvas-width);
    border-left: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-md.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--offcanvas-height);
    max-height: 100%;
    border-bottom: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-md.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--offcanvas-height);
    max-height: 100%;
    border-top: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
    visibility: visible;
  }
}
@media (min-width: 768px) {
  .offcanvas-md {
    --offcanvas-height: auto;
    --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(--offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--offcanvas-color);
    visibility: hidden;
    background-color: var(--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(--offcanvas-width);
    border-right: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-lg.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--offcanvas-width);
    border-left: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-lg.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--offcanvas-height);
    max-height: 100%;
    border-bottom: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-lg.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--offcanvas-height);
    max-height: 100%;
    border-top: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
    visibility: visible;
  }
}
@media (min-width: 992px) {
  .offcanvas-lg {
    --offcanvas-height: auto;
    --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(--offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--offcanvas-color);
    visibility: hidden;
    background-color: var(--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(--offcanvas-width);
    border-right: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--offcanvas-width);
    border-left: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--offcanvas-height);
    max-height: 100%;
    border-bottom: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--offcanvas-height);
    max-height: 100%;
    border-top: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
    visibility: visible;
  }
}
@media (min-width: 1200px) {
  .offcanvas-xl {
    --offcanvas-height: auto;
    --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(--offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--offcanvas-color);
    visibility: hidden;
    background-color: var(--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(--offcanvas-width);
    border-right: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xxl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--offcanvas-width);
    border-left: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xxl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--offcanvas-height);
    max-height: 100%;
    border-bottom: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xxl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--offcanvas-height);
    max-height: 100%;
    border-top: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
    visibility: visible;
  }
}
@media (min-width: 1400px) {
  .offcanvas-xxl {
    --offcanvas-height: auto;
    --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(--offcanvas-zindex);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  color: var(--offcanvas-color);
  visibility: hidden;
  background-color: var(--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(--offcanvas-width);
  border-right: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
  transform: translateX(-100%);
}
.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  width: var(--offcanvas-width);
  border-left: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
  transform: translateX(100%);
}
.offcanvas.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: var(--offcanvas-height);
  max-height: 100%;
  border-bottom: var(--offcanvas-border-width) solid var(--offcanvas-border-color);
  transform: translateY(-100%);
}
.offcanvas.offcanvas-bottom {
  right: 0;
  left: 0;
  height: var(--offcanvas-height);
  max-height: 100%;
  border-top: var(--offcanvas-border-width) solid var(--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(--offcanvas-padding-y) var(--offcanvas-padding-x);
}
.offcanvas-header .btn-close {
  padding: calc(var(--offcanvas-padding-y) * 0.5) calc(var(--offcanvas-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--offcanvas-padding-y));
  margin-right: calc(-0.5 * var(--offcanvas-padding-x));
  margin-bottom: calc(-0.5 * var(--offcanvas-padding-y));
}

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

.offcanvas-body {
  flex-grow: 1;
  padding: var(--offcanvas-padding-y) var(--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: #000 !important;
  background-color: RGBA(234, 255, 72, var(--bg-opacity, 1)) !important;
}

.text-bg-secondary {
  color: #fff !important;
  background-color: RGBA(198, 116, 22, var(--bg-opacity, 1)) !important;
}

.text-bg-tertiary {
  color: #fff !important;
  background-color: RGBA(16, 185, 129, var(--bg-opacity, 1)) !important;
}

.text-bg-quaternary {
  color: #fff !important;
  background-color: RGBA(120, 7, 82, var(--bg-opacity, 1)) !important;
}

.text-bg-success {
  color: #fff !important;
  background-color: RGBA(126, 206, 37, var(--bg-opacity, 1)) !important;
}

.text-bg-info {
  color: #fff !important;
  background-color: RGBA(14, 165, 233, var(--bg-opacity, 1)) !important;
}

.text-bg-warning {
  color: #fff !important;
  background-color: RGBA(255, 193, 7, var(--bg-opacity, 1)) !important;
}

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

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

.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(25, 26, 28, var(--bg-opacity, 1)) !important;
}

.link-primary {
  color: #eaff48 !important;
}
.link-primary:hover, .link-primary:focus {
  color: rgb(238.2, 255, 108.6) !important;
}

.link-secondary {
  color: #c67416 !important;
}
.link-secondary:hover, .link-secondary:focus {
  color: rgb(158.4, 92.8, 17.6) !important;
}

.link-tertiary {
  color: #10b981 !important;
}
.link-tertiary:hover, .link-tertiary:focus {
  color: rgb(12.8, 148, 103.2) !important;
}

.link-quaternary {
  color: #780752 !important;
}
.link-quaternary:hover, .link-quaternary:focus {
  color: rgb(96, 5.6, 65.6) !important;
}

.link-success {
  color: #7ece25 !important;
}
.link-success:hover, .link-success:focus {
  color: rgb(100.8, 164.8, 29.6) !important;
}

.link-info {
  color: #0ea5e9 !important;
}
.link-info:hover, .link-info:focus {
  color: rgb(11.2, 132, 186.4) !important;
}

.link-warning {
  color: #ffc107 !important;
}
.link-warning:hover, .link-warning:focus {
  color: rgb(204, 154.4, 5.6) !important;
}

.link-danger {
  color: #dc3545 !important;
}
.link-danger:hover, .link-danger:focus {
  color: rgb(176, 42.4, 55.2) !important;
}

.link-light {
  color: #f8f9fa !important;
}
.link-light:hover, .link-light:focus {
  color: rgb(249.4, 250.2, 251) !important;
}

.link-dark {
  color: #191a1c !important;
}
.link-dark:hover, .link-dark:focus {
  color: rgb(20, 20.8, 22.4) !important;
}

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

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

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

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

.ratio-21x9 {
  --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: var(--box-shadow) !important;
}

.shadow-sm {
  box-shadow: var(--box-shadow-sm) !important;
}

.shadow-lg {
  box-shadow: var(--box-shadow-lg) !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;
}

.top-auto {
  top: "auto" !important;
}

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

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

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

.bottom-auto {
  bottom: "auto" !important;
}

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

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

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

.start-auto {
  left: "auto" !important;
}

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

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

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

.end-auto {
  right: "auto" !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border-transparent {
  --border-opacity: 1;
  border-color: transparent !important;
}

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

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

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

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

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

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

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

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

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

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

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

.border-top-transparent {
  --border-opacity: 1;
  border-top-color: transparent !important;
}

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

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

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

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

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

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

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

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

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

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

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

.border-bottom-transparent {
  --border-opacity: 1;
  border-bottom-color: transparent !important;
}

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

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

.border-start-tertiary {
  --border-opacity: 1;
  border-left-color: rgba(var(--tertiary-rgb), var(--border-opacity)) !important;
}

.border-start-quaternary {
  --border-opacity: 1;
  border-left-color: rgba(var(--quaternary-rgb), var(--border-opacity)) !important;
}

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

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

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

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

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

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

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

.border-start-transparent {
  --border-opacity: 1;
  border-left-color: transparent !important;
}

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

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

.border-end-tertiary {
  --border-opacity: 1;
  border-right-color: rgba(var(--tertiary-rgb), var(--border-opacity)) !important;
}

.border-end-quaternary {
  --border-opacity: 1;
  border-right-color: rgba(var(--quaternary-rgb), var(--border-opacity)) !important;
}

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

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

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

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

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

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

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

.border-end-transparent {
  --border-opacity: 1;
  border-right-color: transparent !important;
}

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

.border-width-1 {
  border-width: 1px !important;
}

.border-width-2 {
  border-width: 2px !important;
}

.border-width-3 {
  border-width: 3px !important;
}

.border-width-4 {
  border-width: 4px !important;
}

.border-width-5 {
  border-width: 5px !important;
}

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

.border-top-width-1 {
  border-top-width: 1px !important;
}

.border-top-width-2 {
  border-top-width: 2px !important;
}

.border-top-width-3 {
  border-top-width: 3px !important;
}

.border-top-width-4 {
  border-top-width: 4px !important;
}

.border-top-width-5 {
  border-top-width: 5px !important;
}

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

.border-bottom-width-1 {
  border-bottom-width: 1px !important;
}

.border-bottom-width-2 {
  border-bottom-width: 2px !important;
}

.border-bottom-width-3 {
  border-bottom-width: 3px !important;
}

.border-bottom-width-4 {
  border-bottom-width: 4px !important;
}

.border-bottom-width-5 {
  border-bottom-width: 5px !important;
}

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

.border-start-width-1 {
  border-left-width: 1px !important;
}

.border-start-width-2 {
  border-left-width: 2px !important;
}

.border-start-width-3 {
  border-left-width: 3px !important;
}

.border-start-width-4 {
  border-left-width: 4px !important;
}

.border-start-width-5 {
  border-left-width: 5px !important;
}

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

.border-end-width-1 {
  border-right-width: 1px !important;
}

.border-end-width-2 {
  border-right-width: 2px !important;
}

.border-end-width-3 {
  border-right-width: 3px !important;
}

.border-end-width-4 {
  border-right-width: 4px !important;
}

.border-end-width-5 {
  border-right-width: 5px !important;
}

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

.border-opacity-15 {
  --border-opacity: 0.15;
}

.border-opacity-20 {
  --border-opacity: 0.2;
}

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

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

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

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

.border-style-dashed {
  border-style: "dashed" !important;
}

.border-style-dotted {
  border-style: "dotted" !important;
}

.border-top-style-dashed {
  border-top-style: "dashed" !important;
}

.border-top-style-dotted {
  border-top-style: "dotted" !important;
}

.border-bottom-style-dashed {
  border-bottom-style: "dashed" !important;
}

.border-bottom-style-dotted {
  border-bottom-style: "dotted" !important;
}

.w-16px {
  width: 1rem !important;
}

.w-24px {
  width: 1.5rem !important;
}

.w-32px {
  width: 2rem !important;
}

.w-40px {
  width: 2.5rem !important;
}

.w-48px {
  width: 3rem !important;
}

.w-56px {
  width: 3.5rem !important;
}

.w-64px {
  width: 4rem !important;
}

.w-72px {
  width: 4.5rem !important;
}

.w-80px {
  width: 5rem !important;
}

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

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

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

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

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

.wmin-0 {
  min-width: 0 !important;
}

.wmin-200 {
  min-width: 200px !important;
}

.wmin-250 {
  min-width: 250px !important;
}

.wmin-300 {
  min-width: 300px !important;
}

.wmin-350 {
  min-width: 350px !important;
}

.wmin-400 {
  min-width: 400px !important;
}

.wmin-450 {
  min-width: 450px !important;
}

.wmin-500 {
  min-width: 500px !important;
}

.wmin-550 {
  min-width: 550px !important;
}

.wmin-600 {
  min-width: 600px !important;
}

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

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

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

.h-16px {
  height: 1rem !important;
}

.h-24px {
  height: 1.5rem !important;
}

.h-32px {
  height: 2rem !important;
}

.h-40px {
  height: 2.5rem !important;
}

.h-48px {
  height: 3rem !important;
}

.h-56px {
  height: 3.5rem !important;
}

.h-64px {
  height: 4rem !important;
}

.h-72px {
  height: 4.5rem !important;
}

.h-80px {
  height: 5rem !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-0 {
  flex: 0 1 auto !important;
}

.flex-1 {
  flex: 1 !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-grow-2 {
  flex-grow: 2 !important;
}

.flex-grow-3 {
  flex-grow: 3 !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-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-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-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-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-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-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-auto {
  margin-left: auto !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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.font-monospace {
  font-family: var(--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;
}

.fs-base {
  font-size: var(--body-font-size) !important;
}

.fs-lg {
  font-size: var(--body-font-size-lg) !important;
}

.fs-sm {
  font-size: var(--body-font-size-sm) !important;
}

.fs-xs {
  font-size: var(--body-font-size-xs) !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-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-xs {
  line-height: var(--body-line-height-xs) !important;
}

.lh-sm {
  line-height: var(--body-line-height-sm) !important;
}

.lh-base {
  line-height: var(--body-line-height) !important;
}

.lh-lg {
  line-height: var(--body-line-height-lg) !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 {
  --text-opacity: 1;
  color: rgba(var(--primary-rgb), var(--text-opacity)) !important;
}

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

.text-tertiary {
  --text-opacity: 1;
  color: rgba(var(--tertiary-rgb), var(--text-opacity)) !important;
}

.text-quaternary {
  --text-opacity: 1;
  color: rgba(var(--quaternary-rgb), var(--text-opacity)) !important;
}

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

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

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

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

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

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

.text-black {
  --text-opacity: 1;
  color: rgba(var(--black-rgb), var(--text-opacity)) !important;
}

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

.text-body {
  --text-opacity: 1;
  color: rgba(var(--body-color-rgb), var(--text-opacity)) !important;
}

.text-muted {
  --text-opacity: 1;
  color: rgba(var(--body-color-rgb), 0.75) !important;
}

.text-reset {
  --text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --text-opacity: 0.25;
}

.text-opacity-50 {
  --text-opacity: 0.5;
}

.text-opacity-75 {
  --text-opacity: 0.75;
}

.text-opacity-100 {
  --text-opacity: 1;
}

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

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

.bg-tertiary {
  --bg-opacity: 1;
  background-color: rgba(var(--tertiary-rgb), var(--bg-opacity)) !important;
}

.bg-quaternary {
  --bg-opacity: 1;
  background-color: rgba(var(--quaternary-rgb), var(--bg-opacity)) !important;
}

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

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

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

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

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

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

.bg-black {
  --bg-opacity: 1;
  background-color: rgba(var(--black-rgb), var(--bg-opacity)) !important;
}

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

.bg-body {
  --bg-opacity: 1;
  background-color: rgba(var(--body-bg-rgb), var(--bg-opacity)) !important;
}

.bg-transparent {
  --bg-opacity: 1;
  background-color: transparent !important;
}

.bg-card {
  --bg-opacity: 1;
  background-color: #fff !important;
}

.bg-opacity-10 {
  --bg-opacity: 0.1;
}

.bg-opacity-20 {
  --bg-opacity: 0.2;
}

.bg-opacity-25 {
  --bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bg-opacity: 1;
}

.bg-gradient {
  background-image: var(--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(--border-radius) !important;
}

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

.rounded-1 {
  border-radius: var(--border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--border-radius) !important;
}

.rounded-3 {
  border-radius: var(--border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--border-radius-2xl) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: var(--border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--border-radius) !important;
  border-top-right-radius: var(--border-radius) !important;
}

.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-top-1 {
  border-top-left-radius: var(--border-radius-sm) !important;
  border-top-right-radius: var(--border-radius-sm) !important;
}

.rounded-top-2 {
  border-top-left-radius: var(--border-radius) !important;
  border-top-right-radius: var(--border-radius) !important;
}

.rounded-top-pill {
  border-top-left-radius: var(--border-radius-pill) !important;
  border-top-right-radius: var(--border-radius-pill) !important;
}

.rounded-end {
  border-top-right-radius: var(--border-radius) !important;
  border-bottom-right-radius: var(--border-radius) !important;
}

.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-end-1 {
  border-top-right-radius: var(--border-radius-sm) !important;
  border-bottom-right-radius: var(--border-radius-sm) !important;
}

.rounded-end-2 {
  border-top-right-radius: var(--border-radius) !important;
  border-bottom-right-radius: var(--border-radius) !important;
}

.rounded-end-pill {
  border-top-right-radius: var(--border-radius-pill) !important;
  border-bottom-right-radius: var(--border-radius-pill) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--border-radius) !important;
  border-bottom-left-radius: var(--border-radius) !important;
}

.rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-bottom-1 {
  border-bottom-right-radius: var(--border-radius-sm) !important;
  border-bottom-left-radius: var(--border-radius-sm) !important;
}

.rounded-bottom-2 {
  border-bottom-right-radius: var(--border-radius) !important;
  border-bottom-left-radius: var(--border-radius) !important;
}

.rounded-bottom-pill {
  border-bottom-right-radius: var(--border-radius-pill) !important;
  border-bottom-left-radius: var(--border-radius-pill) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--border-radius) !important;
  border-top-left-radius: var(--border-radius) !important;
}

.rounded-start-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.rounded-start-1 {
  border-bottom-left-radius: var(--border-radius-sm) !important;
  border-top-left-radius: var(--border-radius-sm) !important;
}

.rounded-start-2 {
  border-bottom-left-radius: var(--border-radius) !important;
  border-top-left-radius: var(--border-radius) !important;
}

.rounded-start-pill {
  border-bottom-left-radius: var(--border-radius-pill) !important;
  border-top-left-radius: var(--border-radius-pill) !important;
}

.rounded-top-start {
  border-top-left-radius: 0.375rem !important;
}

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

.rounded-top-end {
  border-top-right-radius: 0.375rem !important;
}

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

.rounded-bottom-start {
  border-bottom-left-radius: 0.375rem !important;
}

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

.rounded-bottom-end {
  border-bottom-right-radius: 0.375rem !important;
}

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

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

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.cursor-move {
  cursor: move !important;
}

.cursor-default {
  cursor: default !important;
}

.rotate-cw-45 {
  transform: rotate(45deg) !important;
}

.rotate-cw-90 {
  transform: rotate(90deg) !important;
}

.rotate-cw-180 {
  transform: rotate(180deg) !important;
}

.rotate-ccw-45 {
  transform: rotate(-45deg) !important;
}

.rotate-ccw-90 {
  transform: rotate(-90deg) !important;
}

.rotate-ccw-180 {
  transform: rotate(-180deg) !important;
}

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

.zindex-auto {
  z-index: auto !important;
}

.zindex-1 {
  z-index: 1 !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .overflow-sm-auto {
    overflow: auto !important;
  }
  .overflow-sm-hidden {
    overflow: hidden !important;
  }
  .overflow-sm-visible {
    overflow: visible !important;
  }
  .overflow-sm-scroll {
    overflow: scroll !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;
  }
  .border-sm {
    border: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-sm-0 {
    border: 0 !important;
  }
  .border-top-sm {
    border-top: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-top-sm-0 {
    border-top: 0 !important;
  }
  .border-end-sm {
    border-right: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-end-sm-0 {
    border-right: 0 !important;
  }
  .border-bottom-sm {
    border-bottom: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-bottom-sm-0 {
    border-bottom: 0 !important;
  }
  .border-start-sm {
    border-left: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-start-sm-0 {
    border-left: 0 !important;
  }
  .w-sm-25 {
    width: 25% !important;
  }
  .w-sm-50 {
    width: 50% !important;
  }
  .w-sm-75 {
    width: 75% !important;
  }
  .w-sm-100 {
    width: 100% !important;
  }
  .w-sm-auto {
    width: auto !important;
  }
  .wmin-sm-0 {
    min-width: 0 !important;
  }
  .wmin-sm-200 {
    min-width: 200px !important;
  }
  .wmin-sm-250 {
    min-width: 250px !important;
  }
  .wmin-sm-300 {
    min-width: 300px !important;
  }
  .wmin-sm-350 {
    min-width: 350px !important;
  }
  .wmin-sm-400 {
    min-width: 400px !important;
  }
  .wmin-sm-450 {
    min-width: 450px !important;
  }
  .wmin-sm-500 {
    min-width: 500px !important;
  }
  .wmin-sm-550 {
    min-width: 550px !important;
  }
  .wmin-sm-600 {
    min-width: 600px !important;
  }
  .h-sm-25 {
    height: 25% !important;
  }
  .h-sm-50 {
    height: 50% !important;
  }
  .h-sm-75 {
    height: 75% !important;
  }
  .h-sm-100 {
    height: 100% !important;
  }
  .h-sm-auto {
    height: auto !important;
  }
  .flex-sm-0 {
    flex: 0 1 auto !important;
  }
  .flex-sm-1 {
    flex: 1 !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-grow-2 {
    flex-grow: 2 !important;
  }
  .flex-sm-grow-3 {
    flex-grow: 3 !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-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-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-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-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-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-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-auto {
    margin-left: auto !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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
  .rounded-sm {
    border-radius: var(--border-radius) !important;
  }
  .rounded-sm-0 {
    border-radius: 0 !important;
  }
  .rounded-sm-1 {
    border-radius: var(--border-radius-sm) !important;
  }
  .rounded-sm-2 {
    border-radius: var(--border-radius) !important;
  }
  .rounded-sm-3 {
    border-radius: var(--border-radius-lg) !important;
  }
  .rounded-sm-4 {
    border-radius: var(--border-radius-xl) !important;
  }
  .rounded-sm-5 {
    border-radius: var(--border-radius-2xl) !important;
  }
  .rounded-sm-circle {
    border-radius: 50% !important;
  }
  .rounded-sm-pill {
    border-radius: var(--border-radius-pill) !important;
  }
  .rounded-top-sm {
    border-top-left-radius: var(--border-radius) !important;
    border-top-right-radius: var(--border-radius) !important;
  }
  .rounded-top-sm-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
  .rounded-top-sm-1 {
    border-top-left-radius: var(--border-radius-sm) !important;
    border-top-right-radius: var(--border-radius-sm) !important;
  }
  .rounded-top-sm-2 {
    border-top-left-radius: var(--border-radius) !important;
    border-top-right-radius: var(--border-radius) !important;
  }
  .rounded-top-sm-pill {
    border-top-left-radius: var(--border-radius-pill) !important;
    border-top-right-radius: var(--border-radius-pill) !important;
  }
  .rounded-end-sm {
    border-top-right-radius: var(--border-radius) !important;
    border-bottom-right-radius: var(--border-radius) !important;
  }
  .rounded-end-sm-0 {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .rounded-end-sm-1 {
    border-top-right-radius: var(--border-radius-sm) !important;
    border-bottom-right-radius: var(--border-radius-sm) !important;
  }
  .rounded-end-sm-2 {
    border-top-right-radius: var(--border-radius) !important;
    border-bottom-right-radius: var(--border-radius) !important;
  }
  .rounded-end-sm-pill {
    border-top-right-radius: var(--border-radius-pill) !important;
    border-bottom-right-radius: var(--border-radius-pill) !important;
  }
  .rounded-bottom-sm {
    border-bottom-right-radius: var(--border-radius) !important;
    border-bottom-left-radius: var(--border-radius) !important;
  }
  .rounded-bottom-sm-0 {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
  .rounded-bottom-sm-1 {
    border-bottom-right-radius: var(--border-radius-sm) !important;
    border-bottom-left-radius: var(--border-radius-sm) !important;
  }
  .rounded-bottom-sm-2 {
    border-bottom-right-radius: var(--border-radius) !important;
    border-bottom-left-radius: var(--border-radius) !important;
  }
  .rounded-bottom-sm-pill {
    border-bottom-right-radius: var(--border-radius-pill) !important;
    border-bottom-left-radius: var(--border-radius-pill) !important;
  }
  .rounded-start-sm {
    border-bottom-left-radius: var(--border-radius) !important;
    border-top-left-radius: var(--border-radius) !important;
  }
  .rounded-start-sm-0 {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }
  .rounded-start-sm-1 {
    border-bottom-left-radius: var(--border-radius-sm) !important;
    border-top-left-radius: var(--border-radius-sm) !important;
  }
  .rounded-start-sm-2 {
    border-bottom-left-radius: var(--border-radius) !important;
    border-top-left-radius: var(--border-radius) !important;
  }
  .rounded-start-sm-pill {
    border-bottom-left-radius: var(--border-radius-pill) !important;
    border-top-left-radius: var(--border-radius-pill) !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .overflow-md-auto {
    overflow: auto !important;
  }
  .overflow-md-hidden {
    overflow: hidden !important;
  }
  .overflow-md-visible {
    overflow: visible !important;
  }
  .overflow-md-scroll {
    overflow: scroll !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;
  }
  .border-md {
    border: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-md-0 {
    border: 0 !important;
  }
  .border-top-md {
    border-top: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-top-md-0 {
    border-top: 0 !important;
  }
  .border-end-md {
    border-right: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-end-md-0 {
    border-right: 0 !important;
  }
  .border-bottom-md {
    border-bottom: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-bottom-md-0 {
    border-bottom: 0 !important;
  }
  .border-start-md {
    border-left: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-start-md-0 {
    border-left: 0 !important;
  }
  .w-md-25 {
    width: 25% !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-75 {
    width: 75% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
  .w-md-auto {
    width: auto !important;
  }
  .wmin-md-0 {
    min-width: 0 !important;
  }
  .wmin-md-200 {
    min-width: 200px !important;
  }
  .wmin-md-250 {
    min-width: 250px !important;
  }
  .wmin-md-300 {
    min-width: 300px !important;
  }
  .wmin-md-350 {
    min-width: 350px !important;
  }
  .wmin-md-400 {
    min-width: 400px !important;
  }
  .wmin-md-450 {
    min-width: 450px !important;
  }
  .wmin-md-500 {
    min-width: 500px !important;
  }
  .wmin-md-550 {
    min-width: 550px !important;
  }
  .wmin-md-600 {
    min-width: 600px !important;
  }
  .h-md-25 {
    height: 25% !important;
  }
  .h-md-50 {
    height: 50% !important;
  }
  .h-md-75 {
    height: 75% !important;
  }
  .h-md-100 {
    height: 100% !important;
  }
  .h-md-auto {
    height: auto !important;
  }
  .flex-md-0 {
    flex: 0 1 auto !important;
  }
  .flex-md-1 {
    flex: 1 !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-grow-2 {
    flex-grow: 2 !important;
  }
  .flex-md-grow-3 {
    flex-grow: 3 !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-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-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-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-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-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-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-auto {
    margin-left: auto !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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .rounded-md {
    border-radius: var(--border-radius) !important;
  }
  .rounded-md-0 {
    border-radius: 0 !important;
  }
  .rounded-md-1 {
    border-radius: var(--border-radius-sm) !important;
  }
  .rounded-md-2 {
    border-radius: var(--border-radius) !important;
  }
  .rounded-md-3 {
    border-radius: var(--border-radius-lg) !important;
  }
  .rounded-md-4 {
    border-radius: var(--border-radius-xl) !important;
  }
  .rounded-md-5 {
    border-radius: var(--border-radius-2xl) !important;
  }
  .rounded-md-circle {
    border-radius: 50% !important;
  }
  .rounded-md-pill {
    border-radius: var(--border-radius-pill) !important;
  }
  .rounded-top-md {
    border-top-left-radius: var(--border-radius) !important;
    border-top-right-radius: var(--border-radius) !important;
  }
  .rounded-top-md-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
  .rounded-top-md-1 {
    border-top-left-radius: var(--border-radius-sm) !important;
    border-top-right-radius: var(--border-radius-sm) !important;
  }
  .rounded-top-md-2 {
    border-top-left-radius: var(--border-radius) !important;
    border-top-right-radius: var(--border-radius) !important;
  }
  .rounded-top-md-pill {
    border-top-left-radius: var(--border-radius-pill) !important;
    border-top-right-radius: var(--border-radius-pill) !important;
  }
  .rounded-end-md {
    border-top-right-radius: var(--border-radius) !important;
    border-bottom-right-radius: var(--border-radius) !important;
  }
  .rounded-end-md-0 {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .rounded-end-md-1 {
    border-top-right-radius: var(--border-radius-sm) !important;
    border-bottom-right-radius: var(--border-radius-sm) !important;
  }
  .rounded-end-md-2 {
    border-top-right-radius: var(--border-radius) !important;
    border-bottom-right-radius: var(--border-radius) !important;
  }
  .rounded-end-md-pill {
    border-top-right-radius: var(--border-radius-pill) !important;
    border-bottom-right-radius: var(--border-radius-pill) !important;
  }
  .rounded-bottom-md {
    border-bottom-right-radius: var(--border-radius) !important;
    border-bottom-left-radius: var(--border-radius) !important;
  }
  .rounded-bottom-md-0 {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
  .rounded-bottom-md-1 {
    border-bottom-right-radius: var(--border-radius-sm) !important;
    border-bottom-left-radius: var(--border-radius-sm) !important;
  }
  .rounded-bottom-md-2 {
    border-bottom-right-radius: var(--border-radius) !important;
    border-bottom-left-radius: var(--border-radius) !important;
  }
  .rounded-bottom-md-pill {
    border-bottom-right-radius: var(--border-radius-pill) !important;
    border-bottom-left-radius: var(--border-radius-pill) !important;
  }
  .rounded-start-md {
    border-bottom-left-radius: var(--border-radius) !important;
    border-top-left-radius: var(--border-radius) !important;
  }
  .rounded-start-md-0 {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }
  .rounded-start-md-1 {
    border-bottom-left-radius: var(--border-radius-sm) !important;
    border-top-left-radius: var(--border-radius-sm) !important;
  }
  .rounded-start-md-2 {
    border-bottom-left-radius: var(--border-radius) !important;
    border-top-left-radius: var(--border-radius) !important;
  }
  .rounded-start-md-pill {
    border-bottom-left-radius: var(--border-radius-pill) !important;
    border-top-left-radius: var(--border-radius-pill) !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .overflow-lg-auto {
    overflow: auto !important;
  }
  .overflow-lg-hidden {
    overflow: hidden !important;
  }
  .overflow-lg-visible {
    overflow: visible !important;
  }
  .overflow-lg-scroll {
    overflow: scroll !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;
  }
  .border-lg {
    border: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-lg-0 {
    border: 0 !important;
  }
  .border-top-lg {
    border-top: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-top-lg-0 {
    border-top: 0 !important;
  }
  .border-end-lg {
    border-right: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-end-lg-0 {
    border-right: 0 !important;
  }
  .border-bottom-lg {
    border-bottom: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-bottom-lg-0 {
    border-bottom: 0 !important;
  }
  .border-start-lg {
    border-left: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-start-lg-0 {
    border-left: 0 !important;
  }
  .w-lg-25 {
    width: 25% !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
  .w-lg-75 {
    width: 75% !important;
  }
  .w-lg-100 {
    width: 100% !important;
  }
  .w-lg-auto {
    width: auto !important;
  }
  .wmin-lg-0 {
    min-width: 0 !important;
  }
  .wmin-lg-200 {
    min-width: 200px !important;
  }
  .wmin-lg-250 {
    min-width: 250px !important;
  }
  .wmin-lg-300 {
    min-width: 300px !important;
  }
  .wmin-lg-350 {
    min-width: 350px !important;
  }
  .wmin-lg-400 {
    min-width: 400px !important;
  }
  .wmin-lg-450 {
    min-width: 450px !important;
  }
  .wmin-lg-500 {
    min-width: 500px !important;
  }
  .wmin-lg-550 {
    min-width: 550px !important;
  }
  .wmin-lg-600 {
    min-width: 600px !important;
  }
  .h-lg-25 {
    height: 25% !important;
  }
  .h-lg-50 {
    height: 50% !important;
  }
  .h-lg-75 {
    height: 75% !important;
  }
  .h-lg-100 {
    height: 100% !important;
  }
  .h-lg-auto {
    height: auto !important;
  }
  .flex-lg-0 {
    flex: 0 1 auto !important;
  }
  .flex-lg-1 {
    flex: 1 !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-grow-2 {
    flex-grow: 2 !important;
  }
  .flex-lg-grow-3 {
    flex-grow: 3 !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-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-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-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-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-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-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-auto {
    margin-left: auto !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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
  .rounded-lg {
    border-radius: var(--border-radius) !important;
  }
  .rounded-lg-0 {
    border-radius: 0 !important;
  }
  .rounded-lg-1 {
    border-radius: var(--border-radius-sm) !important;
  }
  .rounded-lg-2 {
    border-radius: var(--border-radius) !important;
  }
  .rounded-lg-3 {
    border-radius: var(--border-radius-lg) !important;
  }
  .rounded-lg-4 {
    border-radius: var(--border-radius-xl) !important;
  }
  .rounded-lg-5 {
    border-radius: var(--border-radius-2xl) !important;
  }
  .rounded-lg-circle {
    border-radius: 50% !important;
  }
  .rounded-lg-pill {
    border-radius: var(--border-radius-pill) !important;
  }
  .rounded-top-lg {
    border-top-left-radius: var(--border-radius) !important;
    border-top-right-radius: var(--border-radius) !important;
  }
  .rounded-top-lg-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
  .rounded-top-lg-1 {
    border-top-left-radius: var(--border-radius-sm) !important;
    border-top-right-radius: var(--border-radius-sm) !important;
  }
  .rounded-top-lg-2 {
    border-top-left-radius: var(--border-radius) !important;
    border-top-right-radius: var(--border-radius) !important;
  }
  .rounded-top-lg-pill {
    border-top-left-radius: var(--border-radius-pill) !important;
    border-top-right-radius: var(--border-radius-pill) !important;
  }
  .rounded-end-lg {
    border-top-right-radius: var(--border-radius) !important;
    border-bottom-right-radius: var(--border-radius) !important;
  }
  .rounded-end-lg-0 {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .rounded-end-lg-1 {
    border-top-right-radius: var(--border-radius-sm) !important;
    border-bottom-right-radius: var(--border-radius-sm) !important;
  }
  .rounded-end-lg-2 {
    border-top-right-radius: var(--border-radius) !important;
    border-bottom-right-radius: var(--border-radius) !important;
  }
  .rounded-end-lg-pill {
    border-top-right-radius: var(--border-radius-pill) !important;
    border-bottom-right-radius: var(--border-radius-pill) !important;
  }
  .rounded-bottom-lg {
    border-bottom-right-radius: var(--border-radius) !important;
    border-bottom-left-radius: var(--border-radius) !important;
  }
  .rounded-bottom-lg-0 {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
  .rounded-bottom-lg-1 {
    border-bottom-right-radius: var(--border-radius-sm) !important;
    border-bottom-left-radius: var(--border-radius-sm) !important;
  }
  .rounded-bottom-lg-2 {
    border-bottom-right-radius: var(--border-radius) !important;
    border-bottom-left-radius: var(--border-radius) !important;
  }
  .rounded-bottom-lg-pill {
    border-bottom-right-radius: var(--border-radius-pill) !important;
    border-bottom-left-radius: var(--border-radius-pill) !important;
  }
  .rounded-start-lg {
    border-bottom-left-radius: var(--border-radius) !important;
    border-top-left-radius: var(--border-radius) !important;
  }
  .rounded-start-lg-0 {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }
  .rounded-start-lg-1 {
    border-bottom-left-radius: var(--border-radius-sm) !important;
    border-top-left-radius: var(--border-radius-sm) !important;
  }
  .rounded-start-lg-2 {
    border-bottom-left-radius: var(--border-radius) !important;
    border-top-left-radius: var(--border-radius) !important;
  }
  .rounded-start-lg-pill {
    border-bottom-left-radius: var(--border-radius-pill) !important;
    border-top-left-radius: var(--border-radius-pill) !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .overflow-xl-auto {
    overflow: auto !important;
  }
  .overflow-xl-hidden {
    overflow: hidden !important;
  }
  .overflow-xl-visible {
    overflow: visible !important;
  }
  .overflow-xl-scroll {
    overflow: scroll !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;
  }
  .border-xl {
    border: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-xl-0 {
    border: 0 !important;
  }
  .border-top-xl {
    border-top: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-top-xl-0 {
    border-top: 0 !important;
  }
  .border-end-xl {
    border-right: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-end-xl-0 {
    border-right: 0 !important;
  }
  .border-bottom-xl {
    border-bottom: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-bottom-xl-0 {
    border-bottom: 0 !important;
  }
  .border-start-xl {
    border-left: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-start-xl-0 {
    border-left: 0 !important;
  }
  .w-xl-25 {
    width: 25% !important;
  }
  .w-xl-50 {
    width: 50% !important;
  }
  .w-xl-75 {
    width: 75% !important;
  }
  .w-xl-100 {
    width: 100% !important;
  }
  .w-xl-auto {
    width: auto !important;
  }
  .wmin-xl-0 {
    min-width: 0 !important;
  }
  .wmin-xl-200 {
    min-width: 200px !important;
  }
  .wmin-xl-250 {
    min-width: 250px !important;
  }
  .wmin-xl-300 {
    min-width: 300px !important;
  }
  .wmin-xl-350 {
    min-width: 350px !important;
  }
  .wmin-xl-400 {
    min-width: 400px !important;
  }
  .wmin-xl-450 {
    min-width: 450px !important;
  }
  .wmin-xl-500 {
    min-width: 500px !important;
  }
  .wmin-xl-550 {
    min-width: 550px !important;
  }
  .wmin-xl-600 {
    min-width: 600px !important;
  }
  .h-xl-25 {
    height: 25% !important;
  }
  .h-xl-50 {
    height: 50% !important;
  }
  .h-xl-75 {
    height: 75% !important;
  }
  .h-xl-100 {
    height: 100% !important;
  }
  .h-xl-auto {
    height: auto !important;
  }
  .flex-xl-0 {
    flex: 0 1 auto !important;
  }
  .flex-xl-1 {
    flex: 1 !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-grow-2 {
    flex-grow: 2 !important;
  }
  .flex-xl-grow-3 {
    flex-grow: 3 !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-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-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-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-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-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-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-auto {
    margin-left: auto !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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
  .rounded-xl {
    border-radius: var(--border-radius) !important;
  }
  .rounded-xl-0 {
    border-radius: 0 !important;
  }
  .rounded-xl-1 {
    border-radius: var(--border-radius-sm) !important;
  }
  .rounded-xl-2 {
    border-radius: var(--border-radius) !important;
  }
  .rounded-xl-3 {
    border-radius: var(--border-radius-lg) !important;
  }
  .rounded-xl-4 {
    border-radius: var(--border-radius-xl) !important;
  }
  .rounded-xl-5 {
    border-radius: var(--border-radius-2xl) !important;
  }
  .rounded-xl-circle {
    border-radius: 50% !important;
  }
  .rounded-xl-pill {
    border-radius: var(--border-radius-pill) !important;
  }
  .rounded-top-xl {
    border-top-left-radius: var(--border-radius) !important;
    border-top-right-radius: var(--border-radius) !important;
  }
  .rounded-top-xl-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
  .rounded-top-xl-1 {
    border-top-left-radius: var(--border-radius-sm) !important;
    border-top-right-radius: var(--border-radius-sm) !important;
  }
  .rounded-top-xl-2 {
    border-top-left-radius: var(--border-radius) !important;
    border-top-right-radius: var(--border-radius) !important;
  }
  .rounded-top-xl-pill {
    border-top-left-radius: var(--border-radius-pill) !important;
    border-top-right-radius: var(--border-radius-pill) !important;
  }
  .rounded-end-xl {
    border-top-right-radius: var(--border-radius) !important;
    border-bottom-right-radius: var(--border-radius) !important;
  }
  .rounded-end-xl-0 {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .rounded-end-xl-1 {
    border-top-right-radius: var(--border-radius-sm) !important;
    border-bottom-right-radius: var(--border-radius-sm) !important;
  }
  .rounded-end-xl-2 {
    border-top-right-radius: var(--border-radius) !important;
    border-bottom-right-radius: var(--border-radius) !important;
  }
  .rounded-end-xl-pill {
    border-top-right-radius: var(--border-radius-pill) !important;
    border-bottom-right-radius: var(--border-radius-pill) !important;
  }
  .rounded-bottom-xl {
    border-bottom-right-radius: var(--border-radius) !important;
    border-bottom-left-radius: var(--border-radius) !important;
  }
  .rounded-bottom-xl-0 {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
  .rounded-bottom-xl-1 {
    border-bottom-right-radius: var(--border-radius-sm) !important;
    border-bottom-left-radius: var(--border-radius-sm) !important;
  }
  .rounded-bottom-xl-2 {
    border-bottom-right-radius: var(--border-radius) !important;
    border-bottom-left-radius: var(--border-radius) !important;
  }
  .rounded-bottom-xl-pill {
    border-bottom-right-radius: var(--border-radius-pill) !important;
    border-bottom-left-radius: var(--border-radius-pill) !important;
  }
  .rounded-start-xl {
    border-bottom-left-radius: var(--border-radius) !important;
    border-top-left-radius: var(--border-radius) !important;
  }
  .rounded-start-xl-0 {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }
  .rounded-start-xl-1 {
    border-bottom-left-radius: var(--border-radius-sm) !important;
    border-top-left-radius: var(--border-radius-sm) !important;
  }
  .rounded-start-xl-2 {
    border-bottom-left-radius: var(--border-radius) !important;
    border-top-left-radius: var(--border-radius) !important;
  }
  .rounded-start-xl-pill {
    border-bottom-left-radius: var(--border-radius-pill) !important;
    border-top-left-radius: var(--border-radius-pill) !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .overflow-xxl-auto {
    overflow: auto !important;
  }
  .overflow-xxl-hidden {
    overflow: hidden !important;
  }
  .overflow-xxl-visible {
    overflow: visible !important;
  }
  .overflow-xxl-scroll {
    overflow: scroll !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;
  }
  .border-xxl {
    border: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-xxl-0 {
    border: 0 !important;
  }
  .border-top-xxl {
    border-top: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-top-xxl-0 {
    border-top: 0 !important;
  }
  .border-end-xxl {
    border-right: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-end-xxl-0 {
    border-right: 0 !important;
  }
  .border-bottom-xxl {
    border-bottom: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-bottom-xxl-0 {
    border-bottom: 0 !important;
  }
  .border-start-xxl {
    border-left: var(--border-width) var(--border-style) var(--border-color) !important;
  }
  .border-start-xxl-0 {
    border-left: 0 !important;
  }
  .w-xxl-25 {
    width: 25% !important;
  }
  .w-xxl-50 {
    width: 50% !important;
  }
  .w-xxl-75 {
    width: 75% !important;
  }
  .w-xxl-100 {
    width: 100% !important;
  }
  .w-xxl-auto {
    width: auto !important;
  }
  .wmin-xxl-0 {
    min-width: 0 !important;
  }
  .wmin-xxl-200 {
    min-width: 200px !important;
  }
  .wmin-xxl-250 {
    min-width: 250px !important;
  }
  .wmin-xxl-300 {
    min-width: 300px !important;
  }
  .wmin-xxl-350 {
    min-width: 350px !important;
  }
  .wmin-xxl-400 {
    min-width: 400px !important;
  }
  .wmin-xxl-450 {
    min-width: 450px !important;
  }
  .wmin-xxl-500 {
    min-width: 500px !important;
  }
  .wmin-xxl-550 {
    min-width: 550px !important;
  }
  .wmin-xxl-600 {
    min-width: 600px !important;
  }
  .h-xxl-25 {
    height: 25% !important;
  }
  .h-xxl-50 {
    height: 50% !important;
  }
  .h-xxl-75 {
    height: 75% !important;
  }
  .h-xxl-100 {
    height: 100% !important;
  }
  .h-xxl-auto {
    height: auto !important;
  }
  .flex-xxl-0 {
    flex: 0 1 auto !important;
  }
  .flex-xxl-1 {
    flex: 1 !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-grow-2 {
    flex-grow: 2 !important;
  }
  .flex-xxl-grow-3 {
    flex-grow: 3 !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-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-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-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-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-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-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-auto {
    margin-left: auto !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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
  .rounded-xxl {
    border-radius: var(--border-radius) !important;
  }
  .rounded-xxl-0 {
    border-radius: 0 !important;
  }
  .rounded-xxl-1 {
    border-radius: var(--border-radius-sm) !important;
  }
  .rounded-xxl-2 {
    border-radius: var(--border-radius) !important;
  }
  .rounded-xxl-3 {
    border-radius: var(--border-radius-lg) !important;
  }
  .rounded-xxl-4 {
    border-radius: var(--border-radius-xl) !important;
  }
  .rounded-xxl-5 {
    border-radius: var(--border-radius-2xl) !important;
  }
  .rounded-xxl-circle {
    border-radius: 50% !important;
  }
  .rounded-xxl-pill {
    border-radius: var(--border-radius-pill) !important;
  }
  .rounded-top-xxl {
    border-top-left-radius: var(--border-radius) !important;
    border-top-right-radius: var(--border-radius) !important;
  }
  .rounded-top-xxl-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
  .rounded-top-xxl-1 {
    border-top-left-radius: var(--border-radius-sm) !important;
    border-top-right-radius: var(--border-radius-sm) !important;
  }
  .rounded-top-xxl-2 {
    border-top-left-radius: var(--border-radius) !important;
    border-top-right-radius: var(--border-radius) !important;
  }
  .rounded-top-xxl-pill {
    border-top-left-radius: var(--border-radius-pill) !important;
    border-top-right-radius: var(--border-radius-pill) !important;
  }
  .rounded-end-xxl {
    border-top-right-radius: var(--border-radius) !important;
    border-bottom-right-radius: var(--border-radius) !important;
  }
  .rounded-end-xxl-0 {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .rounded-end-xxl-1 {
    border-top-right-radius: var(--border-radius-sm) !important;
    border-bottom-right-radius: var(--border-radius-sm) !important;
  }
  .rounded-end-xxl-2 {
    border-top-right-radius: var(--border-radius) !important;
    border-bottom-right-radius: var(--border-radius) !important;
  }
  .rounded-end-xxl-pill {
    border-top-right-radius: var(--border-radius-pill) !important;
    border-bottom-right-radius: var(--border-radius-pill) !important;
  }
  .rounded-bottom-xxl {
    border-bottom-right-radius: var(--border-radius) !important;
    border-bottom-left-radius: var(--border-radius) !important;
  }
  .rounded-bottom-xxl-0 {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
  .rounded-bottom-xxl-1 {
    border-bottom-right-radius: var(--border-radius-sm) !important;
    border-bottom-left-radius: var(--border-radius-sm) !important;
  }
  .rounded-bottom-xxl-2 {
    border-bottom-right-radius: var(--border-radius) !important;
    border-bottom-left-radius: var(--border-radius) !important;
  }
  .rounded-bottom-xxl-pill {
    border-bottom-right-radius: var(--border-radius-pill) !important;
    border-bottom-left-radius: var(--border-radius-pill) !important;
  }
  .rounded-start-xxl {
    border-bottom-left-radius: var(--border-radius) !important;
    border-top-left-radius: var(--border-radius) !important;
  }
  .rounded-start-xxl-0 {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }
  .rounded-start-xxl-1 {
    border-bottom-left-radius: var(--border-radius-sm) !important;
    border-top-left-radius: var(--border-radius-sm) !important;
  }
  .rounded-start-xxl-2 {
    border-bottom-left-radius: var(--border-radius) !important;
    border-top-left-radius: var(--border-radius) !important;
  }
  .rounded-start-xxl-pill {
    border-bottom-left-radius: var(--border-radius-pill) !important;
    border-top-left-radius: var(--border-radius-pill) !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;
  }
}
[data-color-theme=dark],
html[data-color-theme=dark] [data-color-theme] {
  color-scheme: dark;
}
[data-color-theme=dark] .text-primary,
html[data-color-theme=dark] [data-color-theme] .text-primary {
  --primary-rgb: 242, 255, 145;
}
[data-color-theme=dark] .link-primary,
html[data-color-theme=dark] [data-color-theme] .link-primary {
  --primary-rgb: 242, 255, 145;
}
[data-color-theme=dark] .text-secondary,
html[data-color-theme=dark] [data-color-theme] .text-secondary {
  --secondary-rgb: 221, 172, 115;
}
[data-color-theme=dark] .link-secondary,
html[data-color-theme=dark] [data-color-theme] .link-secondary {
  --secondary-rgb: 221, 172, 115;
}
[data-color-theme=dark] .text-tertiary,
html[data-color-theme=dark] [data-color-theme] .text-tertiary {
  --tertiary-rgb: 112, 213, 179;
}
[data-color-theme=dark] .link-tertiary,
html[data-color-theme=dark] [data-color-theme] .link-tertiary {
  --tertiary-rgb: 112, 213, 179;
}
[data-color-theme=dark] .text-quaternary,
html[data-color-theme=dark] [data-color-theme] .text-quaternary {
  --quaternary-rgb: 174, 106, 151;
}
[data-color-theme=dark] .link-quaternary,
html[data-color-theme=dark] [data-color-theme] .link-quaternary {
  --quaternary-rgb: 174, 106, 151;
}
[data-color-theme=dark] .text-success,
html[data-color-theme=dark] [data-color-theme] .text-success {
  --success-rgb: 178, 226, 124;
}
[data-color-theme=dark] .link-success,
html[data-color-theme=dark] [data-color-theme] .link-success {
  --success-rgb: 178, 226, 124;
}
[data-color-theme=dark] .text-info,
html[data-color-theme=dark] [data-color-theme] .text-info {
  --info-rgb: 110, 201, 242;
}
[data-color-theme=dark] .link-info,
html[data-color-theme=dark] [data-color-theme] .link-info {
  --info-rgb: 110, 201, 242;
}
[data-color-theme=dark] .text-warning,
html[data-color-theme=dark] [data-color-theme] .text-warning {
  --warning-rgb: 255, 218, 106;
}
[data-color-theme=dark] .link-warning,
html[data-color-theme=dark] [data-color-theme] .link-warning {
  --warning-rgb: 255, 218, 106;
}
[data-color-theme=dark] .text-danger,
html[data-color-theme=dark] [data-color-theme] .text-danger {
  --danger-rgb: 234, 134, 143;
}
[data-color-theme=dark] .link-danger,
html[data-color-theme=dark] [data-color-theme] .link-danger {
  --danger-rgb: 234, 134, 143;
}
[data-color-theme=dark] .text-light,
html[data-color-theme=dark] [data-color-theme] .text-light {
  --light-rgb: 251, 251, 252;
}
[data-color-theme=dark] .link-light,
html[data-color-theme=dark] [data-color-theme] .link-light {
  --light-rgb: 251, 251, 252;
}
[data-color-theme=dark] .text-dark,
html[data-color-theme=dark] [data-color-theme] .text-dark {
  --dark-rgb: 117, 118, 119;
}
[data-color-theme=dark] .link-dark,
html[data-color-theme=dark] [data-color-theme] .link-dark {
  --dark-rgb: 117, 118, 119;
}
[data-color-theme=dark],
html[data-color-theme=dark] [data-color-theme] {
  --gray-100: rgb(56.53, 57.42, 60.98);
  --gray-200: rgb(63.22, 64.08, 67.52);
  --gray-300: rgb(69.91, 70.74, 74.06);
  --gray-400: rgb(76.6, 77.4, 80.6);
  --gray-500: rgb(110.05, 110.7, 113.3);
  --gray-600: rgb(143.5, 144, 146);
  --gray-700: rgb(176.95, 177.3, 178.7);
  --gray-800: rgb(210.4, 210.6, 211.4);
  --gray-900: rgb(243.85, 243.9, 244.1);
  --dark: rgb(8.347826087, 8.6086956522, 9.652173913);
  --dark-rgb: 8, 9, 10;
  --light: rgb(55.652173913, 57.3913043478, 64.347826087);
  --light-rgb: 56, 57, 64;
  --body-bg: #202125;
  --body-color: #fff;
  --body-color-rgb: 255, 255, 255;
  --border-color: rgb(76.6, 77.4, 80.6);
  --border-color-translucent: rgba(255, 255, 255, 0.125);
  --box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  --link-color: rgb(109.8, 168, 253.8);
  --link-rgb-color: 110, 168, 254;
  --link-hover-color: rgb(160.62, 198.45, 254.22);
  --highlight-bg: rgba(255, 255, 255, 0.3);
  --code-color: rgb(222.2, 91.8, 156.6);
}

/* ------------------------------------------------------------------------------
 *
 *  # Reboot overrides
 *
 * ---------------------------------------------------------------------------- */
mark, .mark {
  color: currentColor;
}

code {
  --code-bg: var(--gray-200);
  --code-padding: 0.125rem 0.25rem;
  background-color: var(--code-bg);
  padding: var(--code-padding);
  border-radius: var(--border-radius-sm);
}

kbd[data-color-theme=dark], [data-color-theme=dark] kbd:not([data-color-theme]), html[data-color-theme=dark] kbd {
  color-scheme: dark;
  color: var(--black);
  background-color: var(--white);
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

@media (min-width: 768px) {
  .custom-scrollbars * {
    -ms-overflow-style: -ms-autohiding-scrollbar;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-600) var(--gray-300);
  }
  .custom-scrollbars ::-webkit-scrollbar {
    height: 0.5rem;
    width: 0.5rem;
  }
  .custom-scrollbars ::-webkit-scrollbar-track {
    background: var(--gray-300);
  }
  .custom-scrollbars ::-webkit-scrollbar-thumb {
    background-color: var(--gray-600);
    border-radius: 0.5rem;
  }
}
/* ------------------------------------------------------------------------------
 *
 *  # Typography overrides
 *
 * ---------------------------------------------------------------------------- */
.list > li:not(:first-child),
.list > li .list > li {
  margin-top: var(--spacer-1);
}

ul.list-square {
  list-style-type: square;
}
ul.list-circle {
  list-style-type: circle;
}

.list-inline-bullet {
  --list-inline-bullet-size: .3125rem;
}
.list-inline-bullet .list-inline-item {
  position: relative;
}
.list-inline-bullet .list-inline-item:not(:last-child) {
  margin-right: var(--spacer-2);
  padding-right: calc(var(--spacer-2) + var(--list-inline-bullet-size));
}
.list-inline-bullet .list-inline-item:not(:last-child):after {
  content: "";
  width: var(--list-inline-bullet-size);
  height: var(--list-inline-bullet-size);
  background-color: currentColor;
  opacity: 0.65;
  position: absolute;
  left: 100%;
  top: 0;
  margin-top: calc((var(--body-line-height-computed) - var(--list-inline-bullet-size)) * 0.5);
  transform: translateX(-50%);
  border-radius: var(--border-radius-pill);
}

.blockquote-footer {
  margin-top: 0;
}
.blockquote-footer::before {
  content: "—   ";
}

a.text-body {
  transition: color ease-in-out var(--transition-base-timer);
}
a.text-body:hover, a.text-body:focus, a.text-body:active, a.text-body.active, a.text-body[aria-expanded=true], a.text-body[data-bs-toggle=collapse]:not(.collapsed) {
  color: var(--link-color) !important;
}

.list-feed {
  --feed-item-padding-y: 1.25rem;
  --feed-item-padding-x: calc(var(--spacer) + var(--feed-circle-radius));
  --feed-circle-bg: #fff;
  --feed-circle-radius: 0.5rem;
  --feed-circle-position: calc((var(--body-line-height-computed) - var(--feed-circle-radius)) * 0.5);
  --feed-circle-border-width: calc(var(--border-width) * 2);
  --feed-circle-border-color: var(--secondary);
}
.list-feed[data-color-theme=dark], [data-color-theme=dark] .list-feed:not([data-color-theme]), html[data-color-theme=dark] .list-feed {
  color-scheme: dark;
  --feed-circle-bg: rgb(43.8260869565, 45.1956521739, 50.6739130435);
}

.list-feed-item {
  position: relative;
  padding-bottom: var(--feed-item-padding-y);
  padding-left: var(--feed-item-padding-x);
}
.list-feed-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: var(--feed-circle-position);
  background-color: var(--feed-circle-bg);
  display: inline-block;
  border: var(--feed-circle-border-width) solid var(--feed-circle-border-color);
  z-index: 3;
  width: var(--feed-circle-radius);
  height: var(--feed-circle-radius);
  border-radius: var(--border-radius-pill);
}
.list-feed-item:after {
  content: "";
  position: absolute;
  top: var(--feed-circle-position);
  left: calc(var(--feed-circle-radius) * 0.5 - var(--feed-circle-border-width) * 0.5);
  bottom: calc((var(--feed-circle-position) + var(--feed-circle-border-width)) * -1);
  width: 0;
  border-left: calc(var(--feed-circle-border-width) * 0.5) solid var(--feed-circle-border-color);
  border-right: calc(var(--feed-circle-border-width) * 0.5) solid var(--feed-circle-border-color);
  z-index: 2;
}
.list-feed-item:first-child:after {
  top: var(--feed-circle-radius);
}
.list-feed-item:last-child {
  padding-bottom: 0;
}
.list-feed-item:last-child:after {
  content: none;
}
.list-feed-item[class*=border-]:before, .list-feed-item[class*=border-]:after {
  border-color: inherit;
}

.list-feed-solid .list-feed-item:before {
  content: "";
  border-width: calc(var(--feed-circle-radius) * 0.5);
  width: 0;
  height: 0;
}

.list-feed-square .list-feed-item:before {
  content: "";
  border-radius: 0;
}

.list-feed-rhombus .list-feed-item:before {
  content: "";
  transform: rotate(45deg);
  border-radius: 0;
}

.list-feed-time .list-feed-item {
  margin-left: calc(var(--feed-item-padding-x) * 2 - var(--feed-circle-radius) * 0.5);
}
.list-feed-time .list-feed-item .feed-time {
  position: absolute;
  left: calc((var(--feed-item-padding-x) * 2 - var(--feed-circle-radius) * 0.5) * -1);
  top: 0;
}

.content-divider {
  text-align: center;
  position: relative;
  z-index: 1;
}
.content-divider > span {
  background-color: var(--body-bg);
  display: inline-block;
}
.card .content-divider > span {
  background-color: var(--card-bg);
}
.modal .content-divider > span {
  background-color: var(--modal-bg);
}
.content-divider > span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: var(--border-width);
  background-color: var(--border-color);
  width: 100%;
  z-index: -1;
}

.letter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--body-line-height-computed);
  height: var(--body-line-height-computed);
  font-weight: 500;
  line-height: 1;
}

/* ------------------------------------------------------------------------------
 *
 *  # Buttons component overrides
 *
 * ---------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.btn-flat-primary {
  --btn-bg: rgba(var(--primary-rgb), .1);
  --btn-color: var(--primary);
  --btn-border-color: var(--primary);
  --btn-hover-color: var(--btn-color);
  --btn-hover-bg: rgba(var(--primary-rgb), .2);
  --btn-hover-border-color: var(--primary);
  --btn-focus-shadow-rgb: var(--primary-rgb);
  --btn-active-color: var(--primary);
  --btn-active-bg: rgba(var(--primary-rgb), .25);
  --btn-active-border-color: var(--primary);
  --btn-disabled-color: rgba(var(--primary-rgb), .65);
  --btn-disabled-bg: rgba(var(--primary-rgb), .05);
}

.btn-flat-secondary {
  --btn-bg: rgba(var(--secondary-rgb), .1);
  --btn-color: var(--secondary);
  --btn-border-color: var(--secondary);
  --btn-hover-color: var(--btn-color);
  --btn-hover-bg: rgba(var(--secondary-rgb), .2);
  --btn-hover-border-color: var(--secondary);
  --btn-focus-shadow-rgb: var(--secondary-rgb);
  --btn-active-color: var(--secondary);
  --btn-active-bg: rgba(var(--secondary-rgb), .25);
  --btn-active-border-color: var(--secondary);
  --btn-disabled-color: rgba(var(--secondary-rgb), .65);
  --btn-disabled-bg: rgba(var(--secondary-rgb), .05);
}

.btn-flat-tertiary {
  --btn-bg: rgba(var(--tertiary-rgb), .1);
  --btn-color: var(--tertiary);
  --btn-border-color: var(--tertiary);
  --btn-hover-color: var(--btn-color);
  --btn-hover-bg: rgba(var(--tertiary-rgb), .2);
  --btn-hover-border-color: var(--tertiary);
  --btn-focus-shadow-rgb: var(--tertiary-rgb);
  --btn-active-color: var(--tertiary);
  --btn-active-bg: rgba(var(--tertiary-rgb), .25);
  --btn-active-border-color: var(--tertiary);
  --btn-disabled-color: rgba(var(--tertiary-rgb), .65);
  --btn-disabled-bg: rgba(var(--tertiary-rgb), .05);
}

.btn-flat-quaternary {
  --btn-bg: rgba(var(--quaternary-rgb), .1);
  --btn-color: var(--quaternary);
  --btn-border-color: var(--quaternary);
  --btn-hover-color: var(--btn-color);
  --btn-hover-bg: rgba(var(--quaternary-rgb), .2);
  --btn-hover-border-color: var(--quaternary);
  --btn-focus-shadow-rgb: var(--quaternary-rgb);
  --btn-active-color: var(--quaternary);
  --btn-active-bg: rgba(var(--quaternary-rgb), .25);
  --btn-active-border-color: var(--quaternary);
  --btn-disabled-color: rgba(var(--quaternary-rgb), .65);
  --btn-disabled-bg: rgba(var(--quaternary-rgb), .05);
}

.btn-flat-success {
  --btn-bg: rgba(var(--success-rgb), .1);
  --btn-color: var(--success);
  --btn-border-color: var(--success);
  --btn-hover-color: var(--btn-color);
  --btn-hover-bg: rgba(var(--success-rgb), .2);
  --btn-hover-border-color: var(--success);
  --btn-focus-shadow-rgb: var(--success-rgb);
  --btn-active-color: var(--success);
  --btn-active-bg: rgba(var(--success-rgb), .25);
  --btn-active-border-color: var(--success);
  --btn-disabled-color: rgba(var(--success-rgb), .65);
  --btn-disabled-bg: rgba(var(--success-rgb), .05);
}

.btn-flat-info {
  --btn-bg: rgba(var(--info-rgb), .1);
  --btn-color: var(--info);
  --btn-border-color: var(--info);
  --btn-hover-color: var(--btn-color);
  --btn-hover-bg: rgba(var(--info-rgb), .2);
  --btn-hover-border-color: var(--info);
  --btn-focus-shadow-rgb: var(--info-rgb);
  --btn-active-color: var(--info);
  --btn-active-bg: rgba(var(--info-rgb), .25);
  --btn-active-border-color: var(--info);
  --btn-disabled-color: rgba(var(--info-rgb), .65);
  --btn-disabled-bg: rgba(var(--info-rgb), .05);
}

.btn-flat-warning {
  --btn-bg: rgba(var(--warning-rgb), .1);
  --btn-color: var(--warning);
  --btn-border-color: var(--warning);
  --btn-hover-color: var(--btn-color);
  --btn-hover-bg: rgba(var(--warning-rgb), .2);
  --btn-hover-border-color: var(--warning);
  --btn-focus-shadow-rgb: var(--warning-rgb);
  --btn-active-color: var(--warning);
  --btn-active-bg: rgba(var(--warning-rgb), .25);
  --btn-active-border-color: var(--warning);
  --btn-disabled-color: rgba(var(--warning-rgb), .65);
  --btn-disabled-bg: rgba(var(--warning-rgb), .05);
}

.btn-flat-danger {
  --btn-bg: rgba(var(--danger-rgb), .1);
  --btn-color: var(--danger);
  --btn-border-color: var(--danger);
  --btn-hover-color: var(--btn-color);
  --btn-hover-bg: rgba(var(--danger-rgb), .2);
  --btn-hover-border-color: var(--danger);
  --btn-focus-shadow-rgb: var(--danger-rgb);
  --btn-active-color: var(--danger);
  --btn-active-bg: rgba(var(--danger-rgb), .25);
  --btn-active-border-color: var(--danger);
  --btn-disabled-color: rgba(var(--danger-rgb), .65);
  --btn-disabled-bg: rgba(var(--danger-rgb), .05);
}

.btn-flat-light {
  --btn-bg: rgba(var(--light-rgb), .1);
  --btn-color: var(--light);
  --btn-border-color: var(--light);
  --btn-hover-color: var(--btn-color);
  --btn-hover-bg: rgba(var(--light-rgb), .2);
  --btn-hover-border-color: var(--light);
  --btn-focus-shadow-rgb: var(--light-rgb);
  --btn-active-color: var(--light);
  --btn-active-bg: rgba(var(--light-rgb), .25);
  --btn-active-border-color: var(--light);
  --btn-disabled-color: rgba(var(--light-rgb), .65);
  --btn-disabled-bg: rgba(var(--light-rgb), .05);
}

.btn-flat-dark {
  --btn-bg: rgba(var(--dark-rgb), .1);
  --btn-color: var(--dark);
  --btn-border-color: var(--dark);
  --btn-hover-color: var(--btn-color);
  --btn-hover-bg: rgba(var(--dark-rgb), .2);
  --btn-hover-border-color: var(--dark);
  --btn-focus-shadow-rgb: var(--dark-rgb);
  --btn-active-color: var(--dark);
  --btn-active-bg: rgba(var(--dark-rgb), .25);
  --btn-active-border-color: var(--dark);
  --btn-disabled-color: rgba(var(--dark-rgb), .65);
  --btn-disabled-bg: rgba(var(--dark-rgb), .05);
}

.btn-icon {
  padding-left: var(--btn-padding-y);
  padding-right: var(--btn-padding-y);
}

.btn-transparent {
  --btn-bg: transparent;
}

.btn-labeled {
  position: relative;
}
.btn-labeled-start {
  padding-left: calc(var(--btn-padding-y) * 2 + var(--btn-border-width) * 2 + var(--btn-font-size) * var(--btn-line-height) + var(--btn-padding-x));
}
.btn-labeled-end {
  padding-right: calc(var(--btn-padding-y) * 2 + var(--btn-border-width) * 2 + var(--btn-font-size) * var(--btn-line-height) + var(--btn-padding-x));
}

.btn-labeled-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(var(--btn-border-width) * -1);
  bottom: calc(var(--btn-border-width) * -1);
  padding: var(--btn-padding-y);
  width: calc(var(--btn-padding-y) * 2 + var(--btn-border-width) * 2 + var(--btn-font-size) * var(--btn-line-height));
}
.btn-labeled-start .btn-labeled-icon {
  left: calc(var(--btn-border-width) * -1);
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
}
.btn-labeled-end .btn-labeled-icon {
  right: calc(var(--btn-border-width) * -1);
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
}

.btn-lg, .btn-group-lg > .btn {
  --btn-line-height: var(--body-line-height-lg);
}

.btn-sm, .btn-group-sm > .btn {
  --btn-line-height: var(--body-line-height-sm);
}

.btn-flat-dark[data-color-theme=dark], [data-color-theme=dark] .btn-flat-dark:not([data-color-theme]), html[data-color-theme=dark] .btn-flat-dark,
.btn-flat-light[data-color-theme=dark],
[data-color-theme=dark] .btn-flat-light:not([data-color-theme]),
html[data-color-theme=dark] .btn-flat-light {
  color-scheme: dark;
  --btn-color: #fff;
  --btn-hover-color: #fff;
  --btn-active-color: #fff;
  --btn-disabled-color: #fff;
}

.btn-dark[data-color-theme=dark], [data-color-theme=dark] .btn-dark:not([data-color-theme]), html[data-color-theme=dark] .btn-dark {
  color-scheme: dark;
  --btn-bg: #181818;
  --btn-border-color: #181818;
  --btn-hover-bg: #111;
  --btn-hover-border-color: #111;
  --btn-focus-shadow-rgb: 17, 17, 17;
  --btn-active-bg: #000;
  --btn-active-border-color: #000;
  --btn-disabled-bg: #181818;
  --btn-disabled-border-color: #181818;
}

.btn-outline-dark[data-color-theme=dark], [data-color-theme=dark] .btn-outline-dark:not([data-color-theme]), html[data-color-theme=dark] .btn-outline-dark {
  color-scheme: dark;
  --btn-color: #fff;
  --btn-border-color: #111;
  --btn-hover-bg: #111;
  --btn-hover-border-color: #111;
  --btn-focus-shadow-rgb: 17, 17, 17;
  --btn-active-color: #fff;
  --btn-active-bg: #000;
  --btn-active-border-color: #000;
  --btn-disabled-color: #fff;
}

/* ------------------------------------------------------------------------------
 *
 *  # Button group component overrides
 *
 * ---------------------------------------------------------------------------- */
.btn-group-spaced > .btn:not(:first-of-type),
.btn-group-spaced > .btn-group:not(:first-of-type) {
  margin-left: 1px;
}

.btn-group-vertical-spaced > .btn:not(:first-of-type),
.btn-group-vertical-spaced > .btn-group:not(:first-of-type) {
  margin-top: 1px;
}

/* ------------------------------------------------------------------------------
 *
 *  # Dropdown menu component overrides
 *
 * ---------------------------------------------------------------------------- */
.dropdown-menu {
  --dropdown-scrollable-max-height: 17rem;
  --dropdown-item-spacer-y: 1px;
}
.dropdown-menu[data-color-theme=dark], [data-color-theme=dark] .dropdown-menu:not([data-color-theme]), html[data-color-theme=dark] .dropdown-menu {
  color-scheme: dark;
  --dropdown-bg: rgb(49.7391304348, 51.2934782609, 57.5108695652);
  --dropdown-border-color: rgba(var(--black-rgb), 0.25);
}

.dropdown-item {
  display: flex;
  align-items: center;
  position: relative;
  transition: color var(--transition-base-timer) ease-in-out, background-color var(--transition-base-timer) ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .dropdown-item {
    transition: none;
  }
}
.btn-check:checked + .dropdown-item {
  color: var(--dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--dropdown-link-active-bg);
}
.dropdown-item + .dropdown-item, .btn-check + .dropdown-item, .dropdown-item + .btn-check, .dropdown-submenu + .dropdown-item, .dropdown-item + .dropdown-submenu {
  margin-top: var(--dropdown-item-spacer-y);
}

.dropdown-header {
  font-size: var(--body-font-size);
}

.dropdown-image {
  max-height: var(--body-line-height-computed);
}

@media (max-width: 575.98px) {
  .dropdown-menu-scrollable-sm {
    max-height: var(--dropdown-scrollable-max-height);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .dropdown-menu-scrollable-md {
    max-height: var(--dropdown-scrollable-max-height);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .dropdown-menu-scrollable-lg {
    max-height: var(--dropdown-scrollable-max-height);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .dropdown-menu-scrollable-xl {
    max-height: var(--dropdown-scrollable-max-height);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .dropdown-menu-scrollable-xxl {
    max-height: var(--dropdown-scrollable-max-height);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.dropdown-menu-scrollable {
  max-height: var(--dropdown-scrollable-max-height);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.dropdown-menu-dark[data-color-theme=dark], [data-color-theme=dark] .dropdown-menu-dark:not([data-color-theme]), html[data-color-theme=dark] .dropdown-menu-dark {
  color-scheme: dark;
  --dropdown-bg: rgb(14.2608695652, 14.7065217391, 16.4891304348);
  --dropdown-border-color: rgba(var(--black-rgb), 0.2);
}

.dropdown-menu > .dropdown-submenu {
  position: relative;
}
.dropdown-menu > .dropdown-submenu > .dropdown-item {
  padding-right: calc(var(--dropdown-item-padding-x) + var(--body-font-size) * 1.5);
}
.dropdown-menu > .dropdown-submenu > .dropdown-item:after {
  content: "\f105";
  font-family: var(--icon-font-family);
  position: absolute;
  top: 50%;
  right: calc(var(--dropdown-item-padding-x) * 0.75);
  font-size: var(--body-font-size);
  line-height: 1;
  transform: translateY(-50%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[dir=rtl] .dropdown-menu > .dropdown-submenu > .dropdown-item:after {
  content: "\f104";
}
.dropdown-menu > .dropdown-submenu:hover > .dropdown-item:not(.dropdown-toggle) {
  color: var(--dropdown-link-hover-color);
  background-color: var(--dropdown-link-hover-bg);
}
.dropdown-menu > .dropdown-submenu.show > .dropdown-item {
  color: var(--dropdown-link-active-color);
  background-color: var(--dropdown-link-active-bg);
}
.dropdown-menu > .dropdown-submenu:hover > .dropdown-item:not(.dropdown-toggle) ~ .dropdown-menu, .dropdown-menu > .dropdown-submenu:focus > .dropdown-item:not(.dropdown-toggle) ~ .dropdown-menu {
  display: block;
}
.dropdown-menu > .dropdown-submenu.disabled {
  pointer-events: none;
}
.dropdown-menu > .dropdown-submenu.disabled > .dropdown-item {
  color: var(--dropdown-link-disabled-color);
}
.dropdown-menu > .dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: calc((var(--dropdown-padding-y) + var(--dropdown-border-width)) * -1);
}
.dropdown-menu > .dropdown-submenu.dropdown-submenu-start > .dropdown-menu {
  left: auto;
  right: 100%;
}
@media (max-width: 991.98px) {
  .dropdown-menu > .dropdown-submenu .dropdown-toggle:after {
    content: "\f107";
  }
  .dropdown-menu > .dropdown-submenu .dropdown-menu, .dropdown-menu > .dropdown-submenu.dropdown-submenu-start .dropdown-menu {
    position: static;
    margin: 0 !important;
    border-width: 0;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
  }
  .dropdown-menu > .dropdown-submenu > .dropdown-menu > .dropdown-item,
  .dropdown-menu > .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-item {
    padding-left: calc(var(--dropdown-item-padding-x) * 2);
  }
  .dropdown-menu > .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-menu > .dropdown-item,
  .dropdown-menu > .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-item {
    padding-left: calc(var(--dropdown-item-padding-x) * 3);
  }
}
.dropdown-menu .dropup > .dropdown-menu {
  top: auto;
  bottom: 0;
  margin-top: 0;
  margin-bottom: calc((var(--dropdown-padding-y) + var(--dropdown-border-width)) * -1);
}
.dropdown-menu .dropdown-submenu + .dropdown-submenu {
  margin-top: var(--dropdown-item-spacer-y);
}

.dropdown-menu-lg {
  --dropdown-item-padding: calc(var(--spacer) * 0.5) var(--spacer);
  --dropdown-font-size: 1.125rem;
}

.dropdown-menu-sm {
  --dropdown-item-padding: calc(var(--spacer) * 0.3) calc(var(--spacer) * 0.75);
  --dropdown-font-size: 0.875rem;
}

[dir=rtl] .navbar-nav > .nav-item:not([class*=mega-menu]) > .dropdown-menu, [dir=rtl] .nav-item:not([class*=mega-menu]) .navbar-nav-link ~ .dropdown-menu {
  /*rtl:begin:ignore*/
  left: auto;
  right: 0;
  /*rtl:end:ignore*/
}

[dir=rtl] .navbar-nav > .nav-item:not([class*=mega-menu]) > .dropdown-menu-end, [dir=rtl] .nav-item:not([class*=mega-menu]) .navbar-nav-link ~ .dropdown-menu-end {
  /*rtl:begin:ignore*/
  right: auto;
  left: 0;
  /*rtl:end:ignore*/
}

/* ------------------------------------------------------------------------------
 *
 *  # Nav, Tabs and Pills components overrides
 *
 * ---------------------------------------------------------------------------- */
.nav {
  --nav-link-active-color: var(--body-color);
}

.nav-link {
  display: flex;
  align-items: center;
}
.nav-link.active {
  color: var(--nav-link-active-color);
}
.nav-link.show {
  color: var(--nav-link-hover-color);
}
.nav-fill .nav-link, .nav-justified .nav-link {
  justify-content: center;
}

.nav-tabs:not(.nav-tabs-underline):not(.nav-tabs-overline):not(.nav-tabs-solid)[data-color-theme=dark], [data-color-theme=dark] .nav-tabs:not(.nav-tabs-underline):not(.nav-tabs-overline):not(.nav-tabs-solid):not([data-color-theme]), html[data-color-theme=dark] .nav-tabs:not(.nav-tabs-underline):not(.nav-tabs-overline):not(.nav-tabs-solid) {
  color-scheme: dark;
  --nav-tabs-link-active-bg: rgb(43.8260869565, 45.1956521739, 50.6739130435);
  --nav-tabs-link-active-border-color: var(--border-color) var(--border-color) rgb(43.8260869565, 45.1956521739, 50.6739130435);
}
.dropdown-menu .nav-tabs {
  --nav-tabs-link-active-bg: var(--dropdown-bg) !important;
}
.dropdown-menu .nav-tabs .nav-link.show,
.dropdown-menu .nav-tabs .nav-link.active {
  border-bottom-color: var(--dropdown-bg);
}

.nav-tabs-responsive {
  overflow-x: auto;
  box-shadow: 0 calc(var(--border-width) * -1) 0 var(--border-color) inset;
  -webkit-overflow-scrolling: touch;
}
.nav-tabs-responsive::-webkit-scrollbar {
  display: none !important;
}
.nav-tabs-responsive .nav-tabs {
  flex-wrap: nowrap;
  white-space: nowrap;
  border-bottom-color: transparent;
}

.nav-tabs-highlight,
.nav-tabs-overline,
.nav-tabs-underline {
  --nav-tabs-underline-size: 2px;
  --nav-tabs-underline-color: var(--primary);
}
.nav-tabs-highlight .nav-link,
.nav-tabs-overline .nav-link,
.nav-tabs-underline .nav-link {
  position: relative;
}
.nav-tabs-highlight .nav-link:before,
.nav-tabs-overline .nav-link:before,
.nav-tabs-underline .nav-link:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: var(--nav-tabs-underline-size);
  transition: background-color ease-in-out var(--transition-base-timer);
}
@media (prefers-reduced-motion: reduce) {
  .nav-tabs-highlight .nav-link:before,
  .nav-tabs-overline .nav-link:before,
  .nav-tabs-underline .nav-link:before {
    transition: none;
  }
}
.nav-tabs-highlight .nav-link.active:before,
.nav-tabs-overline .nav-link.active:before,
.nav-tabs-underline .nav-link.active:before {
  background-color: var(--nav-tabs-underline-color);
}

.nav-tabs-highlight {
  --nav-tabs-border-radius: 0;
}
.nav-tabs-highlight .nav-link:before {
  top: calc(var(--nav-tabs-border-width) * -1);
  left: calc(var(--nav-tabs-border-width) * -1);
  right: calc(var(--nav-tabs-border-width) * -1);
}

.nav-tabs-overline,
.nav-tabs-underline {
  --nav-tabs-link-active-bg: transparent;
}
.nav-tabs-overline .nav-link,
.nav-tabs-underline .nav-link {
  border-width: 0;
  margin-bottom: 0;
}

.nav-tabs-overline {
  border-bottom: 0;
  border-top: var(--nav-tabs-border-width) solid var(--nav-tabs-border-color);
}
.nav-tabs-overline .nav-link:before {
  top: calc(var(--nav-tabs-border-width) * -1);
}

.nav-tabs-underline .nav-link:before {
  bottom: calc(var(--nav-tabs-border-width) * -1);
}

.nav-tabs-solid {
  --nav-tabs-bg: var(--gray-200);
  --nav-tabs-border-radius: 0;
  --nav-tabs-border-width: 0;
  --nav-tabs-link-active-color: var(--component-active-color);
  --nav-tabs-link-active-bg: var(--component-active-bg);
  background-color: var(--nav-tabs-bg);
}
.nav-tabs-solid .nav-link {
  margin-bottom: 0;
}
.nav-tabs-solid.border .nav-link {
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow ease-in-out var(--transition-base-timer);
}
@media (prefers-reduced-motion: reduce) {
  .nav-tabs-solid.border .nav-link {
    transition: none;
  }
}
.nav-tabs-solid.border .nav-link.active {
  box-shadow: 0 0 0 var(--border-width) var(--nav-tabs-link-active-bg);
}

.nav-tabs-solid-dark {
  --nav-link-color: rgba(var(--white-rgb), .75);
  --nav-link-hover-color: var(--white);
  --nav-link-disabled-color: rgba(var(--white-rgb), .5);
  --nav-tabs-link-active-color: var(--white);
  --nav-tabs-link-active-bg: rgba(var(--white-rgb), .15);
}

.nav-tabs-vertical {
  --nav-tabs-border-radius: 0;
  --nav-tabs-link-active-bg: transparent;
  --nav-tabs-underline-size: 2px;
  --nav-tabs-underline-color: var(--primary);
  border-bottom: 0;
  flex-direction: column;
}
.nav-tabs-vertical .nav-link {
  justify-content: flex-start;
  position: relative;
}
.nav-tabs-vertical .nav-link:before {
  content: "";
  position: absolute;
  top: calc(var(--nav-tabs-border-width) * -1);
  bottom: calc(var(--nav-tabs-border-width) * -1);
  width: var(--nav-tabs-underline-size);
  transition: background-color ease-in-out var(--transition-base-timer);
}
@media (prefers-reduced-motion: reduce) {
  .nav-tabs-vertical .nav-link:before {
    transition: none;
  }
}
.nav-tabs-vertical .nav-link.active {
  border-color: var(--nav-tabs-border-color) transparent;
}
.nav-tabs-vertical .nav-link.active:before {
  background-color: var(--nav-tabs-underline-color);
}
.nav-tabs-vertical-start .nav-link:not(.active) {
  border-right-color: var(--nav-tabs-border-color);
}
.nav-tabs-vertical-start .nav-link:before {
  left: calc(var(--nav-tabs-border-width) * -1);
}
.nav-tabs-vertical-end .nav-link:not(.active) {
  border-left-color: var(--nav-tabs-border-color);
}
.nav-tabs-vertical-end .nav-link:before {
  right: calc(var(--nav-tabs-border-width) * -1);
}

.nav-pills-outline .nav-item + .nav-item {
  margin-left: calc(var(--spacer) * 0.5);
}
.nav-pills-outline .nav-link {
  border: var(--border-width) solid var(--border-color);
}
.nav-pills-outline .nav-link:not(.active):hover,
.nav-pills-outline .nav-link:not(.active):focus {
  background-color: var(--gray-200);
  border-color: var(--gray-500);
}
.nav-pills-outline .nav-link:not(.active):active,
.nav-pills-outline .nav-link.show:not(.active) {
  background-color: var(--gray-300);
  border-color: var(--gray-600);
  color: var(--nav-link-hover-color);
}
.nav-pills-outline .nav-link.active {
  border-color: var(--nav-pills-link-active-bg);
}
.nav-pills-outline.flex-column .nav-item + .nav-item {
  margin-left: 0;
  margin-top: calc(var(--spacer) * 0.5);
}

.nav-pills-toolbar:not(.flex-column) .nav-item + .nav-item {
  margin-left: calc(var(--border-width) * -1);
}
.nav-pills-toolbar:not(.flex-column) .nav-item:not(:first-child) .nav-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.nav-pills-toolbar:not(.flex-column) .nav-item:not(:last-child) .nav-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.nav-pills-toolbar.flex-column .nav-item + .nav-item {
  margin-top: calc(var(--border-width) * -1);
}
.nav-pills-toolbar.flex-column .nav-item:not(:first-child) .nav-link {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav-pills-toolbar.flex-column .nav-item:not(:last-child) .nav-link {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.nav-pills-toolbar .nav-link {
  position: relative;
}
.nav-pills-toolbar .nav-link:hover {
  z-index: 2;
}
.nav-pills-toolbar .nav-link:focus, .nav-pills-toolbar .nav-link.show {
  z-index: 3;
}
.nav-pills-toolbar .nav-link.active {
  z-index: 4;
}

.nav-btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--body-color-rgb), 0.075);
  width: var(--body-line-height-computed);
  height: var(--body-line-height-computed);
  transition: background-color ease-in-out var(--transition-base-timer);
}
@media (prefers-reduced-motion: reduce) {
  .nav-btn-close {
    transition: none;
  }
}
.nav-btn-close:hover, .nav-btn-close:focus {
  background-color: rgba(var(--body-color-rgb), 0.15);
}

.nav-scrollspy {
  --nav-link-padding-y: var(--spacer-1);
  --nav-link-padding-x: var(--spacer-1);
  --nav-link-hover-color: var(--link-color);
}
.nav-scrollspy .nav .nav-link {
  padding-left: calc(var(--spacer) * 2);
}
.nav-scrollspy .nav-link {
  position: relative;
  padding-left: var(--spacer);
  border-left: 2px solid var(--border-color);
}
.nav-scrollspy .nav-link.active {
  border-color: var(--nav-link-hover-color);
  color: var(--nav-link-hover-color);
}
.nav-scrollspy-wrapper.sticky-top {
  top: var(--spacer-4);
}

.nav-item-active-indicator {
  opacity: 0;
  visibility: hidden;
  transition: opacity ease-in-out var(--transition-base-timer), visibility ease-in-out var(--transition-base-timer);
}
@media (prefers-reduced-motion: reduce) {
  .nav-item-active-indicator {
    transition: none;
  }
}
.active .nav-item-active-indicator {
  visibility: visible;
  opacity: 1;
}

/* ------------------------------------------------------------------------------
 *
 *  # Card component overrides
 *
 * ---------------------------------------------------------------------------- */
.card[data-color-theme=dark], [data-color-theme=dark] .card:not([data-color-theme]), html[data-color-theme=dark] .card {
  color-scheme: dark;
  --card-bg: rgb(43.8260869565, 45.1956521739, 50.6739130435);
}
.card {
  border: 0;
  margin-bottom: var(--spacer);
}

.card-footer {
  --card-cap-bg: rgba(var(--black-rgb), .015);
}

.card-group-vertical > .card {
  margin-bottom: 0;
}
.card-group-vertical > .card + .card {
  border-top: 0 !important;
}
.card-group-vertical > .card:not(:last-child) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.card-group-vertical > .card:not(:last-child) .card-img-top,
.card-group-vertical > .card:not(:last-child) .card-header {
  border-bottom-left-radius: 0;
}
.card-group-vertical > .card:not(:last-child) .card-img-bottom,
.card-group-vertical > .card:not(:last-child) .card-footer {
  border-bottom-right-radius: 0;
}
.card-group-vertical > .card:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.card-group-vertical > .card:not(:first-child) .card-img-top,
.card-group-vertical > .card:not(:first-child) .card-header {
  border-top-left-radius: 0;
}
.card-group-vertical > .card:not(:first-child) .card-img-bottom,
.card-group-vertical > .card:not(:first-child) .card-footer {
  border-top-right-radius: 0;
}
.card-group-vertical .card-header {
  border-bottom: 0;
}
.card-group-vertical .card-body {
  border-top: var(--card-border-width) solid var(--card-border-color);
}

.card-body .card-img {
  border-radius: var(--card-border-radius);
}

.card-img-actions {
  position: relative;
}
.card-img-actions:hover .card-img-actions-overlay, .card-img-actions:focus .card-img-actions-overlay {
  opacity: 1;
  visibility: visible;
}

.card-img-actions-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--black-rgb), 0.75);
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out var(--transition-base-timer);
}
@media (prefers-reduced-motion: reduce) {
  .card-img-actions-overlay {
    transition: none;
  }
}

[data-card-action] {
  cursor: pointer;
  line-height: 1;
}

[data-card-action=collapse] i {
  transition: transform ease-in-out var(--transition-collapse-timer);
}
@media (prefers-reduced-motion: reduce) {
  [data-card-action=collapse] i {
    transition: none;
  }
}
.card-collapsed [data-card-action=collapse] i {
  transform: rotate(180deg);
}

.card-header-tabs {
  --nav-link-padding-y: 1rem;
}
.card-header-tabs .nav-link {
  border-top-width: 0;
}

.card-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  border-radius: 0;
  z-index: 1055;
  -webkit-overflow-scrolling: touch;
}

.card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--white-rgb), 0.75);
  z-index: 1001;
  animation: cardOverlayEnter var(--transition-base-timer) ease;
  border-radius: var(--border-radius);
}
.card-overlay[data-color-theme=dark], [data-color-theme=dark] .card-overlay:not([data-color-theme]), html[data-color-theme=dark] .card-overlay {
  color-scheme: dark;
  background-color: rgba(var(--black-rgb), 0.5);
}
.card-overlay-fadeout {
  animation: cardOverlayExit var(--transition-base-timer) ease;
}

@keyframes cardOverlayEnter {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes cardOverlayExit {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* ------------------------------------------------------------------------------
 *
 *  # Accordion component overrides
 *
 * ---------------------------------------------------------------------------- */
.accordion-button:not(.collapsed) {
  box-shadow: none;
}
.accordion-button:not(.collapsed)[data-color-theme=dark], [data-color-theme=dark] .accordion-button:not(.collapsed):not([data-color-theme]), html[data-color-theme=dark] .accordion-button:not(.collapsed) {
  color-scheme: dark;
}
.accordion-button:not(.collapsed)[data-color-theme=dark]::after, [data-color-theme=dark] .accordion-button:not(.collapsed):not([data-color-theme])::after, html[data-color-theme=dark] .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%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");
}
.accordion-button[data-color-theme=dark], [data-color-theme=dark] .accordion-button:not([data-color-theme]), html[data-color-theme=dark] .accordion-button {
  color-scheme: dark;
}
.accordion-button[data-color-theme=dark]::after, [data-color-theme=dark] .accordion-button:not([data-color-theme])::after, html[data-color-theme=dark] .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 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");
}

.accordion-collapse {
  box-shadow: inset 0 var(--accordion-border-width) 0 var(--accordion-border-color);
}

.accordion-status > .accordion-item {
  border: 1px solid transparent;
  border-radius: 0.375rem !important;
  overflow: hidden;
  margin-bottom: 12px;
}
.accordion-status > .accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-status .accordion-button {
  position: relative;
  padding: 18px 56px 18px 24px;
  font-weight: 600;
  background-color: #f4f4f4;
  color: inherit;
  border-radius: 0.375rem !important;
  transition: background-color 300ms ease, color 300ms ease;
}
.accordion-status .accordion-button::after {
  display: none;
}
.accordion-status .accordion-button::before {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: 50% 50%;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 300ms ease;
}
.accordion-status .accordion-button.collapsed::before {
  transform: translateY(-50%) rotate(0deg);
}
.accordion-status .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.accordion-status .accordion-button:focus {
  box-shadow: none;
}
.accordion-status .accordion-collapse {
  box-shadow: none;
}
.accordion-status .accordion-body {
  padding: 20px 24px;
}

.accordion-status.accordion-status-primary .accordion-button:not(.collapsed) {
  background-color: #eaff48;
  color: #191a1c;
}
.accordion-status.accordion-status-primary .accordion-button:not(.collapsed)::before {
  color: #191a1c;
}
.accordion-status.accordion-status-primary .accordion-button.collapsed:hover {
  background-color: rgb(251.85, 255, 227.55);
}

.accordion-status.accordion-status-secondary .accordion-button:not(.collapsed) {
  background-color: #c67416;
  color: #ffffff;
}
.accordion-status.accordion-status-secondary .accordion-button:not(.collapsed)::before {
  color: #ffffff;
}
.accordion-status.accordion-status-secondary .accordion-button.collapsed:hover {
  background-color: rgb(246.45, 234.15, 220.05);
}

.accordion-status.accordion-status-tertiary .accordion-button:not(.collapsed) {
  background-color: #10b981;
  color: #ffffff;
}
.accordion-status.accordion-status-tertiary .accordion-button:not(.collapsed)::before {
  color: #ffffff;
}
.accordion-status.accordion-status-tertiary .accordion-button.collapsed:hover {
  background-color: rgb(219.15, 244.5, 236.1);
}

.accordion-status.accordion-status-quaternary .accordion-button:not(.collapsed) {
  background-color: #780752;
  color: #ffffff;
}
.accordion-status.accordion-status-quaternary .accordion-button:not(.collapsed)::before {
  color: #ffffff;
}
.accordion-status.accordion-status-quaternary .accordion-button.collapsed:hover {
  background-color: rgb(234.75, 217.8, 229.05);
}

.accordion-status.accordion-status-success .accordion-button:not(.collapsed) {
  background-color: #7ece25;
  color: #191a1c;
}
.accordion-status.accordion-status-success .accordion-button:not(.collapsed)::before {
  color: #191a1c;
}
.accordion-status.accordion-status-success .accordion-button.collapsed:hover {
  background-color: rgb(235.65, 247.65, 222.3);
}

.accordion-status.accordion-status-info .accordion-button:not(.collapsed) {
  background-color: #0ea5e9;
  color: #ffffff;
}
.accordion-status.accordion-status-info .accordion-button:not(.collapsed)::before {
  color: #ffffff;
}
.accordion-status.accordion-status-info .accordion-button.collapsed:hover {
  background-color: rgb(218.85, 241.5, 251.7);
}

.accordion-status.accordion-status-warning .accordion-button:not(.collapsed) {
  background-color: #ffc107;
  color: #191a1c;
}
.accordion-status.accordion-status-warning .accordion-button:not(.collapsed)::before {
  color: #191a1c;
}
.accordion-status.accordion-status-warning .accordion-button.collapsed:hover {
  background-color: rgb(255, 245.7, 217.8);
}

.accordion-status.accordion-status-danger .accordion-button:not(.collapsed) {
  background-color: #dc3545;
  color: #ffffff;
}
.accordion-status.accordion-status-danger .accordion-button:not(.collapsed)::before {
  color: #ffffff;
}
.accordion-status.accordion-status-danger .accordion-button.collapsed:hover {
  background-color: rgb(249.75, 224.7, 227.1);
}

.accordion-status.accordion-status-light .accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #191a1c;
}
.accordion-status.accordion-status-light .accordion-button:not(.collapsed)::before {
  color: #191a1c;
}
.accordion-status.accordion-status-light .accordion-button.collapsed:hover {
  background-color: rgb(253.95, 254.1, 254.25);
}

.accordion-status.accordion-status-dark .accordion-button:not(.collapsed) {
  background-color: #191a1c;
  color: #ffffff;
}
.accordion-status.accordion-status-dark .accordion-button:not(.collapsed)::before {
  color: #ffffff;
}
.accordion-status.accordion-status-dark .accordion-button.collapsed:hover {
  background-color: rgb(220.5, 220.65, 220.95);
}

/* ------------------------------------------------------------------------------
 *
 *  # Badge component overrides
 *
 * ---------------------------------------------------------------------------- */
.badge {
  min-width: calc(var(--badge-padding-y) * 2 + var(--badge-font-size));
}
.badge[href]:hover, .badge[href]:focus {
  color: var(--badge-color);
  box-shadow: 0 0 0 20rem rgba(var(--black-rgb), 0.1) inset;
}

/* ------------------------------------------------------------------------------
 *
 *  # Alert component overrides
 *
 * ---------------------------------------------------------------------------- */
.alert-dismissible .btn-close[data-color-theme=dark], [data-color-theme=dark] .alert-dismissible .btn-close:not([data-color-theme]), html[data-color-theme=dark] .alert-dismissible .btn-close {
  color-scheme: dark;
  filter: invert(1) grayscale(100%) brightness(200%);
}

.alert-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  padding: var(--alert-padding-y);
  line-height: 1;
}

.alert .alert-icon i,
.alert i.float-start,
.alert i.float-end {
  margin: calc((var(--body-line-height-computed) - var(--icon-font-size)) * 0.5);
}

.alert-icon-start {
  padding-left: calc(var(--alert-padding-y) * 2 + var(--alert-padding-x) + var(--icon-font-size));
}
.alert-icon-start .alert-icon {
  left: 0;
  border-top-left-radius: calc(var(--alert-border-radius) - var(--alert-border-width));
  border-bottom-left-radius: calc(var(--alert-border-radius) - var(--alert-border-width));
}

.alert-icon-end {
  padding-right: calc(var(--alert-padding-y) * 2 + var(--alert-padding-x) + var(--icon-font-size));
}
.alert-icon-end .alert-icon {
  right: 0;
  border-top-right-radius: calc(var(--alert-border-radius) - var(--alert-border-width));
  border-bottom-right-radius: calc(var(--alert-border-radius) - var(--alert-border-width));
}
.alert-icon-end.alert-dismissible .btn-close {
  right: calc(var(--alert-padding-y) * 2 + var(--icon-font-size));
}

.alert-primary[data-color-theme=dark], [data-color-theme=dark] .alert-primary:not([data-color-theme]), html[data-color-theme=dark] .alert-primary {
  color-scheme: dark;
  --alert-color: rgb(248.7, 255, 200.1);
  --alert-bg: rgba(96.96, 102, 58.08, 0.25);
  --alert-border-color: rgb(145.44, 153, 87.12);
  --alert-link-color: rgb(198.96, 204, 160.08);
  --alert-link-hover-color: rgb(174.09, 178.5, 140.07);
}
.alert-primary[data-color-theme=dark] .alert-link, [data-color-theme=dark] .alert-primary:not([data-color-theme]) .alert-link, html[data-color-theme=dark] .alert-primary .alert-link {
  color: var(--alert-link-color);
}
.alert-primary[data-color-theme=dark] .alert-link:hover, .alert-primary[data-color-theme=dark] .alert-link:focus, [data-color-theme=dark] .alert-primary:not([data-color-theme]) .alert-link:hover, [data-color-theme=dark] .alert-primary:not([data-color-theme]) .alert-link:focus, html[data-color-theme=dark] .alert-primary .alert-link:hover, html[data-color-theme=dark] .alert-primary .alert-link:focus {
  color: var(--alert-link-hover-color);
}

.alert-secondary[data-color-theme=dark], [data-color-theme=dark] .alert-secondary:not([data-color-theme]), html[data-color-theme=dark] .alert-secondary {
  color-scheme: dark;
  --alert-color: rgb(237.9, 213.3, 185.1);
  --alert-bg: rgba(88.32, 68.64, 46.08, 0.25);
  --alert-border-color: rgb(132.48, 102.96, 69.12);
  --alert-link-color: rgb(190.32, 170.64, 148.08);
  --alert-link-hover-color: rgb(166.53, 149.31, 129.57);
}
.alert-secondary[data-color-theme=dark] .alert-link, [data-color-theme=dark] .alert-secondary:not([data-color-theme]) .alert-link, html[data-color-theme=dark] .alert-secondary .alert-link {
  color: var(--alert-link-color);
}
.alert-secondary[data-color-theme=dark] .alert-link:hover, .alert-secondary[data-color-theme=dark] .alert-link:focus, [data-color-theme=dark] .alert-secondary:not([data-color-theme]) .alert-link:hover, [data-color-theme=dark] .alert-secondary:not([data-color-theme]) .alert-link:focus, html[data-color-theme=dark] .alert-secondary .alert-link:hover, html[data-color-theme=dark] .alert-secondary .alert-link:focus {
  color: var(--alert-link-hover-color);
}

.alert-tertiary[data-color-theme=dark], [data-color-theme=dark] .alert-tertiary:not([data-color-theme]), html[data-color-theme=dark] .alert-tertiary {
  color-scheme: dark;
  --alert-color: rgb(183.3, 234, 217.2);
  --alert-bg: rgba(44.64, 85.2, 71.76, 0.25);
  --alert-border-color: rgb(66.96, 127.8, 107.64);
  --alert-link-color: rgb(146.64, 187.2, 173.76);
  --alert-link-hover-color: rgb(128.31, 163.8, 152.04);
}
.alert-tertiary[data-color-theme=dark] .alert-link, [data-color-theme=dark] .alert-tertiary:not([data-color-theme]) .alert-link, html[data-color-theme=dark] .alert-tertiary .alert-link {
  color: var(--alert-link-color);
}
.alert-tertiary[data-color-theme=dark] .alert-link:hover, .alert-tertiary[data-color-theme=dark] .alert-link:focus, [data-color-theme=dark] .alert-tertiary:not([data-color-theme]) .alert-link:hover, [data-color-theme=dark] .alert-tertiary:not([data-color-theme]) .alert-link:focus, html[data-color-theme=dark] .alert-tertiary .alert-link:hover, html[data-color-theme=dark] .alert-tertiary .alert-link:focus {
  color: var(--alert-link-hover-color);
}

.alert-quaternary[data-color-theme=dark], [data-color-theme=dark] .alert-quaternary:not([data-color-theme]), html[data-color-theme=dark] .alert-quaternary {
  color-scheme: dark;
  --alert-color: rgb(214.5, 180.6, 203.1);
  --alert-bg: rgba(69.6, 42.48, 60.48, 0.25);
  --alert-border-color: rgb(104.4, 63.72, 90.72);
  --alert-link-color: rgb(171.6, 144.48, 162.48);
  --alert-link-hover-color: rgb(150.15, 126.42, 142.17);
}
.alert-quaternary[data-color-theme=dark] .alert-link, [data-color-theme=dark] .alert-quaternary:not([data-color-theme]) .alert-link, html[data-color-theme=dark] .alert-quaternary .alert-link {
  color: var(--alert-link-color);
}
.alert-quaternary[data-color-theme=dark] .alert-link:hover, .alert-quaternary[data-color-theme=dark] .alert-link:focus, [data-color-theme=dark] .alert-quaternary:not([data-color-theme]) .alert-link:hover, [data-color-theme=dark] .alert-quaternary:not([data-color-theme]) .alert-link:focus, html[data-color-theme=dark] .alert-quaternary .alert-link:hover, html[data-color-theme=dark] .alert-quaternary .alert-link:focus {
  color: var(--alert-link-hover-color);
}

.alert-success[data-color-theme=dark], [data-color-theme=dark] .alert-success:not([data-color-theme]), html[data-color-theme=dark] .alert-success {
  color-scheme: dark;
  --alert-color: rgb(216.3, 240.3, 189.6);
  --alert-bg: rgba(71.04, 90.24, 49.68, 0.25);
  --alert-border-color: rgb(106.56, 135.36, 74.52);
  --alert-link-color: rgb(173.04, 192.24, 151.68);
  --alert-link-hover-color: rgb(151.41, 168.21, 132.72);
}
.alert-success[data-color-theme=dark] .alert-link, [data-color-theme=dark] .alert-success:not([data-color-theme]) .alert-link, html[data-color-theme=dark] .alert-success .alert-link {
  color: var(--alert-link-color);
}
.alert-success[data-color-theme=dark] .alert-link:hover, .alert-success[data-color-theme=dark] .alert-link:focus, [data-color-theme=dark] .alert-success:not([data-color-theme]) .alert-link:hover, [data-color-theme=dark] .alert-success:not([data-color-theme]) .alert-link:focus, html[data-color-theme=dark] .alert-success .alert-link:hover, html[data-color-theme=dark] .alert-success .alert-link:focus {
  color: var(--alert-link-hover-color);
}

.alert-info[data-color-theme=dark], [data-color-theme=dark] .alert-info:not([data-color-theme]), html[data-color-theme=dark] .alert-info {
  color-scheme: dark;
  --alert-color: rgb(182.7, 228, 248.4);
  --alert-bg: rgba(44.16, 80.4, 96.72, 0.25);
  --alert-border-color: rgb(66.24, 120.6, 145.08);
  --alert-link-color: rgb(146.16, 182.4, 198.72);
  --alert-link-hover-color: rgb(127.89, 159.6, 173.88);
}
.alert-info[data-color-theme=dark] .alert-link, [data-color-theme=dark] .alert-info:not([data-color-theme]) .alert-link, html[data-color-theme=dark] .alert-info .alert-link {
  color: var(--alert-link-color);
}
.alert-info[data-color-theme=dark] .alert-link:hover, .alert-info[data-color-theme=dark] .alert-link:focus, [data-color-theme=dark] .alert-info:not([data-color-theme]) .alert-link:hover, [data-color-theme=dark] .alert-info:not([data-color-theme]) .alert-link:focus, html[data-color-theme=dark] .alert-info .alert-link:hover, html[data-color-theme=dark] .alert-info .alert-link:focus {
  color: var(--alert-link-hover-color);
}

.alert-warning[data-color-theme=dark], [data-color-theme=dark] .alert-warning:not([data-color-theme]), html[data-color-theme=dark] .alert-warning {
  color-scheme: dark;
  --alert-color: rgb(255, 236.4, 180.6);
  --alert-bg: rgba(102, 87.12, 42.48, 0.25);
  --alert-border-color: rgb(153, 130.68, 63.72);
  --alert-link-color: rgb(204, 189.12, 144.48);
  --alert-link-hover-color: rgb(178.5, 165.48, 126.42);
}
.alert-warning[data-color-theme=dark] .alert-link, [data-color-theme=dark] .alert-warning:not([data-color-theme]) .alert-link, html[data-color-theme=dark] .alert-warning .alert-link {
  color: var(--alert-link-color);
}
.alert-warning[data-color-theme=dark] .alert-link:hover, .alert-warning[data-color-theme=dark] .alert-link:focus, [data-color-theme=dark] .alert-warning:not([data-color-theme]) .alert-link:hover, [data-color-theme=dark] .alert-warning:not([data-color-theme]) .alert-link:focus, html[data-color-theme=dark] .alert-warning .alert-link:hover, html[data-color-theme=dark] .alert-warning .alert-link:focus {
  color: var(--alert-link-hover-color);
}

.alert-danger[data-color-theme=dark], [data-color-theme=dark] .alert-danger:not([data-color-theme]), html[data-color-theme=dark] .alert-danger {
  color-scheme: dark;
  --alert-color: rgb(244.5, 194.4, 199.2);
  --alert-bg: rgba(93.6, 53.52, 57.36, 0.25);
  --alert-border-color: rgb(140.4, 80.28, 86.04);
  --alert-link-color: rgb(195.6, 155.52, 159.36);
  --alert-link-hover-color: rgb(171.15, 136.08, 139.44);
}
.alert-danger[data-color-theme=dark] .alert-link, [data-color-theme=dark] .alert-danger:not([data-color-theme]) .alert-link, html[data-color-theme=dark] .alert-danger .alert-link {
  color: var(--alert-link-color);
}
.alert-danger[data-color-theme=dark] .alert-link:hover, .alert-danger[data-color-theme=dark] .alert-link:focus, [data-color-theme=dark] .alert-danger:not([data-color-theme]) .alert-link:hover, [data-color-theme=dark] .alert-danger:not([data-color-theme]) .alert-link:focus, html[data-color-theme=dark] .alert-danger .alert-link:hover, html[data-color-theme=dark] .alert-danger .alert-link:focus {
  color: var(--alert-link-hover-color);
}

.alert-light[data-color-theme=dark], [data-color-theme=dark] .alert-light:not([data-color-theme]), html[data-color-theme=dark] .alert-light {
  color-scheme: dark;
  --alert-color: rgb(252.9, 253.2, 253.5);
  --alert-bg: rgba(100.32, 100.56, 100.8, 0.25);
  --alert-border-color: rgb(150.48, 150.84, 151.2);
  --alert-link-color: rgb(202.32, 202.56, 202.8);
  --alert-link-hover-color: rgb(177.03, 177.24, 177.45);
}
.alert-light[data-color-theme=dark] .alert-link, [data-color-theme=dark] .alert-light:not([data-color-theme]) .alert-link, html[data-color-theme=dark] .alert-light .alert-link {
  color: var(--alert-link-color);
}
.alert-light[data-color-theme=dark] .alert-link:hover, .alert-light[data-color-theme=dark] .alert-link:focus, [data-color-theme=dark] .alert-light:not([data-color-theme]) .alert-link:hover, [data-color-theme=dark] .alert-light:not([data-color-theme]) .alert-link:focus, html[data-color-theme=dark] .alert-light .alert-link:hover, html[data-color-theme=dark] .alert-light .alert-link:focus {
  color: var(--alert-link-hover-color);
}

.alert-dark[data-color-theme=dark], [data-color-theme=dark] .alert-dark:not([data-color-theme]), html[data-color-theme=dark] .alert-dark {
  color-scheme: dark;
  --alert-color: rgb(186, 186.3, 186.9);
  --alert-bg: rgba(46.8, 47.04, 47.52, 0.25);
  --alert-border-color: rgb(70.2, 70.56, 71.28);
  --alert-link-color: rgb(148.8, 149.04, 149.52);
  --alert-link-hover-color: rgb(130.2, 130.41, 130.83);
}
.alert-dark[data-color-theme=dark] .alert-link, [data-color-theme=dark] .alert-dark:not([data-color-theme]) .alert-link, html[data-color-theme=dark] .alert-dark .alert-link {
  color: var(--alert-link-color);
}
.alert-dark[data-color-theme=dark] .alert-link:hover, .alert-dark[data-color-theme=dark] .alert-link:focus, [data-color-theme=dark] .alert-dark:not([data-color-theme]) .alert-link:hover, [data-color-theme=dark] .alert-dark:not([data-color-theme]) .alert-link:focus, html[data-color-theme=dark] .alert-dark .alert-link:hover, html[data-color-theme=dark] .alert-dark .alert-link:focus {
  color: var(--alert-link-hover-color);
}

/* ------------------------------------------------------------------------------
 *
 *  # Close Button component overrides
 *
 * ---------------------------------------------------------------------------- */
.btn-close {
  transition: all 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn-close {
    transition: none;
  }
}

/* ------------------------------------------------------------------------------
 *
 *  # Modal component overrides
 *
 * ---------------------------------------------------------------------------- */
.modal[data-color-theme=dark], [data-color-theme=dark] .modal:not([data-color-theme]), html[data-color-theme=dark] .modal {
  color-scheme: dark;
  --modal-bg: rgb(43.8260869565, 45.1956521739, 50.6739130435);
}

.modal-header .btn-close[data-color-theme=dark], [data-color-theme=dark] .modal-header .btn-close:not([data-color-theme]), html[data-color-theme=dark] .modal-header .btn-close {
  color-scheme: dark;
  filter: invert(1) grayscale(100%) brightness(200%);
}

@media (min-width: 576px) {
  .modal-xs {
    --modal-width: 300px;
  }
  .modal-full {
    --modal-width: 94%;
  }
}
/* ------------------------------------------------------------------------------
 *
 *  # Spinner component overrides
 *
 * ---------------------------------------------------------------------------- */
.spinner-border-lg {
  --spinner-width: var(--icon-font-size-lg);
  --spinner-height: var(--icon-font-size-lg);
  --spinner-border-width: 0.2em;
}

.spinner-grow-lg {
  --spinner-width: var(--icon-font-size-lg);
  --spinner-height: var(--icon-font-size-lg);
}

/* ------------------------------------------------------------------------------
 *
 *  # Form labels overrides
 *
 * ---------------------------------------------------------------------------- */
@media (max-width: 575.98px) {
  .col-form-label[class*=col-sm-],
  .col-form-label-sm[class*=col-sm-],
  .col-form-label-lg[class*=col-sm-] {
    padding-top: 0;
  }
}
@media (max-width: 767.98px) {
  .col-form-label[class*=col-md-],
  .col-form-label-sm[class*=col-md-],
  .col-form-label-lg[class*=col-md-] {
    padding-top: 0;
  }
}
@media (max-width: 991.98px) {
  .col-form-label[class*=col-lg-],
  .col-form-label-sm[class*=col-lg-],
  .col-form-label-lg[class*=col-lg-] {
    padding-top: 0;
  }
}
@media (max-width: 1199.98px) {
  .col-form-label[class*=col-xl-],
  .col-form-label-sm[class*=col-xl-],
  .col-form-label-lg[class*=col-xl-] {
    padding-top: 0;
  }
}
@media (max-width: 1399.98px) {
  .col-form-label[class*=col-xxl-],
  .col-form-label-sm[class*=col-xxl-],
  .col-form-label-lg[class*=col-xxl-] {
    padding-top: 0;
  }
}

/* ------------------------------------------------------------------------------
 *
 *  # Form controls overrides
 *
 * ---------------------------------------------------------------------------- */
.form-control {
  --input-disabled-color: ;
}
.form-control[data-color-theme=dark], [data-color-theme=dark] .form-control:not([data-color-theme]), html[data-color-theme=dark] .form-control {
  color-scheme: dark;
  --input-bg: rgb(43.8260869565, 45.1956521739, 50.6739130435);
  --input-focus-bg: rgb(43.8260869565, 45.1956521739, 50.6739130435);
}
.form-control[data-color-theme=dark]:not([list])::-webkit-calendar-picker-indicator, [data-color-theme=dark] .form-control:not([data-color-theme]):not([list])::-webkit-calendar-picker-indicator, html[data-color-theme=dark] .form-control:not([list])::-webkit-calendar-picker-indicator {
  filter: invert(1);
}
.form-control:disabled {
  color: var(--input-disabled-color);
}
.form-control[readonly]:focus {
  border-color: var(--input-focus-border-color);
}
.form-control[list]::-webkit-calendar-picker-indicator {
  color: currentcolor;
}
.form-control-number {
  -webkit-appearance: textfield;
}
.form-control-number::-webkit-inner-spin-button, .form-control-number::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.form-control-plaintext:focus {
  outline: 0;
}

.form-control-feedback {
  position: relative;
}
.form-control-feedback-start .form-control-feedback-icon {
  left: 0;
}
.form-control-feedback-start .form-control {
  padding-left: calc(var(--input-padding-x) * 2 + var(--icon-font-size));
}
.form-control-feedback-end .form-control-feedback-icon {
  right: 0;
}
.form-control-feedback-end .form-control {
  padding-right: calc(var(--input-padding-x) * 2 + var(--icon-font-size));
}
.form-control-feedback .form-control-lg {
  --icon-font-size: var(--icon-font-size-lg);
}
.form-control-feedback .form-control-sm {
  --icon-font-size: var(--icon-font-size-sm);
}

.form-control-feedback-icon {
  --input-icon-padding-y: 0.375rem;
  --input-icon-padding-x: 0.75rem;
  position: absolute;
  top: calc(1px + (var(--body-line-height-computed) - var(--icon-font-size)) * 0.5);
  color: rgba(var(--body-color-rgb), 0.75);
  padding: var(--input-icon-padding-y) var(--input-icon-padding-x);
  min-width: 1em;
  display: flex;
  align-items: center;
  z-index: 5;
}
.form-control-feedback-icon-lg {
  --input-icon-padding-x: 1rem;
}
.form-control-feedback-icon-sm {
  --input-icon-padding-x: 0.5rem;
}

.form-control.border-primary {
  --focus-ring-box-shadow: 0 0 0 0.125rem rgba(var(--primary-rgb), 0.25);
}

.form-control.border-secondary {
  --focus-ring-box-shadow: 0 0 0 0.125rem rgba(var(--secondary-rgb), 0.25);
}

.form-control.border-tertiary {
  --focus-ring-box-shadow: 0 0 0 0.125rem rgba(var(--tertiary-rgb), 0.25);
}

.form-control.border-quaternary {
  --focus-ring-box-shadow: 0 0 0 0.125rem rgba(var(--quaternary-rgb), 0.25);
}

.form-control.border-success {
  --focus-ring-box-shadow: 0 0 0 0.125rem rgba(var(--success-rgb), 0.25);
}

.form-control.border-info {
  --focus-ring-box-shadow: 0 0 0 0.125rem rgba(var(--info-rgb), 0.25);
}

.form-control.border-warning {
  --focus-ring-box-shadow: 0 0 0 0.125rem rgba(var(--warning-rgb), 0.25);
}

.form-control.border-danger {
  --focus-ring-box-shadow: 0 0 0 0.125rem rgba(var(--danger-rgb), 0.25);
}

.form-control.border-light {
  --focus-ring-box-shadow: 0 0 0 0.125rem rgba(var(--light-rgb), 0.25);
}

.form-control.border-dark {
  --focus-ring-box-shadow: 0 0 0 0.125rem rgba(var(--dark-rgb), 0.25);
}

.form-control-content {
  max-height: calc(var(--body-line-height-computed) * 8 + var(--input-padding-y) * 2);
  overflow-y: auto;
}
.form-control-content[contentEditable]:empty:before {
  content: attr(data-placeholder);
  opacity: 0.6;
}

/* ------------------------------------------------------------------------------
 *
 *  # Form select overrides
 *
 * ---------------------------------------------------------------------------- */
.form-select[data-color-theme=dark], [data-color-theme=dark] .form-select:not([data-color-theme]), html[data-color-theme=dark] .form-select {
  color-scheme: dark;
  --form-select-bg: rgb(43.8260869565, 45.1956521739, 50.6739130435);
  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='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  background-image: none !important;
  height: 200px;
  padding: var(--form-select-padding-y) calc(var(--form-select-padding-x) * 0.75);
}
.form-select[multiple] option, .form-select[size]:not([size="1"]) option {
  padding: var(--form-select-padding-y) calc(var(--form-select-padding-x) * 0.75);
  border-radius: var(--border-radius);
}
.form-select[multiple] option + option, .form-select[size]:not([size="1"]) option + option {
  margin-top: 1px;
}

.form-select-sm {
  --form-select-indicator-padding: 1.5rem;
  --form-select-bg-position: right 0.5rem center /*!rtl:left 0.5rem center;*/;
  --form-select-bg-size: 14px 10px;
}

.form-select-lg {
  --form-select-indicator-padding: 3rem;
  --form-select-bg-position: right 1rem center /*!rtl:left 1rem center;*/;
  --form-select-bg-size: 18px 14px;
}

/* ------------------------------------------------------------------------------
 *
 *  # Form inputs overrides
 *
 * ---------------------------------------------------------------------------- */
.form-check-horizontal {
  margin-top: calc(0.375rem + 1px);
}

.form-check-input {
  margin-top: calc((var(--body-line-height-computed) - var(--form-check-input-height)) * 0.5);
}
.form-check-input[data-color-theme=dark], [data-color-theme=dark] .form-check-input:not([data-color-theme]), html[data-color-theme=dark] .form-check-input {
  color-scheme: dark;
  --form-check-input-bg: rgb(43.8260869565, 45.1956521739, 50.6739130435);
}

.form-switch .form-check-input[data-color-theme=dark], [data-color-theme=dark] .form-switch .form-check-input:not([data-color-theme]), html[data-color-theme=dark] .form-switch .form-check-input {
  color-scheme: dark;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input-secondary {
  --focus-ring-box-shadow: 0 0 0 0.25rem rgba(var(--secondary-rgb), 0.25);
  --component-active-bg: var(--secondary);
}
.form-check-input-dark {
  --focus-ring-box-shadow: 0 0 0 0.25rem rgba(var(--dark-rgb), 0.25);
  --component-active-bg: var(--dark);
}
.form-check-input-success {
  --focus-ring-box-shadow: 0 0 0 0.25rem rgba(var(--success-rgb), 0.25);
  --component-active-bg: var(--success);
}
.form-check-input-danger {
  --focus-ring-box-shadow: 0 0 0 0.25rem rgba(var(--danger-rgb), 0.25);
  --component-active-bg: var(--danger);
}
.form-check-input-warning {
  --focus-ring-box-shadow: 0 0 0 0.25rem rgba(var(--warning-rgb), 0.25);
  --component-active-bg: var(--warning);
}
.form-check-input-info {
  --focus-ring-box-shadow: 0 0 0 0.25rem rgba(var(--info-rgb), 0.25);
  --component-active-bg: var(--info);
}
.form-check-input-white {
  --form-check-input-bg: transparent !important;
  --form-check-input-border: calc(1px * 2) solid rgba(var(--white-rgb), .5);
  --focus-ring-box-shadow: 0 0 0 0.25rem rgba(var(--white-rgb), 0.25);
  --component-active-bg: var(--white);
  --form-check-input-focus-box-shadow: 0 0 0 0.125rem rgba(var(--white-rgb), .25);
}
.form-check-input-white: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='%23191a1c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M5 10l4 4l6-8'/%3e%3c/svg%3e");
}
.form-check-input-white:checked[type=checkbox]:indeterminate {
  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='%23191a1c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M5 10h10'/%3e%3c/svg%3e");
}
.form-check-input-white: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='%23191a1c'/%3e%3c/svg%3e");
}
.form-switch .form-check-input-white, .form-switch .form-check-input-white: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='%23fff'/%3e%3c/svg%3e");
}
.form-switch .form-check-input-white:checked[type=checkbox], .form-switch .form-check-input-white: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='3' fill='%23191a1c'/%3e%3c/svg%3e");
}

/* ------------------------------------------------------------------------------
 *
 *  # Floating labels component overrides
 *
 * ---------------------------------------------------------------------------- */
.form-floating {
  --form-floating-label-readonly-transform: scale(0.85) translateY(-0.4rem);
}
.form-floating.form-control-feedback-start > label {
  left: calc(var(--form-floating-padding-x) + var(--icon-font-size));
}
.form-floating.form-control-feedback-end > label {
  right: calc(var(--form-floating-padding-x) + var(--icon-font-size));
}

.link-primary {
  --link-opacity: 1;
  color: rgba(var(--primary-rgb), var(--link-opacity));
}
.link-primary:hover, .link-primary:focus {
  color: rgba(var(--primary-rgb), var(--link-opacity));
  filter: brightness(0.85);
}

.link-secondary {
  --link-opacity: 1;
  color: rgba(var(--secondary-rgb), var(--link-opacity));
}
.link-secondary:hover, .link-secondary:focus {
  color: rgba(var(--secondary-rgb), var(--link-opacity));
  filter: brightness(1.15);
}

.link-tertiary {
  --link-opacity: 1;
  color: rgba(var(--tertiary-rgb), var(--link-opacity));
}
.link-tertiary:hover, .link-tertiary:focus {
  color: rgba(var(--tertiary-rgb), var(--link-opacity));
  filter: brightness(1.15);
}

.link-quaternary {
  --link-opacity: 1;
  color: rgba(var(--quaternary-rgb), var(--link-opacity));
}
.link-quaternary:hover, .link-quaternary:focus {
  color: rgba(var(--quaternary-rgb), var(--link-opacity));
  filter: brightness(1.15);
}

.link-success {
  --link-opacity: 1;
  color: rgba(var(--success-rgb), var(--link-opacity));
}
.link-success:hover, .link-success:focus {
  color: rgba(var(--success-rgb), var(--link-opacity));
  filter: brightness(1.15);
}

.link-info {
  --link-opacity: 1;
  color: rgba(var(--info-rgb), var(--link-opacity));
}
.link-info:hover, .link-info:focus {
  color: rgba(var(--info-rgb), var(--link-opacity));
  filter: brightness(1.15);
}

.link-warning {
  --link-opacity: 1;
  color: rgba(var(--warning-rgb), var(--link-opacity));
}
.link-warning:hover, .link-warning:focus {
  color: rgba(var(--warning-rgb), var(--link-opacity));
  filter: brightness(1.15);
}

.link-danger {
  --link-opacity: 1;
  color: rgba(var(--danger-rgb), var(--link-opacity));
}
.link-danger:hover, .link-danger:focus {
  color: rgba(var(--danger-rgb), var(--link-opacity));
  filter: brightness(1.15);
}

.link-light {
  --link-opacity: 1;
  color: rgba(var(--light-rgb), var(--link-opacity));
}
.link-light:hover, .link-light:focus {
  color: rgba(var(--light-rgb), var(--link-opacity));
  filter: brightness(0.85);
}

.link-dark {
  --link-opacity: 1;
  color: rgba(var(--dark-rgb), var(--link-opacity));
}
.link-dark:hover, .link-dark:focus {
  color: rgba(var(--dark-rgb), var(--link-opacity));
  filter: brightness(1.15);
}

:root,
:root[data-theme=light] {
  --primary-col: #eaff48;
  --primary: var(--primary-col);
  --primary-rgb: 234, 255, 72;
  --on-primary: #191a1c;
  --primary-a0: rgba(234, 255, 72, 0);
  --primary-a1: rgba(234, 255, 72, 0.1);
  --primary-a2: rgba(234, 255, 72, 0.2);
  --primary-a3: rgba(234, 255, 72, 0.3);
  --primary-a4: rgba(234, 255, 72, 0.4);
  --primary-a5: rgba(234, 255, 72, 0.5);
  --primary-a6: rgba(234, 255, 72, 0.6);
  --primary-a7: rgba(234, 255, 72, 0.7);
  --primary-a8: rgba(234, 255, 72, 0.8);
  --primary-a9: rgba(234, 255, 72, 0.9);
  --primary-a10: #eaff48;
  --primary-50: rgb(253.95, 255, 245.85);
  --primary-100: rgb(252.9, 255, 236.7);
  --primary-200: rgb(250.8, 255, 218.4);
  --primary-300: rgb(248.28, 255, 196.44);
  --primary-400: rgb(244.92, 255, 167.16);
  --primary-500: rgb(241.56, 255, 137.88);
  --primary-600: rgb(239.04, 255, 115.92);
  --primary-700: rgb(237.15, 255, 99.45);
  --primary-800: rgb(235.68, 255, 86.64);
  --primary-900: rgb(234.63, 255, 77.49);
  --secondary-col: #c67416;
  --secondary: var(--secondary-col);
  --secondary-rgb: 198, 116, 22;
  --on-secondary: #ffffff;
  --secondary-a0: rgba(198, 116, 22, 0);
  --secondary-a1: rgba(198, 116, 22, 0.1);
  --secondary-a2: rgba(198, 116, 22, 0.2);
  --secondary-a3: rgba(198, 116, 22, 0.3);
  --secondary-a4: rgba(198, 116, 22, 0.4);
  --secondary-a5: rgba(198, 116, 22, 0.5);
  --secondary-a6: rgba(198, 116, 22, 0.6);
  --secondary-a7: rgba(198, 116, 22, 0.7);
  --secondary-a8: rgba(198, 116, 22, 0.8);
  --secondary-a9: rgba(198, 116, 22, 0.9);
  --secondary-a10: #c67416;
  --secondary-50: rgb(252.15, 248.05, 243.35);
  --secondary-100: rgb(249.3, 241.1, 231.7);
  --secondary-200: rgb(243.6, 227.2, 208.4);
  --secondary-300: rgb(236.76, 210.52, 180.44);
  --secondary-400: rgb(227.64, 188.28, 143.16);
  --secondary-500: rgb(218.52, 166.04, 105.88);
  --secondary-600: rgb(211.68, 149.36, 77.92);
  --secondary-700: rgb(206.55, 136.85, 56.95);
  --secondary-800: rgb(202.56, 127.12, 40.64);
  --secondary-900: rgb(199.71, 120.17, 28.99);
  --tertiary-col: #10b981;
  --tertiary: var(--tertiary-col);
  --tertiary-rgb: 16, 185, 129;
  --on-tertiary: #ffffff;
  --tertiary-a0: rgba(16, 185, 129, 0);
  --tertiary-a1: rgba(16, 185, 129, 0.1);
  --tertiary-a2: rgba(16, 185, 129, 0.2);
  --tertiary-a3: rgba(16, 185, 129, 0.3);
  --tertiary-a4: rgba(16, 185, 129, 0.4);
  --tertiary-a5: rgba(16, 185, 129, 0.5);
  --tertiary-a6: rgba(16, 185, 129, 0.6);
  --tertiary-a7: rgba(16, 185, 129, 0.7);
  --tertiary-a8: rgba(16, 185, 129, 0.8);
  --tertiary-a9: rgba(16, 185, 129, 0.9);
  --tertiary-a10: #10b981;
  --tertiary-50: rgb(243.05, 251.5, 248.7);
  --tertiary-100: rgb(231.1, 248, 242.4);
  --tertiary-200: rgb(207.2, 241, 229.8);
  --tertiary-300: rgb(178.52, 232.6, 214.68);
  --tertiary-400: rgb(140.28, 221.4, 194.52);
  --tertiary-500: rgb(102.04, 210.2, 174.36);
  --tertiary-600: rgb(73.36, 201.8, 159.24);
  --tertiary-700: rgb(51.85, 195.5, 147.9);
  --tertiary-800: rgb(35.12, 190.6, 139.08);
  --tertiary-900: rgb(23.17, 187.1, 132.78);
  --quaternary-col: #780752;
  --quaternary: var(--quaternary-col);
  --quaternary-rgb: 120, 7, 82;
  --on-quaternary: #ffffff;
  --quaternary-a0: rgba(120, 7, 82, 0);
  --quaternary-a1: rgba(120, 7, 82, 0.1);
  --quaternary-a2: rgba(120, 7, 82, 0.2);
  --quaternary-a3: rgba(120, 7, 82, 0.3);
  --quaternary-a4: rgba(120, 7, 82, 0.4);
  --quaternary-a5: rgba(120, 7, 82, 0.5);
  --quaternary-a6: rgba(120, 7, 82, 0.6);
  --quaternary-a7: rgba(120, 7, 82, 0.7);
  --quaternary-a8: rgba(120, 7, 82, 0.8);
  --quaternary-a9: rgba(120, 7, 82, 0.9);
  --quaternary-a10: #780752;
  --quaternary-50: rgb(248.25, 242.6, 246.35);
  --quaternary-100: rgb(241.5, 230.2, 237.7);
  --quaternary-200: rgb(228, 205.4, 220.4);
  --quaternary-300: rgb(211.8, 175.64, 199.64);
  --quaternary-400: rgb(190.2, 135.96, 171.96);
  --quaternary-500: rgb(168.6, 96.28, 144.28);
  --quaternary-600: rgb(152.4, 66.52, 123.52);
  --quaternary-700: rgb(140.25, 44.2, 107.95);
  --quaternary-800: rgb(130.8, 26.84, 95.84);
  --quaternary-900: rgb(124.05, 14.44, 87.19);
  --success-col: #7ece25;
  --success: var(--success-col);
  --success-rgb: 126, 206, 37;
  --on-success: #191a1c;
  --success-a0: rgba(126, 206, 37, 0);
  --success-a1: rgba(126, 206, 37, 0.1);
  --success-a2: rgba(126, 206, 37, 0.2);
  --success-a3: rgba(126, 206, 37, 0.3);
  --success-a4: rgba(126, 206, 37, 0.4);
  --success-a5: rgba(126, 206, 37, 0.5);
  --success-a6: rgba(126, 206, 37, 0.6);
  --success-a7: rgba(126, 206, 37, 0.7);
  --success-a8: rgba(126, 206, 37, 0.8);
  --success-a9: rgba(126, 206, 37, 0.9);
  --success-a10: #7ece25;
  --success-50: rgb(248.55, 252.55, 244.1);
  --success-100: rgb(242.1, 250.1, 233.2);
  --success-200: rgb(229.2, 245.2, 211.4);
  --success-300: rgb(213.72, 239.32, 185.24);
  --success-400: rgb(193.08, 231.48, 150.36);
  --success-500: rgb(172.44, 223.64, 115.48);
  --success-600: rgb(156.96, 217.76, 89.32);
  --success-700: rgb(145.35, 213.35, 69.7);
  --success-800: rgb(136.32, 209.92, 54.44);
  --success-900: rgb(129.87, 207.47, 43.54);
  --info-col: #0ea5e9;
  --info: var(--info-col);
  --info-rgb: 14, 165, 233;
  --on-info: #ffffff;
  --info-a0: rgba(14, 165, 233, 0);
  --info-a1: rgba(14, 165, 233, 0.1);
  --info-a2: rgba(14, 165, 233, 0.2);
  --info-a3: rgba(14, 165, 233, 0.3);
  --info-a4: rgba(14, 165, 233, 0.4);
  --info-a5: rgba(14, 165, 233, 0.5);
  --info-a6: rgba(14, 165, 233, 0.6);
  --info-a7: rgba(14, 165, 233, 0.7);
  --info-a8: rgba(14, 165, 233, 0.8);
  --info-a9: rgba(14, 165, 233, 0.9);
  --info-a10: #0ea5e9;
  --info-50: rgb(242.95, 250.5, 253.9);
  --info-100: rgb(230.9, 246, 252.8);
  --info-200: rgb(206.8, 237, 250.6);
  --info-300: rgb(177.88, 226.2, 247.96);
  --info-400: rgb(139.32, 211.8, 244.44);
  --info-500: rgb(100.76, 197.4, 240.92);
  --info-600: rgb(71.84, 186.6, 238.28);
  --info-700: rgb(50.15, 178.5, 236.3);
  --info-800: rgb(33.28, 172.2, 234.76);
  --info-900: rgb(21.23, 167.7, 233.66);
  --warning-col: #ffc107;
  --warning: var(--warning-col);
  --warning-rgb: 255, 193, 7;
  --on-warning: #191a1c;
  --warning-a0: rgba(255, 193, 7, 0);
  --warning-a1: rgba(255, 193, 7, 0.1);
  --warning-a2: rgba(255, 193, 7, 0.2);
  --warning-a3: rgba(255, 193, 7, 0.3);
  --warning-a4: rgba(255, 193, 7, 0.4);
  --warning-a5: rgba(255, 193, 7, 0.5);
  --warning-a6: rgba(255, 193, 7, 0.6);
  --warning-a7: rgba(255, 193, 7, 0.7);
  --warning-a8: rgba(255, 193, 7, 0.8);
  --warning-a9: rgba(255, 193, 7, 0.9);
  --warning-a10: #ffc107;
  --warning-50: rgb(255, 251.9, 242.6);
  --warning-100: rgb(255, 248.8, 230.2);
  --warning-200: rgb(255, 242.6, 205.4);
  --warning-300: rgb(255, 235.16, 175.64);
  --warning-400: rgb(255, 225.24, 135.96);
  --warning-500: rgb(255, 215.32, 96.28);
  --warning-600: rgb(255, 207.88, 66.52);
  --warning-700: rgb(255, 202.3, 44.2);
  --warning-800: rgb(255, 197.96, 26.84);
  --warning-900: rgb(255, 194.86, 14.44);
  --danger-col: #dc3545;
  --danger: var(--danger-col);
  --danger-rgb: 220, 53, 69;
  --on-danger: #ffffff;
  --danger-a0: rgba(220, 53, 69, 0);
  --danger-a1: rgba(220, 53, 69, 0.1);
  --danger-a2: rgba(220, 53, 69, 0.2);
  --danger-a3: rgba(220, 53, 69, 0.3);
  --danger-a4: rgba(220, 53, 69, 0.4);
  --danger-a5: rgba(220, 53, 69, 0.5);
  --danger-a6: rgba(220, 53, 69, 0.6);
  --danger-a7: rgba(220, 53, 69, 0.7);
  --danger-a8: rgba(220, 53, 69, 0.8);
  --danger-a9: rgba(220, 53, 69, 0.9);
  --danger-a10: #dc3545;
  --danger-50: rgb(253.25, 244.9, 245.7);
  --danger-100: rgb(251.5, 234.8, 236.4);
  --danger-200: rgb(248, 214.6, 217.8);
  --danger-300: rgb(243.8, 190.36, 195.48);
  --danger-400: rgb(238.2, 158.04, 165.72);
  --danger-500: rgb(232.6, 125.72, 135.96);
  --danger-600: rgb(228.4, 101.48, 113.64);
  --danger-700: rgb(225.25, 83.3, 96.9);
  --danger-800: rgb(222.8, 69.16, 83.88);
  --danger-900: rgb(221.05, 59.06, 74.58);
  --light-col: #f8f9fa;
  --light: var(--light-col);
  --light-rgb: 248, 249, 250;
  --on-light: #191a1c;
  --light-a0: rgba(248, 249, 250, 0);
  --light-a1: rgba(248, 249, 250, 0.1);
  --light-a2: rgba(248, 249, 250, 0.2);
  --light-a3: rgba(248, 249, 250, 0.3);
  --light-a4: rgba(248, 249, 250, 0.4);
  --light-a5: rgba(248, 249, 250, 0.5);
  --light-a6: rgba(248, 249, 250, 0.6);
  --light-a7: rgba(248, 249, 250, 0.7);
  --light-a8: rgba(248, 249, 250, 0.8);
  --light-a9: rgba(248, 249, 250, 0.9);
  --light-a10: #f8f9fa;
  --light-50: rgb(254.65, 254.7, 254.75);
  --light-100: rgb(254.3, 254.4, 254.5);
  --light-200: rgb(253.6, 253.8, 254);
  --light-300: rgb(252.76, 253.08, 253.4);
  --light-400: rgb(251.64, 252.12, 252.6);
  --light-500: rgb(250.52, 251.16, 251.8);
  --light-600: rgb(249.68, 250.44, 251.2);
  --light-700: rgb(249.05, 249.9, 250.75);
  --light-800: rgb(248.56, 249.48, 250.4);
  --light-900: rgb(248.21, 249.18, 250.15);
  --dark-col: #191a1c;
  --dark: var(--dark-col);
  --dark-rgb: 25, 26, 28;
  --on-dark: #ffffff;
  --dark-a0: rgba(25, 26, 28, 0);
  --dark-a1: rgba(25, 26, 28, 0.1);
  --dark-a2: rgba(25, 26, 28, 0.2);
  --dark-a3: rgba(25, 26, 28, 0.3);
  --dark-a4: rgba(25, 26, 28, 0.4);
  --dark-a5: rgba(25, 26, 28, 0.5);
  --dark-a6: rgba(25, 26, 28, 0.6);
  --dark-a7: rgba(25, 26, 28, 0.7);
  --dark-a8: rgba(25, 26, 28, 0.8);
  --dark-a9: rgba(25, 26, 28, 0.9);
  --dark-a10: #191a1c;
  --dark-50: rgb(243.5, 243.55, 243.65);
  --dark-100: rgb(232, 232.1, 232.3);
  --dark-200: rgb(209, 209.2, 209.6);
  --dark-300: rgb(181.4, 181.72, 182.36);
  --dark-400: rgb(144.6, 145.08, 146.04);
  --dark-500: rgb(107.8, 108.44, 109.72);
  --dark-600: rgb(80.2, 80.96, 82.48);
  --dark-700: rgb(59.5, 60.35, 62.05);
  --dark-800: rgb(43.4, 44.32, 46.16);
  --dark-900: rgb(31.9, 32.87, 34.81);
  --color-red: #dc3545;
  --color-red-rgb: 220, 53, 69;
  --color-red-300: rgb(243.8, 190.36, 195.48);
  --color-red-500: rgb(232.6, 125.72, 135.96);
  --color-red-700: rgb(225.25, 83.3, 96.9);
  --color-orange: #f77216;
  --color-orange-rgb: 247, 114, 22;
  --color-orange-300: rgb(252.44, 209.88, 180.44);
  --color-orange-500: rgb(249.88, 164.76, 105.88);
  --color-orange-700: rgb(248.2, 135.15, 56.95);
  --color-amber: #f39d0b;
  --color-amber-rgb: 243, 157, 11;
  --color-amber-300: rgb(251.16, 223.64, 176.92);
  --color-amber-500: rgb(247.32, 192.28, 98.84);
  --color-amber-700: rgb(244.8, 171.7, 47.6);
  --color-yellow: #f3de09;
  --color-yellow-rgb: 243, 222, 9;
  --color-yellow-300: rgb(251.16, 244.44, 176.28);
  --color-yellow-500: rgb(247.32, 233.88, 97.56);
  --color-yellow-700: rgb(244.8, 226.95, 45.9);
  --color-lime: #7ece25;
  --color-lime-rgb: 126, 206, 37;
  --color-lime-300: rgb(213.72, 239.32, 185.24);
  --color-lime-500: rgb(172.44, 223.64, 115.48);
  --color-lime-700: rgb(145.35, 213.35, 69.7);
  --color-acid: #b9f10f;
  --color-acid-rgb: 185, 241, 15;
  --color-acid-300: rgb(232.6, 250.52, 178.2);
  --color-acid-500: rgb(210.2, 246.04, 101.4);
  --color-acid-700: rgb(195.5, 243.1, 51);
  --color-green: #22c55e;
  --color-green-rgb: 34, 197, 94;
  --color-green-300: rgb(184.28, 236.44, 203.48);
  --color-green-500: rgb(113.56, 217.88, 151.96);
  --color-green-700: rgb(67.15, 205.7, 118.15);
  --color-emerald: #10b981;
  --color-emerald-rgb: 16, 185, 129;
  --color-emerald-300: rgb(178.52, 232.6, 214.68);
  --color-emerald-500: rgb(102.04, 210.2, 174.36);
  --color-emerald-700: rgb(51.85, 195.5, 147.9);
  --color-teal: #14b8a6;
  --color-teal-rgb: 20, 184, 166;
  --color-teal-300: rgb(179.8, 232.28, 226.52);
  --color-teal-500: rgb(104.6, 209.56, 198.04);
  --color-teal-700: rgb(55.25, 194.65, 179.35);
  --color-cyan: #06b6d4;
  --color-cyan-rgb: 6, 182, 212;
  --color-cyan-300: rgb(175.32, 231.64, 241.24);
  --color-cyan-500: rgb(95.64, 208.28, 227.48);
  --color-cyan-700: rgb(43.35, 192.95, 218.45);
  --color-sky: #0ea5e9;
  --color-sky-rgb: 14, 165, 233;
  --color-sky-300: rgb(177.88, 226.2, 247.96);
  --color-sky-500: rgb(100.76, 197.4, 240.92);
  --color-sky-700: rgb(50.15, 178.5, 236.3);
  --color-blue: #3b82f6;
  --color-blue-rgb: 59, 130, 246;
  --color-blue-300: rgb(192.28, 215, 252.12);
  --color-blue-500: rgb(129.56, 175, 249.24);
  --color-blue-700: rgb(88.4, 148.75, 247.35);
  --color-indigo: #6366f1;
  --color-indigo-rgb: 99, 102, 241;
  --color-indigo-300: rgb(205.08, 206.04, 250.52);
  --color-indigo-500: rgb(155.16, 157.08, 246.04);
  --color-indigo-700: rgb(122.4, 124.95, 243.1);
  --color-violet: #8b5cf6;
  --color-violet-rgb: 139, 92, 246;
  --color-violet-300: rgb(217.88, 202.84, 252.12);
  --color-violet-500: rgb(180.76, 150.68, 249.24);
  --color-violet-700: rgb(156.4, 116.45, 247.35);
  --color-purple: #a855f7;
  --color-purple-rgb: 168, 85, 247;
  --color-purple-300: rgb(227.16, 200.6, 252.44);
  --color-purple-500: rgb(199.32, 146.2, 249.88);
  --color-purple-700: rgb(181.05, 110.5, 248.2);
  --color-pink: #fb0680;
  --color-pink-rgb: 251, 6, 128;
  --color-pink-300: rgb(253.72, 175.32, 214.36);
  --color-pink-500: rgb(252.44, 95.64, 173.72);
  --color-pink-700: rgb(251.6, 43.35, 147.05);
  --color-rose: #f43050;
  --color-rose-rgb: 244, 48, 80;
  --color-rose-300: rgb(251.48, 188.76, 199);
  --color-rose-500: rgb(247.96, 122.52, 143);
  --color-rose-700: rgb(245.65, 79.05, 106.25);
  --gray-col: #191a1c;
  --gray: var(--gray-col);
  --gray-100: rgb(236.6, 236.68, 236.84);
  --gray-200: rgb(218.2, 218.36, 218.68);
  --gray-300: rgb(190.6, 190.88, 191.44);
  --gray-400: rgb(153.8, 154.24, 155.12);
  --gray-500: rgb(117, 117.6, 118.8);
  --gray-600: rgb(89.4, 90.12, 91.56);
  --gray-700: rgb(66.4, 67.22, 68.86);
  --gray-800: rgb(48, 48.9, 50.7);
  --gray-900: rgb(34.2, 35.16, 37.08);
  --gray-0: #ffffff;
  --gray-1000: #000000;
  --white: #ffffff;
  --black: #000000;
  --transparent: transparent;
  --text: var(--gray-800);
  --text-soft: var(--gray-600);
  --text-muted: var(--gray-400);
  --text-inverse: #ffffff;
  --bg-body: #ffffff;
  --bg-surface: var(--gray-100);
  --bg-surface-2: var(--gray-200);
  --bg-elevated: #ffffff;
  --border: var(--gray-300);
  --border-strong: var(--gray-400);
  --link: var(--primary);
  --on-link: var(--on-primary);
  --overlay: rgba(0, 0, 0, 0.5);
  --white-color: var(--white);
  --black-color: var(--black);
  --main-color: var(--primary);
  --color-two: var(--dark);
  --color-three: var(--border);
  --color-five: var(--text-soft);
  --color-six: var(--gray-100);
  --dark-color: var(--dark);
  --main-color-rgb: var(--primary-rgb);
  --white-color-rgb: 255, 255, 255;
  --black-color-rgb: 0, 0, 0;
  --spacer: 1rem;
  --spacer-1: 0.25rem;
  --spacer-2: 0.5rem;
  --spacer-3: 1rem;
  --spacer-4: 1.5rem;
  --spacer-5: 3rem;
  --font-base: 'Manrope', system-ui, sans-serif;
  --font-head: 'Outfit', serif;
  --font-mono: 'Courier New', monospace;
  --body-font-size: 1rem;
  --body-font-size-xs: 0.75rem;
  --body-font-size-sm: 0.875rem;
  --body-font-size-lg: 1.125rem;
  --body-font-size-xl: 1.25rem;
  --body-line-height: 1.5;
  --body-line-height-xs: 2.2;
  --body-line-height-sm: 1.429;
  --body-line-height-lg: 1.5;
  --font-heading: "Outfit", sans-serif;
  --font-subtitle: "Alumni Sans", sans-serif;
  --font-subtitle-strong: "Outfit", sans-serif;
  --font-text: "Alumni Sans", sans-serif;
  --font-description: "Anaheim", sans-serif;
  --font-quote: "Darker Grotesque", sans-serif;
  --font-ui: "Montserrat", sans-serif;
  --font-alt: "Montserrat", sans-serif;
  --font-body: var(--font-text);
  --font-small: var(--font-description);
  --font-lead: var(--font-subtitle);
  --font-display: var(--font-heading);
  --font-base: "Manrope", sans-serif;
  --font-heading: "Outfit", serif;
  --font-subtitle: "Alumni Sans", sans-serif;
  --font-subtitle-strong: "Outfit", serif;
  --font-text: "Alumni Sans", sans-serif;
  --font-description: "Anaheim", sans-serif;
  --font-quote: "Darker Grotesque", sans-serif;
  --font-ui: "Montserrat", sans-serif;
  --font-alt: "Montserrat", sans-serif;
  --font-neutral: "Montserrat", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --font-code: var(--font-mono);
  --font-tech: var(--font-mono);
  --font-awesome: "Font Awesome 7 Pro";
  --font-body: "Manrope", sans-serif;
  --font-small: var(--font-description);
  --font-lead: var(--font-subtitle);
  --font-display: var(--font-heading);
  --font-sans: var(--font-base);
  --font-sans-serif: var(--font-base);
  --font-serif: serif;
  --font-monospace: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
                     "Liberation Mono", "Courier New", monospace;
  --font-weight-thin: 100;
  --font-weight-extralight: 200;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;
  --line-height-tight: 1;
  --line-height-heading: 1.15;
  --line-height-subtitle: 1.15;
  --line-height-text: 1.8;
  --line-height-description: 1.55;
  --line-height-quote: 1.2;
  --line-height-ui: 1.2;
  --line-height-code: 1.5;
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.02em;
  --letter-spacing-wider: 0.05em;
  --letter-spacing-ui: 0.04em;
  --letter-spacing-code: 0;
  --bg-opacity: 1;
  --border-width: 1px;
  --border-radius: 0.375rem;
  --border-radius-sm: 0.25rem;
  --border-radius-lg: 0.5rem;
  --border-radius-xl: 1rem;
  --border-radius-pill: 50rem;
  --border-radius-2x: calc(var(--border-radius) * 2);
  --border-radius-3x: calc(var(--border-radius) * 3);
  --border-radius-4x: calc(var(--border-radius) * 4);
  --border-radius-5x: calc(var(--border-radius) * 5);
  --border-radius-6x: calc(var(--border-radius) * 6);
  --transition-base-timer: 0.15s;
  --transition-collapse-timer: 0.35s;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --icon-font-family: 'Phosphor';
  --icon-font-size: 1.25rem;
  --icon-font-size-sm: 1rem;
  --icon-font-size-lg: 1.5rem;
  --component-active-bg: var(--primary);
  --component-active-color: var(--on-primary);
  --focus-ring-color: rgba(var(--primary-rgb), 0.25);
  --input-btn-padding-y: 0.5rem;
  --input-btn-padding-x: 0.875rem;
  --input-btn-font-size: var(--body-font-size);
  --input-btn-line-height: var(--body-line-height);
  --input-btn-padding-y-sm: 0.375rem;
  --input-btn-padding-x-sm: 0.75rem;
  --input-btn-font-size-sm: var(--body-font-size-sm);
  --input-btn-padding-y-lg: 0.625rem;
  --input-btn-padding-x-lg: 1rem;
  --input-btn-font-size-lg: var(--body-font-size-lg);
}

:root[data-theme=dark],
[data-color-theme=dark] {
  color-scheme: dark;
  --text: rgba(255, 255, 255, 0.85);
  --text-soft: rgba(255, 255, 255, 0.6);
  --text-muted: rgba(255, 255, 255, 0.4);
  --text-inverse: #191a1c;
  --bg-body: #1f2126;
  --bg-surface: #282b30;
  --bg-surface-2: #313438;
  --bg-elevated: #313438;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.2);
  --overlay: rgba(0, 0, 0, 0.7);
}

/***

====================================================================
	Reset
====================================================================

***/
* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  display: inline-block;
  max-width: 100%;
}

textarea {
  overflow: hidden;
}

i {
  font-style: normal;
}

::-webkit-input-placeholder {
  color: inherit;
}

::-moz-placeholder {
  color: inherit;
}

:-ms-input-placeholder {
  color: inherit;
}

::-ms-input-placeholder {
  color: inherit;
}

::placeholder {
  color: inherit;
}

/***

====================================================================
	Global Settings / Base
====================================================================

***/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-three);
}

body {
  font-family: "Manrope", sans-serif;
  line-height: 1.8em;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  color: var(--main-color);
}

button,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none !important;
}

h1, .h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  position: relative;
  margin: 0;
  background: none;
  font-weight: 700;
  color: var(--black-color);
  font-family: "Outfit", serif;
}

.text,
p {
  position: relative;
  line-height: 1.7em;
  color: #666666;
  font-size: 16px;
}

h1, .h1 {
  line-height: 110px;
  font-size: 96px;
}

h2, .h2 {
  line-height: 70px;
  font-size: 60px;
}

h3, .h3 {
  line-height: 42px;
  font-size: 32px;
}

h4, .h4 {
  line-height: 34px;
  font-size: 26px;
}

h5, .h5 {
  line-height: 30px;
  font-size: 20px;
}

h6, .h6 {
  line-height: 28px;
  font-size: 18px;
}

/***

====================================================================
	Layout
====================================================================

***/
.sticky-top {
  top: 120px;
  z-index: 1;
}

.text-left {
  text-align: left;
}

.dark-layout {
  position: relative;
  background-color: var(--black-color);
}

.overlay-layer {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.trans-300 {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.trans-500 {
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.bordered-layout .page-wrapper {
  padding: 0 50px 0;
}

.auto-container {
  position: static;
  max-width: 1320px;
  padding: 0 15px;
  margin: 0 auto;
}

.auto-container_two {
  position: static;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
}

.centered {
  text-align: center;
}

/* body font set in _base.scss */
/* h1-h6 font set in _base.scss */
.subtitle,
.eyebrow,
.section-subtitle {
  font-family: var(--font-subtitle);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-subtitle);
  letter-spacing: var(--letter-spacing-wide);
}

.subtitle-strong,
.section-kicker,
.overline {
  font-family: var(--font-subtitle-strong);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-subtitle);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

p,
.text,
.entry-content {
  font-family: var(--font-text);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-text);
}

.lead,
.intro,
.description,
.small-text,
.fineprint {
  font-family: var(--font-description);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-description);
}

blockquote,
.quote,
.testimonial-text,
.customer-quote {
  font-family: var(--font-quote);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-quote);
  letter-spacing: var(--letter-spacing-normal);
}

button,
.btn,
label,
input,
select,
textarea,
.nav-link,
.menu-link,
.meta-text,
.ui-text {
  font-family: var(--font-ui);
  line-height: var(--line-height-ui);
}

.alt-font,
.font-alt,
.font-montserrat {
  font-family: var(--font-alt);
}

/* =====================================================
   BG BASE
===================================================== */
.bg {
  --bg-color: initial;
  --bg-current: var(--bg-color);
  background-color: var(--bg-current) !important;
}

.bg-body {
  background-color: var(--bg-body) !important;
}

.bg-surface {
  background-color: var(--bg-surface) !important;
}

.bg-surface-2 {
  background-color: var(--bg-surface-2) !important;
}

.bg-elevated {
  background-color: var(--bg-elevated) !important;
}

.bg-transparent {
  background-color: transparent !important;
}

/* =====================================================
   SYSTEM COLORS — .bg-primary, .bg-primary-300 etc.
   Automatisch aus $theme-colors in _colors.scss
===================================================== */
.bg-primary {
  --bg-opacity: 1;
  background-color: rgba(var(--primary-rgb), var(--bg-opacity)) !important;
}

.bg-primary-50 {
  background-color: var(--primary-50) !important;
}

.bg-primary-100 {
  background-color: var(--primary-100) !important;
}

.bg-primary-200 {
  background-color: var(--primary-200) !important;
}

.bg-primary-300 {
  background-color: var(--primary-300) !important;
}

.bg-primary-400 {
  background-color: var(--primary-400) !important;
}

.bg-primary-500 {
  background-color: var(--primary-500) !important;
}

.bg-primary-600 {
  background-color: var(--primary-600) !important;
}

.bg-primary-700 {
  background-color: var(--primary-700) !important;
}

.bg-primary-800 {
  background-color: var(--primary-800) !important;
}

.bg-primary-900 {
  background-color: var(--primary-900) !important;
}

.bg-primary-a0 {
  background-color: var(--primary-a0) !important;
}

.bg-primary-a1 {
  background-color: var(--primary-a1) !important;
}

.bg-primary-a2 {
  background-color: var(--primary-a2) !important;
}

.bg-primary-a3 {
  background-color: var(--primary-a3) !important;
}

.bg-primary-a4 {
  background-color: var(--primary-a4) !important;
}

.bg-primary-a5 {
  background-color: var(--primary-a5) !important;
}

.bg-primary-a6 {
  background-color: var(--primary-a6) !important;
}

.bg-primary-a7 {
  background-color: var(--primary-a7) !important;
}

.bg-primary-a8 {
  background-color: var(--primary-a8) !important;
}

.bg-primary-a9 {
  background-color: var(--primary-a9) !important;
}

.bg-primary-a10 {
  background-color: var(--primary-a10) !important;
}

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

.bg-secondary-50 {
  background-color: var(--secondary-50) !important;
}

.bg-secondary-100 {
  background-color: var(--secondary-100) !important;
}

.bg-secondary-200 {
  background-color: var(--secondary-200) !important;
}

.bg-secondary-300 {
  background-color: var(--secondary-300) !important;
}

.bg-secondary-400 {
  background-color: var(--secondary-400) !important;
}

.bg-secondary-500 {
  background-color: var(--secondary-500) !important;
}

.bg-secondary-600 {
  background-color: var(--secondary-600) !important;
}

.bg-secondary-700 {
  background-color: var(--secondary-700) !important;
}

.bg-secondary-800 {
  background-color: var(--secondary-800) !important;
}

.bg-secondary-900 {
  background-color: var(--secondary-900) !important;
}

.bg-secondary-a0 {
  background-color: var(--secondary-a0) !important;
}

.bg-secondary-a1 {
  background-color: var(--secondary-a1) !important;
}

.bg-secondary-a2 {
  background-color: var(--secondary-a2) !important;
}

.bg-secondary-a3 {
  background-color: var(--secondary-a3) !important;
}

.bg-secondary-a4 {
  background-color: var(--secondary-a4) !important;
}

.bg-secondary-a5 {
  background-color: var(--secondary-a5) !important;
}

.bg-secondary-a6 {
  background-color: var(--secondary-a6) !important;
}

.bg-secondary-a7 {
  background-color: var(--secondary-a7) !important;
}

.bg-secondary-a8 {
  background-color: var(--secondary-a8) !important;
}

.bg-secondary-a9 {
  background-color: var(--secondary-a9) !important;
}

.bg-secondary-a10 {
  background-color: var(--secondary-a10) !important;
}

.bg-tertiary {
  --bg-opacity: 1;
  background-color: rgba(var(--tertiary-rgb), var(--bg-opacity)) !important;
}

.bg-tertiary-50 {
  background-color: var(--tertiary-50) !important;
}

.bg-tertiary-100 {
  background-color: var(--tertiary-100) !important;
}

.bg-tertiary-200 {
  background-color: var(--tertiary-200) !important;
}

.bg-tertiary-300 {
  background-color: var(--tertiary-300) !important;
}

.bg-tertiary-400 {
  background-color: var(--tertiary-400) !important;
}

.bg-tertiary-500 {
  background-color: var(--tertiary-500) !important;
}

.bg-tertiary-600 {
  background-color: var(--tertiary-600) !important;
}

.bg-tertiary-700 {
  background-color: var(--tertiary-700) !important;
}

.bg-tertiary-800 {
  background-color: var(--tertiary-800) !important;
}

.bg-tertiary-900 {
  background-color: var(--tertiary-900) !important;
}

.bg-tertiary-a0 {
  background-color: var(--tertiary-a0) !important;
}

.bg-tertiary-a1 {
  background-color: var(--tertiary-a1) !important;
}

.bg-tertiary-a2 {
  background-color: var(--tertiary-a2) !important;
}

.bg-tertiary-a3 {
  background-color: var(--tertiary-a3) !important;
}

.bg-tertiary-a4 {
  background-color: var(--tertiary-a4) !important;
}

.bg-tertiary-a5 {
  background-color: var(--tertiary-a5) !important;
}

.bg-tertiary-a6 {
  background-color: var(--tertiary-a6) !important;
}

.bg-tertiary-a7 {
  background-color: var(--tertiary-a7) !important;
}

.bg-tertiary-a8 {
  background-color: var(--tertiary-a8) !important;
}

.bg-tertiary-a9 {
  background-color: var(--tertiary-a9) !important;
}

.bg-tertiary-a10 {
  background-color: var(--tertiary-a10) !important;
}

.bg-quaternary {
  --bg-opacity: 1;
  background-color: rgba(var(--quaternary-rgb), var(--bg-opacity)) !important;
}

.bg-quaternary-50 {
  background-color: var(--quaternary-50) !important;
}

.bg-quaternary-100 {
  background-color: var(--quaternary-100) !important;
}

.bg-quaternary-200 {
  background-color: var(--quaternary-200) !important;
}

.bg-quaternary-300 {
  background-color: var(--quaternary-300) !important;
}

.bg-quaternary-400 {
  background-color: var(--quaternary-400) !important;
}

.bg-quaternary-500 {
  background-color: var(--quaternary-500) !important;
}

.bg-quaternary-600 {
  background-color: var(--quaternary-600) !important;
}

.bg-quaternary-700 {
  background-color: var(--quaternary-700) !important;
}

.bg-quaternary-800 {
  background-color: var(--quaternary-800) !important;
}

.bg-quaternary-900 {
  background-color: var(--quaternary-900) !important;
}

.bg-quaternary-a0 {
  background-color: var(--quaternary-a0) !important;
}

.bg-quaternary-a1 {
  background-color: var(--quaternary-a1) !important;
}

.bg-quaternary-a2 {
  background-color: var(--quaternary-a2) !important;
}

.bg-quaternary-a3 {
  background-color: var(--quaternary-a3) !important;
}

.bg-quaternary-a4 {
  background-color: var(--quaternary-a4) !important;
}

.bg-quaternary-a5 {
  background-color: var(--quaternary-a5) !important;
}

.bg-quaternary-a6 {
  background-color: var(--quaternary-a6) !important;
}

.bg-quaternary-a7 {
  background-color: var(--quaternary-a7) !important;
}

.bg-quaternary-a8 {
  background-color: var(--quaternary-a8) !important;
}

.bg-quaternary-a9 {
  background-color: var(--quaternary-a9) !important;
}

.bg-quaternary-a10 {
  background-color: var(--quaternary-a10) !important;
}

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

.bg-success-50 {
  background-color: var(--success-50) !important;
}

.bg-success-100 {
  background-color: var(--success-100) !important;
}

.bg-success-200 {
  background-color: var(--success-200) !important;
}

.bg-success-300 {
  background-color: var(--success-300) !important;
}

.bg-success-400 {
  background-color: var(--success-400) !important;
}

.bg-success-500 {
  background-color: var(--success-500) !important;
}

.bg-success-600 {
  background-color: var(--success-600) !important;
}

.bg-success-700 {
  background-color: var(--success-700) !important;
}

.bg-success-800 {
  background-color: var(--success-800) !important;
}

.bg-success-900 {
  background-color: var(--success-900) !important;
}

.bg-success-a0 {
  background-color: var(--success-a0) !important;
}

.bg-success-a1 {
  background-color: var(--success-a1) !important;
}

.bg-success-a2 {
  background-color: var(--success-a2) !important;
}

.bg-success-a3 {
  background-color: var(--success-a3) !important;
}

.bg-success-a4 {
  background-color: var(--success-a4) !important;
}

.bg-success-a5 {
  background-color: var(--success-a5) !important;
}

.bg-success-a6 {
  background-color: var(--success-a6) !important;
}

.bg-success-a7 {
  background-color: var(--success-a7) !important;
}

.bg-success-a8 {
  background-color: var(--success-a8) !important;
}

.bg-success-a9 {
  background-color: var(--success-a9) !important;
}

.bg-success-a10 {
  background-color: var(--success-a10) !important;
}

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

.bg-info-50 {
  background-color: var(--info-50) !important;
}

.bg-info-100 {
  background-color: var(--info-100) !important;
}

.bg-info-200 {
  background-color: var(--info-200) !important;
}

.bg-info-300 {
  background-color: var(--info-300) !important;
}

.bg-info-400 {
  background-color: var(--info-400) !important;
}

.bg-info-500 {
  background-color: var(--info-500) !important;
}

.bg-info-600 {
  background-color: var(--info-600) !important;
}

.bg-info-700 {
  background-color: var(--info-700) !important;
}

.bg-info-800 {
  background-color: var(--info-800) !important;
}

.bg-info-900 {
  background-color: var(--info-900) !important;
}

.bg-info-a0 {
  background-color: var(--info-a0) !important;
}

.bg-info-a1 {
  background-color: var(--info-a1) !important;
}

.bg-info-a2 {
  background-color: var(--info-a2) !important;
}

.bg-info-a3 {
  background-color: var(--info-a3) !important;
}

.bg-info-a4 {
  background-color: var(--info-a4) !important;
}

.bg-info-a5 {
  background-color: var(--info-a5) !important;
}

.bg-info-a6 {
  background-color: var(--info-a6) !important;
}

.bg-info-a7 {
  background-color: var(--info-a7) !important;
}

.bg-info-a8 {
  background-color: var(--info-a8) !important;
}

.bg-info-a9 {
  background-color: var(--info-a9) !important;
}

.bg-info-a10 {
  background-color: var(--info-a10) !important;
}

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

.bg-warning-50 {
  background-color: var(--warning-50) !important;
}

.bg-warning-100 {
  background-color: var(--warning-100) !important;
}

.bg-warning-200 {
  background-color: var(--warning-200) !important;
}

.bg-warning-300 {
  background-color: var(--warning-300) !important;
}

.bg-warning-400 {
  background-color: var(--warning-400) !important;
}

.bg-warning-500 {
  background-color: var(--warning-500) !important;
}

.bg-warning-600 {
  background-color: var(--warning-600) !important;
}

.bg-warning-700 {
  background-color: var(--warning-700) !important;
}

.bg-warning-800 {
  background-color: var(--warning-800) !important;
}

.bg-warning-900 {
  background-color: var(--warning-900) !important;
}

.bg-warning-a0 {
  background-color: var(--warning-a0) !important;
}

.bg-warning-a1 {
  background-color: var(--warning-a1) !important;
}

.bg-warning-a2 {
  background-color: var(--warning-a2) !important;
}

.bg-warning-a3 {
  background-color: var(--warning-a3) !important;
}

.bg-warning-a4 {
  background-color: var(--warning-a4) !important;
}

.bg-warning-a5 {
  background-color: var(--warning-a5) !important;
}

.bg-warning-a6 {
  background-color: var(--warning-a6) !important;
}

.bg-warning-a7 {
  background-color: var(--warning-a7) !important;
}

.bg-warning-a8 {
  background-color: var(--warning-a8) !important;
}

.bg-warning-a9 {
  background-color: var(--warning-a9) !important;
}

.bg-warning-a10 {
  background-color: var(--warning-a10) !important;
}

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

.bg-danger-50 {
  background-color: var(--danger-50) !important;
}

.bg-danger-100 {
  background-color: var(--danger-100) !important;
}

.bg-danger-200 {
  background-color: var(--danger-200) !important;
}

.bg-danger-300 {
  background-color: var(--danger-300) !important;
}

.bg-danger-400 {
  background-color: var(--danger-400) !important;
}

.bg-danger-500 {
  background-color: var(--danger-500) !important;
}

.bg-danger-600 {
  background-color: var(--danger-600) !important;
}

.bg-danger-700 {
  background-color: var(--danger-700) !important;
}

.bg-danger-800 {
  background-color: var(--danger-800) !important;
}

.bg-danger-900 {
  background-color: var(--danger-900) !important;
}

.bg-danger-a0 {
  background-color: var(--danger-a0) !important;
}

.bg-danger-a1 {
  background-color: var(--danger-a1) !important;
}

.bg-danger-a2 {
  background-color: var(--danger-a2) !important;
}

.bg-danger-a3 {
  background-color: var(--danger-a3) !important;
}

.bg-danger-a4 {
  background-color: var(--danger-a4) !important;
}

.bg-danger-a5 {
  background-color: var(--danger-a5) !important;
}

.bg-danger-a6 {
  background-color: var(--danger-a6) !important;
}

.bg-danger-a7 {
  background-color: var(--danger-a7) !important;
}

.bg-danger-a8 {
  background-color: var(--danger-a8) !important;
}

.bg-danger-a9 {
  background-color: var(--danger-a9) !important;
}

.bg-danger-a10 {
  background-color: var(--danger-a10) !important;
}

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

.bg-light-50 {
  background-color: var(--light-50) !important;
}

.bg-light-100 {
  background-color: var(--light-100) !important;
}

.bg-light-200 {
  background-color: var(--light-200) !important;
}

.bg-light-300 {
  background-color: var(--light-300) !important;
}

.bg-light-400 {
  background-color: var(--light-400) !important;
}

.bg-light-500 {
  background-color: var(--light-500) !important;
}

.bg-light-600 {
  background-color: var(--light-600) !important;
}

.bg-light-700 {
  background-color: var(--light-700) !important;
}

.bg-light-800 {
  background-color: var(--light-800) !important;
}

.bg-light-900 {
  background-color: var(--light-900) !important;
}

.bg-light-a0 {
  background-color: var(--light-a0) !important;
}

.bg-light-a1 {
  background-color: var(--light-a1) !important;
}

.bg-light-a2 {
  background-color: var(--light-a2) !important;
}

.bg-light-a3 {
  background-color: var(--light-a3) !important;
}

.bg-light-a4 {
  background-color: var(--light-a4) !important;
}

.bg-light-a5 {
  background-color: var(--light-a5) !important;
}

.bg-light-a6 {
  background-color: var(--light-a6) !important;
}

.bg-light-a7 {
  background-color: var(--light-a7) !important;
}

.bg-light-a8 {
  background-color: var(--light-a8) !important;
}

.bg-light-a9 {
  background-color: var(--light-a9) !important;
}

.bg-light-a10 {
  background-color: var(--light-a10) !important;
}

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

.bg-dark-50 {
  background-color: var(--dark-50) !important;
}

.bg-dark-100 {
  background-color: var(--dark-100) !important;
}

.bg-dark-200 {
  background-color: var(--dark-200) !important;
}

.bg-dark-300 {
  background-color: var(--dark-300) !important;
}

.bg-dark-400 {
  background-color: var(--dark-400) !important;
}

.bg-dark-500 {
  background-color: var(--dark-500) !important;
}

.bg-dark-600 {
  background-color: var(--dark-600) !important;
}

.bg-dark-700 {
  background-color: var(--dark-700) !important;
}

.bg-dark-800 {
  background-color: var(--dark-800) !important;
}

.bg-dark-900 {
  background-color: var(--dark-900) !important;
}

.bg-dark-a0 {
  background-color: var(--dark-a0) !important;
}

.bg-dark-a1 {
  background-color: var(--dark-a1) !important;
}

.bg-dark-a2 {
  background-color: var(--dark-a2) !important;
}

.bg-dark-a3 {
  background-color: var(--dark-a3) !important;
}

.bg-dark-a4 {
  background-color: var(--dark-a4) !important;
}

.bg-dark-a5 {
  background-color: var(--dark-a5) !important;
}

.bg-dark-a6 {
  background-color: var(--dark-a6) !important;
}

.bg-dark-a7 {
  background-color: var(--dark-a7) !important;
}

.bg-dark-a8 {
  background-color: var(--dark-a8) !important;
}

.bg-dark-a9 {
  background-color: var(--dark-a9) !important;
}

.bg-dark-a10 {
  background-color: var(--dark-a10) !important;
}

/* =====================================================
   PALETTE COLORS — .bg-rose, .bg-cyan etc.
   Automatisch aus $palette-colors in _colors.scss
===================================================== */
.bg-red {
  --bg-opacity: 1;
  background-color: rgba(var(--color-red-rgb), var(--bg-opacity)) !important;
}

.bg-red-300 {
  background-color: var(--color-red-300) !important;
}

.bg-red-500 {
  background-color: var(--color-red-500) !important;
}

.bg-red-700 {
  background-color: var(--color-red-700) !important;
}

.bg-orange {
  --bg-opacity: 1;
  background-color: rgba(var(--color-orange-rgb), var(--bg-opacity)) !important;
}

.bg-orange-300 {
  background-color: var(--color-orange-300) !important;
}

.bg-orange-500 {
  background-color: var(--color-orange-500) !important;
}

.bg-orange-700 {
  background-color: var(--color-orange-700) !important;
}

.bg-amber {
  --bg-opacity: 1;
  background-color: rgba(var(--color-amber-rgb), var(--bg-opacity)) !important;
}

.bg-amber-300 {
  background-color: var(--color-amber-300) !important;
}

.bg-amber-500 {
  background-color: var(--color-amber-500) !important;
}

.bg-amber-700 {
  background-color: var(--color-amber-700) !important;
}

.bg-yellow {
  --bg-opacity: 1;
  background-color: rgba(var(--color-yellow-rgb), var(--bg-opacity)) !important;
}

.bg-yellow-300 {
  background-color: var(--color-yellow-300) !important;
}

.bg-yellow-500 {
  background-color: var(--color-yellow-500) !important;
}

.bg-yellow-700 {
  background-color: var(--color-yellow-700) !important;
}

.bg-lime {
  --bg-opacity: 1;
  background-color: rgba(var(--color-lime-rgb), var(--bg-opacity)) !important;
}

.bg-lime-300 {
  background-color: var(--color-lime-300) !important;
}

.bg-lime-500 {
  background-color: var(--color-lime-500) !important;
}

.bg-lime-700 {
  background-color: var(--color-lime-700) !important;
}

.bg-acid {
  --bg-opacity: 1;
  background-color: rgba(var(--color-acid-rgb), var(--bg-opacity)) !important;
}

.bg-acid-300 {
  background-color: var(--color-acid-300) !important;
}

.bg-acid-500 {
  background-color: var(--color-acid-500) !important;
}

.bg-acid-700 {
  background-color: var(--color-acid-700) !important;
}

.bg-green {
  --bg-opacity: 1;
  background-color: rgba(var(--color-green-rgb), var(--bg-opacity)) !important;
}

.bg-green-300 {
  background-color: var(--color-green-300) !important;
}

.bg-green-500 {
  background-color: var(--color-green-500) !important;
}

.bg-green-700 {
  background-color: var(--color-green-700) !important;
}

.bg-emerald {
  --bg-opacity: 1;
  background-color: rgba(var(--color-emerald-rgb), var(--bg-opacity)) !important;
}

.bg-emerald-300 {
  background-color: var(--color-emerald-300) !important;
}

.bg-emerald-500 {
  background-color: var(--color-emerald-500) !important;
}

.bg-emerald-700 {
  background-color: var(--color-emerald-700) !important;
}

.bg-teal {
  --bg-opacity: 1;
  background-color: rgba(var(--color-teal-rgb), var(--bg-opacity)) !important;
}

.bg-teal-300 {
  background-color: var(--color-teal-300) !important;
}

.bg-teal-500 {
  background-color: var(--color-teal-500) !important;
}

.bg-teal-700 {
  background-color: var(--color-teal-700) !important;
}

.bg-cyan {
  --bg-opacity: 1;
  background-color: rgba(var(--color-cyan-rgb), var(--bg-opacity)) !important;
}

.bg-cyan-300 {
  background-color: var(--color-cyan-300) !important;
}

.bg-cyan-500 {
  background-color: var(--color-cyan-500) !important;
}

.bg-cyan-700 {
  background-color: var(--color-cyan-700) !important;
}

.bg-sky {
  --bg-opacity: 1;
  background-color: rgba(var(--color-sky-rgb), var(--bg-opacity)) !important;
}

.bg-sky-300 {
  background-color: var(--color-sky-300) !important;
}

.bg-sky-500 {
  background-color: var(--color-sky-500) !important;
}

.bg-sky-700 {
  background-color: var(--color-sky-700) !important;
}

.bg-blue {
  --bg-opacity: 1;
  background-color: rgba(var(--color-blue-rgb), var(--bg-opacity)) !important;
}

.bg-blue-300 {
  background-color: var(--color-blue-300) !important;
}

.bg-blue-500 {
  background-color: var(--color-blue-500) !important;
}

.bg-blue-700 {
  background-color: var(--color-blue-700) !important;
}

.bg-indigo {
  --bg-opacity: 1;
  background-color: rgba(var(--color-indigo-rgb), var(--bg-opacity)) !important;
}

.bg-indigo-300 {
  background-color: var(--color-indigo-300) !important;
}

.bg-indigo-500 {
  background-color: var(--color-indigo-500) !important;
}

.bg-indigo-700 {
  background-color: var(--color-indigo-700) !important;
}

.bg-violet {
  --bg-opacity: 1;
  background-color: rgba(var(--color-violet-rgb), var(--bg-opacity)) !important;
}

.bg-violet-300 {
  background-color: var(--color-violet-300) !important;
}

.bg-violet-500 {
  background-color: var(--color-violet-500) !important;
}

.bg-violet-700 {
  background-color: var(--color-violet-700) !important;
}

.bg-purple {
  --bg-opacity: 1;
  background-color: rgba(var(--color-purple-rgb), var(--bg-opacity)) !important;
}

.bg-purple-300 {
  background-color: var(--color-purple-300) !important;
}

.bg-purple-500 {
  background-color: var(--color-purple-500) !important;
}

.bg-purple-700 {
  background-color: var(--color-purple-700) !important;
}

.bg-pink {
  --bg-opacity: 1;
  background-color: rgba(var(--color-pink-rgb), var(--bg-opacity)) !important;
}

.bg-pink-300 {
  background-color: var(--color-pink-300) !important;
}

.bg-pink-500 {
  background-color: var(--color-pink-500) !important;
}

.bg-pink-700 {
  background-color: var(--color-pink-700) !important;
}

.bg-rose {
  --bg-opacity: 1;
  background-color: rgba(var(--color-rose-rgb), var(--bg-opacity)) !important;
}

.bg-rose-300 {
  background-color: var(--color-rose-300) !important;
}

.bg-rose-500 {
  background-color: var(--color-rose-500) !important;
}

.bg-rose-700 {
  background-color: var(--color-rose-700) !important;
}

/* =====================================================
   NEUTRAL — .bg-white, .bg-black, .bg-gray-*
===================================================== */
.bg-white {
  --bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--bg-opacity)) !important;
}

.bg-black {
  --bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--bg-opacity)) !important;
}

.bg-gray-100 {
  background-color: rgb(236.6, 236.68, 236.84) !important;
}

.bg-gray-200 {
  background-color: rgb(218.2, 218.36, 218.68) !important;
}

.bg-gray-300 {
  background-color: rgb(190.6, 190.88, 191.44) !important;
}

.bg-gray-400 {
  background-color: rgb(153.8, 154.24, 155.12) !important;
}

.bg-gray-500 {
  background-color: rgb(117, 117.6, 118.8) !important;
}

.bg-gray-600 {
  background-color: rgb(89.4, 90.12, 91.56) !important;
}

.bg-gray-700 {
  background-color: rgb(66.4, 67.22, 68.86) !important;
}

.bg-gray-800 {
  background-color: rgb(48, 48.9, 50.7) !important;
}

.bg-gray-900 {
  background-color: rgb(34.2, 35.16, 37.08) !important;
}

.bg-opacity-10 {
  --bg-opacity: 0.1;
}

.bg-opacity-20 {
  --bg-opacity: 0.2;
}

.bg-opacity-25 {
  --bg-opacity: 0.25;
}

.bg-opacity-30 {
  --bg-opacity: 0.3;
}

.bg-opacity-40 {
  --bg-opacity: 0.4;
}

.bg-opacity-50 {
  --bg-opacity: 0.5;
}

.bg-opacity-60 {
  --bg-opacity: 0.6;
}

.bg-opacity-75 {
  --bg-opacity: 0.75;
}

.bg-opacity-80 {
  --bg-opacity: 0.8;
}

.bg-opacity-90 {
  --bg-opacity: 0.9;
}

.bg-opacity-100 {
  --bg-opacity: 1;
}

/* =====================================================
   MODIFIER: ALPHA
   .bg.bg-primary.a-3
===================================================== */
.a-0 {
  --bg-current: color-mix(in srgb, transparent 100%, var(--bg-color) 0%);
}

.a-1 {
  --bg-current: color-mix(in srgb, transparent 90%, var(--bg-color) 10%);
}

.a-2 {
  --bg-current: color-mix(in srgb, transparent 80%, var(--bg-color) 20%);
}

.a-3 {
  --bg-current: color-mix(in srgb, transparent 70%, var(--bg-color) 30%);
}

.a-4 {
  --bg-current: color-mix(in srgb, transparent 60%, var(--bg-color) 40%);
}

.a-5 {
  --bg-current: color-mix(in srgb, transparent 50%, var(--bg-color) 50%);
}

.a-6 {
  --bg-current: color-mix(in srgb, transparent 40%, var(--bg-color) 60%);
}

.a-7 {
  --bg-current: color-mix(in srgb, transparent 30%, var(--bg-color) 70%);
}

.a-8 {
  --bg-current: color-mix(in srgb, transparent 20%, var(--bg-color) 80%);
}

.a-9 {
  --bg-current: color-mix(in srgb, transparent 10%, var(--bg-color) 90%);
}

.a-10 {
  --bg-current: var(--bg-color);
}

/* =====================================================
   MODIFIER: TONES (hell)
   .bg.bg-primary.tone-3
===================================================== */
.tone-0 {
  --bg-current: color-mix(in srgb, white 95%, var(--bg-color) 5%);
}

.tone-1 {
  --bg-current: color-mix(in srgb, white 90%, var(--bg-color) 10%);
}

.tone-2 {
  --bg-current: color-mix(in srgb, white 80%, var(--bg-color) 20%);
}

.tone-3 {
  --bg-current: color-mix(in srgb, white 68%, var(--bg-color) 32%);
}

.tone-4 {
  --bg-current: color-mix(in srgb, white 52%, var(--bg-color) 48%);
}

.tone-5 {
  --bg-current: color-mix(in srgb, white 36%, var(--bg-color) 64%);
}

.tone-6 {
  --bg-current: color-mix(in srgb, white 24%, var(--bg-color) 76%);
}

.tone-7 {
  --bg-current: color-mix(in srgb, white 15%, var(--bg-color) 85%);
}

.tone-8 {
  --bg-current: color-mix(in srgb, white 8%, var(--bg-color) 92%);
}

.tone-9 {
  --bg-current: color-mix(in srgb, white 3%, var(--bg-color) 97%);
}

/* =====================================================
   MODIFIER: SHADES (dunkel)
   .bg.bg-primary.shade-3
===================================================== */
.shade-0 {
  --bg-current: color-mix(in srgb, black 5%, var(--bg-color) 95%);
}

.shade-1 {
  --bg-current: color-mix(in srgb, black 10%, var(--bg-color) 90%);
}

.shade-2 {
  --bg-current: color-mix(in srgb, black 20%, var(--bg-color) 80%);
}

.shade-3 {
  --bg-current: color-mix(in srgb, black 32%, var(--bg-color) 68%);
}

.shade-4 {
  --bg-current: color-mix(in srgb, black 48%, var(--bg-color) 52%);
}

.shade-5 {
  --bg-current: color-mix(in srgb, black 64%, var(--bg-color) 36%);
}

.shade-6 {
  --bg-current: color-mix(in srgb, black 76%, var(--bg-color) 24%);
}

.shade-7 {
  --bg-current: color-mix(in srgb, black 85%, var(--bg-color) 15%);
}

.shade-8 {
  --bg-current: color-mix(in srgb, black 92%, var(--bg-color) 8%);
}

.shade-9 {
  --bg-current: color-mix(in srgb, black 97%, var(--bg-color) 3%);
}

.rounded-2x,
.border-radius-2 {
  border-radius: var(--border-radius-2x) !important;
}

.rounded-3x,
.border-radius-3 {
  border-radius: var(--border-radius-3x) !important;
}

.rounded-4x,
.border-radius-4 {
  border-radius: var(--border-radius-4x) !important;
}

.rounded-5x,
.border-radius-5 {
  border-radius: var(--border-radius-5x) !important;
}

.rounded-6x,
.border-radius-6 {
  border-radius: var(--border-radius-6x) !important;
}

.rounded-top-2x {
  border-top-left-radius: var(--border-radius-2x) !important;
  border-top-right-radius: var(--border-radius-2x) !important;
}

.rounded-bottom-2x {
  border-bottom-left-radius: var(--border-radius-2x) !important;
  border-bottom-right-radius: var(--border-radius-2x) !important;
}

.rounded-top-3x {
  border-top-left-radius: var(--border-radius-3x) !important;
  border-top-right-radius: var(--border-radius-3x) !important;
}

.rounded-bottom-3x {
  border-bottom-left-radius: var(--border-radius-3x) !important;
  border-bottom-right-radius: var(--border-radius-3x) !important;
}

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

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

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

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

.top-1px {
  top: 1px !important;
}

.bottom-1px {
  bottom: 1px !important;
}

.left-1px {
  left: 1px !important;
}

.right-1px {
  right: 1px !important;
}

.top-2px {
  top: 2px !important;
}

.bottom-2px {
  bottom: 2px !important;
}

.left-2px {
  left: 2px !important;
}

.right-2px {
  right: 2px !important;
}

.top-3px {
  top: 3px !important;
}

.bottom-3px {
  bottom: 3px !important;
}

.left-3px {
  left: 3px !important;
}

.right-3px {
  right: 3px !important;
}

.top-4px {
  top: 4px !important;
}

.bottom-4px {
  bottom: 4px !important;
}

.left-4px {
  left: 4px !important;
}

.right-4px {
  right: 4px !important;
}

.top-5px {
  top: 5px !important;
}

.bottom-5px {
  bottom: 5px !important;
}

.left-5px {
  left: 5px !important;
}

.right-5px {
  right: 5px !important;
}

.top-6px {
  top: 6px !important;
}

.bottom-6px {
  bottom: 6px !important;
}

.left-6px {
  left: 6px !important;
}

.right-6px {
  right: 6px !important;
}

.top-7px {
  top: 7px !important;
}

.bottom-7px {
  bottom: 7px !important;
}

.left-7px {
  left: 7px !important;
}

.right-7px {
  right: 7px !important;
}

.top-8px {
  top: 8px !important;
}

.bottom-8px {
  bottom: 8px !important;
}

.left-8px {
  left: 8px !important;
}

.right-8px {
  right: 8px !important;
}

.top-9px {
  top: 9px !important;
}

.bottom-9px {
  bottom: 9px !important;
}

.left-9px {
  left: 9px !important;
}

.right-9px {
  right: 9px !important;
}

.top-10px {
  top: 10px !important;
}

.bottom-10px {
  bottom: 10px !important;
}

.left-10px {
  left: 10px !important;
}

.right-10px {
  right: 10px !important;
}

.top-11px {
  top: 11px !important;
}

.bottom-11px {
  bottom: 11px !important;
}

.left-11px {
  left: 11px !important;
}

.right-11px {
  right: 11px !important;
}

.top-12px {
  top: 12px !important;
}

.bottom-12px {
  bottom: 12px !important;
}

.left-12px {
  left: 12px !important;
}

.right-12px {
  right: 12px !important;
}

.top-13px {
  top: 13px !important;
}

.bottom-13px {
  bottom: 13px !important;
}

.left-13px {
  left: 13px !important;
}

.right-13px {
  right: 13px !important;
}

.top-14px {
  top: 14px !important;
}

.bottom-14px {
  bottom: 14px !important;
}

.left-14px {
  left: 14px !important;
}

.right-14px {
  right: 14px !important;
}

.top-15px {
  top: 15px !important;
}

.bottom-15px {
  bottom: 15px !important;
}

.left-15px {
  left: 15px !important;
}

.right-15px {
  right: 15px !important;
}

.top-16px {
  top: 16px !important;
}

.bottom-16px {
  bottom: 16px !important;
}

.left-16px {
  left: 16px !important;
}

.right-16px {
  right: 16px !important;
}

.top-17px {
  top: 17px !important;
}

.bottom-17px {
  bottom: 17px !important;
}

.left-17px {
  left: 17px !important;
}

.right-17px {
  right: 17px !important;
}

.top-18px {
  top: 18px !important;
}

.bottom-18px {
  bottom: 18px !important;
}

.left-18px {
  left: 18px !important;
}

.right-18px {
  right: 18px !important;
}

.top-19px {
  top: 19px !important;
}

.bottom-19px {
  bottom: 19px !important;
}

.left-19px {
  left: 19px !important;
}

.right-19px {
  right: 19px !important;
}

.top-20px {
  top: 20px !important;
}

.bottom-20px {
  bottom: 20px !important;
}

.left-20px {
  left: 20px !important;
}

.right-20px {
  right: 20px !important;
}

.top-21px {
  top: 21px !important;
}

.bottom-21px {
  bottom: 21px !important;
}

.left-21px {
  left: 21px !important;
}

.right-21px {
  right: 21px !important;
}

.top-22px {
  top: 22px !important;
}

.bottom-22px {
  bottom: 22px !important;
}

.left-22px {
  left: 22px !important;
}

.right-22px {
  right: 22px !important;
}

.top-23px {
  top: 23px !important;
}

.bottom-23px {
  bottom: 23px !important;
}

.left-23px {
  left: 23px !important;
}

.right-23px {
  right: 23px !important;
}

.top-24px {
  top: 24px !important;
}

.bottom-24px {
  bottom: 24px !important;
}

.left-24px {
  left: 24px !important;
}

.right-24px {
  right: 24px !important;
}

.top-25px {
  top: 25px !important;
}

.bottom-25px {
  bottom: 25px !important;
}

.left-25px {
  left: 25px !important;
}

.right-25px {
  right: 25px !important;
}

.top-26px {
  top: 26px !important;
}

.bottom-26px {
  bottom: 26px !important;
}

.left-26px {
  left: 26px !important;
}

.right-26px {
  right: 26px !important;
}

.top-27px {
  top: 27px !important;
}

.bottom-27px {
  bottom: 27px !important;
}

.left-27px {
  left: 27px !important;
}

.right-27px {
  right: 27px !important;
}

.top-28px {
  top: 28px !important;
}

.bottom-28px {
  bottom: 28px !important;
}

.left-28px {
  left: 28px !important;
}

.right-28px {
  right: 28px !important;
}

.top-29px {
  top: 29px !important;
}

.bottom-29px {
  bottom: 29px !important;
}

.left-29px {
  left: 29px !important;
}

.right-29px {
  right: 29px !important;
}

.top-30px {
  top: 30px !important;
}

.bottom-30px {
  bottom: 30px !important;
}

.left-30px {
  left: 30px !important;
}

.right-30px {
  right: 30px !important;
}

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

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

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

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

.top-1 {
  top: 1px !important;
}

.bottom-1 {
  bottom: 1px !important;
}

.left-1 {
  left: 1px !important;
}

.right-1 {
  right: 1px !important;
}

.top-2 {
  top: 2px !important;
}

.bottom-2 {
  bottom: 2px !important;
}

.left-2 {
  left: 2px !important;
}

.right-2 {
  right: 2px !important;
}

.top-3 {
  top: 3px !important;
}

.bottom-3 {
  bottom: 3px !important;
}

.left-3 {
  left: 3px !important;
}

.right-3 {
  right: 3px !important;
}

.top-4 {
  top: 4px !important;
}

.bottom-4 {
  bottom: 4px !important;
}

.left-4 {
  left: 4px !important;
}

.right-4 {
  right: 4px !important;
}

.top-5 {
  top: 5px !important;
}

.bottom-5 {
  bottom: 5px !important;
}

.left-5 {
  left: 5px !important;
}

.right-5 {
  right: 5px !important;
}

.top-6 {
  top: 6px !important;
}

.bottom-6 {
  bottom: 6px !important;
}

.left-6 {
  left: 6px !important;
}

.right-6 {
  right: 6px !important;
}

.top-7 {
  top: 7px !important;
}

.bottom-7 {
  bottom: 7px !important;
}

.left-7 {
  left: 7px !important;
}

.right-7 {
  right: 7px !important;
}

.top-8 {
  top: 8px !important;
}

.bottom-8 {
  bottom: 8px !important;
}

.left-8 {
  left: 8px !important;
}

.right-8 {
  right: 8px !important;
}

.top-9 {
  top: 9px !important;
}

.bottom-9 {
  bottom: 9px !important;
}

.left-9 {
  left: 9px !important;
}

.right-9 {
  right: 9px !important;
}

.top-10 {
  top: 10px !important;
}

.bottom-10 {
  bottom: 10px !important;
}

.left-10 {
  left: 10px !important;
}

.right-10 {
  right: 10px !important;
}

.top-11 {
  top: 11px !important;
}

.bottom-11 {
  bottom: 11px !important;
}

.left-11 {
  left: 11px !important;
}

.right-11 {
  right: 11px !important;
}

.top-12 {
  top: 12px !important;
}

.bottom-12 {
  bottom: 12px !important;
}

.left-12 {
  left: 12px !important;
}

.right-12 {
  right: 12px !important;
}

.top-13 {
  top: 13px !important;
}

.bottom-13 {
  bottom: 13px !important;
}

.left-13 {
  left: 13px !important;
}

.right-13 {
  right: 13px !important;
}

.top-14 {
  top: 14px !important;
}

.bottom-14 {
  bottom: 14px !important;
}

.left-14 {
  left: 14px !important;
}

.right-14 {
  right: 14px !important;
}

.top-15 {
  top: 15px !important;
}

.bottom-15 {
  bottom: 15px !important;
}

.left-15 {
  left: 15px !important;
}

.right-15 {
  right: 15px !important;
}

.top-16 {
  top: 16px !important;
}

.bottom-16 {
  bottom: 16px !important;
}

.left-16 {
  left: 16px !important;
}

.right-16 {
  right: 16px !important;
}

.top-17 {
  top: 17px !important;
}

.bottom-17 {
  bottom: 17px !important;
}

.left-17 {
  left: 17px !important;
}

.right-17 {
  right: 17px !important;
}

.top-18 {
  top: 18px !important;
}

.bottom-18 {
  bottom: 18px !important;
}

.left-18 {
  left: 18px !important;
}

.right-18 {
  right: 18px !important;
}

.top-19 {
  top: 19px !important;
}

.bottom-19 {
  bottom: 19px !important;
}

.left-19 {
  left: 19px !important;
}

.right-19 {
  right: 19px !important;
}

.top-20 {
  top: 20px !important;
}

.bottom-20 {
  bottom: 20px !important;
}

.left-20 {
  left: 20px !important;
}

.right-20 {
  right: 20px !important;
}

.top-21 {
  top: 21px !important;
}

.bottom-21 {
  bottom: 21px !important;
}

.left-21 {
  left: 21px !important;
}

.right-21 {
  right: 21px !important;
}

.top-22 {
  top: 22px !important;
}

.bottom-22 {
  bottom: 22px !important;
}

.left-22 {
  left: 22px !important;
}

.right-22 {
  right: 22px !important;
}

.top-23 {
  top: 23px !important;
}

.bottom-23 {
  bottom: 23px !important;
}

.left-23 {
  left: 23px !important;
}

.right-23 {
  right: 23px !important;
}

.top-24 {
  top: 24px !important;
}

.bottom-24 {
  bottom: 24px !important;
}

.left-24 {
  left: 24px !important;
}

.right-24 {
  right: 24px !important;
}

.top-25 {
  top: 25px !important;
}

.bottom-25 {
  bottom: 25px !important;
}

.left-25 {
  left: 25px !important;
}

.right-25 {
  right: 25px !important;
}

.top-26 {
  top: 26px !important;
}

.bottom-26 {
  bottom: 26px !important;
}

.left-26 {
  left: 26px !important;
}

.right-26 {
  right: 26px !important;
}

.top-27 {
  top: 27px !important;
}

.bottom-27 {
  bottom: 27px !important;
}

.left-27 {
  left: 27px !important;
}

.right-27 {
  right: 27px !important;
}

.top-28 {
  top: 28px !important;
}

.bottom-28 {
  bottom: 28px !important;
}

.left-28 {
  left: 28px !important;
}

.right-28 {
  right: 28px !important;
}

.top-29 {
  top: 29px !important;
}

.bottom-29 {
  bottom: 29px !important;
}

.left-29 {
  left: 29px !important;
}

.right-29 {
  right: 29px !important;
}

.top-30 {
  top: 30px !important;
}

.bottom-30 {
  bottom: 30px !important;
}

.left-30 {
  left: 30px !important;
}

.right-30 {
  right: 30px !important;
}

.top-40 {
  top: 40px !important;
}

.bottom-40 {
  bottom: 40px !important;
}

.left-40 {
  left: 40px !important;
}

.right-40 {
  right: 40px !important;
}

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

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

.nls-05,
.negative-ls-05,
.n-ls-05 {
  letter-spacing: -0.05em !important;
}

.nls-1,
.negative-ls-1,
.n-ls-1 {
  letter-spacing: -0.01em !important;
}

.nls-2,
.negative-ls-2,
.n-ls-2 {
  letter-spacing: -0.02em !important;
}

.nls-3,
.negative-ls-3,
.n-ls-3 {
  letter-spacing: -0.03em !important;
}

.nls-4,
.negative-ls-4,
.n-ls-4 {
  letter-spacing: -0.04em !important;
}

.nls-5,
.negative-ls-5,
.n-ls-5 {
  letter-spacing: -0.05em !important;
}

.ls-1 {
  letter-spacing: 0.01em !important;
}

.ls-2 {
  letter-spacing: 0.02em !important;
}

.ls-3 {
  letter-spacing: 0.05em !important;
}

.ls-4 {
  letter-spacing: 0.08em !important;
}

.ls-5 {
  letter-spacing: 0.12em !important;
}

.ls-wide {
  letter-spacing: var(--letter-spacing-wide) !important;
}

.ls-wider {
  letter-spacing: var(--letter-spacing-wider) !important;
}

.ls-ui {
  letter-spacing: var(--letter-spacing-ui) !important;
}

.border-color-primary-a0 {
  border-color: var(--primary-a0) !important;
}

.border-color-primary-a1 {
  border-color: var(--primary-a1) !important;
}

.border-color-primary-a2 {
  border-color: var(--primary-a2) !important;
}

.border-color-primary-a3 {
  border-color: var(--primary-a3) !important;
}

.border-color-primary-a4 {
  border-color: var(--primary-a4) !important;
}

.border-color-primary-a5 {
  border-color: var(--primary-a5) !important;
}

.border-color-primary-a6 {
  border-color: var(--primary-a6) !important;
}

.border-color-primary-a7 {
  border-color: var(--primary-a7) !important;
}

.border-color-primary-a8 {
  border-color: var(--primary-a8) !important;
}

.border-color-primary-a9 {
  border-color: var(--primary-a9) !important;
}

.border-color-primary-a10 {
  border-color: var(--primary-a10) !important;
}

.border-color-primary-rgba-10 {
  border-color: var(--primary-a1) !important;
}

.border-color-primary-rgba-20 {
  border-color: var(--primary-a2) !important;
}

.border-color-primary-rgba-30 {
  border-color: var(--primary-a3) !important;
}

.border-color-primary-rgba-40 {
  border-color: var(--primary-a4) !important;
}

.border-color-primary-rgba-50 {
  border-color: var(--primary-a5) !important;
}

.border-color-primary-rgba-60 {
  border-color: var(--primary-a6) !important;
}

.border-color-primary-rgba-70 {
  border-color: var(--primary-a7) !important;
}

.border-color-primary-rgba-80 {
  border-color: var(--primary-a8) !important;
}

.border-color-primary-rgba-90 {
  border-color: var(--primary-a9) !important;
}

.border-color-secondary-a0 {
  border-color: var(--secondary-a0) !important;
}

.border-color-secondary-a1 {
  border-color: var(--secondary-a1) !important;
}

.border-color-secondary-a2 {
  border-color: var(--secondary-a2) !important;
}

.border-color-secondary-a3 {
  border-color: var(--secondary-a3) !important;
}

.border-color-secondary-a4 {
  border-color: var(--secondary-a4) !important;
}

.border-color-secondary-a5 {
  border-color: var(--secondary-a5) !important;
}

.border-color-secondary-a6 {
  border-color: var(--secondary-a6) !important;
}

.border-color-secondary-a7 {
  border-color: var(--secondary-a7) !important;
}

.border-color-secondary-a8 {
  border-color: var(--secondary-a8) !important;
}

.border-color-secondary-a9 {
  border-color: var(--secondary-a9) !important;
}

.border-color-secondary-a10 {
  border-color: var(--secondary-a10) !important;
}

.border-color-secondary-rgba-10 {
  border-color: var(--secondary-a1) !important;
}

.border-color-secondary-rgba-20 {
  border-color: var(--secondary-a2) !important;
}

.border-color-secondary-rgba-30 {
  border-color: var(--secondary-a3) !important;
}

.border-color-secondary-rgba-40 {
  border-color: var(--secondary-a4) !important;
}

.border-color-secondary-rgba-50 {
  border-color: var(--secondary-a5) !important;
}

.border-color-secondary-rgba-60 {
  border-color: var(--secondary-a6) !important;
}

.border-color-secondary-rgba-70 {
  border-color: var(--secondary-a7) !important;
}

.border-color-secondary-rgba-80 {
  border-color: var(--secondary-a8) !important;
}

.border-color-secondary-rgba-90 {
  border-color: var(--secondary-a9) !important;
}

.border-color-tertiary-a0 {
  border-color: var(--tertiary-a0) !important;
}

.border-color-tertiary-a1 {
  border-color: var(--tertiary-a1) !important;
}

.border-color-tertiary-a2 {
  border-color: var(--tertiary-a2) !important;
}

.border-color-tertiary-a3 {
  border-color: var(--tertiary-a3) !important;
}

.border-color-tertiary-a4 {
  border-color: var(--tertiary-a4) !important;
}

.border-color-tertiary-a5 {
  border-color: var(--tertiary-a5) !important;
}

.border-color-tertiary-a6 {
  border-color: var(--tertiary-a6) !important;
}

.border-color-tertiary-a7 {
  border-color: var(--tertiary-a7) !important;
}

.border-color-tertiary-a8 {
  border-color: var(--tertiary-a8) !important;
}

.border-color-tertiary-a9 {
  border-color: var(--tertiary-a9) !important;
}

.border-color-tertiary-a10 {
  border-color: var(--tertiary-a10) !important;
}

.border-color-tertiary-rgba-10 {
  border-color: var(--tertiary-a1) !important;
}

.border-color-tertiary-rgba-20 {
  border-color: var(--tertiary-a2) !important;
}

.border-color-tertiary-rgba-30 {
  border-color: var(--tertiary-a3) !important;
}

.border-color-tertiary-rgba-40 {
  border-color: var(--tertiary-a4) !important;
}

.border-color-tertiary-rgba-50 {
  border-color: var(--tertiary-a5) !important;
}

.border-color-tertiary-rgba-60 {
  border-color: var(--tertiary-a6) !important;
}

.border-color-tertiary-rgba-70 {
  border-color: var(--tertiary-a7) !important;
}

.border-color-tertiary-rgba-80 {
  border-color: var(--tertiary-a8) !important;
}

.border-color-tertiary-rgba-90 {
  border-color: var(--tertiary-a9) !important;
}

.border-color-quaternary-a0 {
  border-color: var(--quaternary-a0) !important;
}

.border-color-quaternary-a1 {
  border-color: var(--quaternary-a1) !important;
}

.border-color-quaternary-a2 {
  border-color: var(--quaternary-a2) !important;
}

.border-color-quaternary-a3 {
  border-color: var(--quaternary-a3) !important;
}

.border-color-quaternary-a4 {
  border-color: var(--quaternary-a4) !important;
}

.border-color-quaternary-a5 {
  border-color: var(--quaternary-a5) !important;
}

.border-color-quaternary-a6 {
  border-color: var(--quaternary-a6) !important;
}

.border-color-quaternary-a7 {
  border-color: var(--quaternary-a7) !important;
}

.border-color-quaternary-a8 {
  border-color: var(--quaternary-a8) !important;
}

.border-color-quaternary-a9 {
  border-color: var(--quaternary-a9) !important;
}

.border-color-quaternary-a10 {
  border-color: var(--quaternary-a10) !important;
}

.border-color-quaternary-rgba-10 {
  border-color: var(--quaternary-a1) !important;
}

.border-color-quaternary-rgba-20 {
  border-color: var(--quaternary-a2) !important;
}

.border-color-quaternary-rgba-30 {
  border-color: var(--quaternary-a3) !important;
}

.border-color-quaternary-rgba-40 {
  border-color: var(--quaternary-a4) !important;
}

.border-color-quaternary-rgba-50 {
  border-color: var(--quaternary-a5) !important;
}

.border-color-quaternary-rgba-60 {
  border-color: var(--quaternary-a6) !important;
}

.border-color-quaternary-rgba-70 {
  border-color: var(--quaternary-a7) !important;
}

.border-color-quaternary-rgba-80 {
  border-color: var(--quaternary-a8) !important;
}

.border-color-quaternary-rgba-90 {
  border-color: var(--quaternary-a9) !important;
}

.border-color-success-a0 {
  border-color: var(--success-a0) !important;
}

.border-color-success-a1 {
  border-color: var(--success-a1) !important;
}

.border-color-success-a2 {
  border-color: var(--success-a2) !important;
}

.border-color-success-a3 {
  border-color: var(--success-a3) !important;
}

.border-color-success-a4 {
  border-color: var(--success-a4) !important;
}

.border-color-success-a5 {
  border-color: var(--success-a5) !important;
}

.border-color-success-a6 {
  border-color: var(--success-a6) !important;
}

.border-color-success-a7 {
  border-color: var(--success-a7) !important;
}

.border-color-success-a8 {
  border-color: var(--success-a8) !important;
}

.border-color-success-a9 {
  border-color: var(--success-a9) !important;
}

.border-color-success-a10 {
  border-color: var(--success-a10) !important;
}

.border-color-success-rgba-10 {
  border-color: var(--success-a1) !important;
}

.border-color-success-rgba-20 {
  border-color: var(--success-a2) !important;
}

.border-color-success-rgba-30 {
  border-color: var(--success-a3) !important;
}

.border-color-success-rgba-40 {
  border-color: var(--success-a4) !important;
}

.border-color-success-rgba-50 {
  border-color: var(--success-a5) !important;
}

.border-color-success-rgba-60 {
  border-color: var(--success-a6) !important;
}

.border-color-success-rgba-70 {
  border-color: var(--success-a7) !important;
}

.border-color-success-rgba-80 {
  border-color: var(--success-a8) !important;
}

.border-color-success-rgba-90 {
  border-color: var(--success-a9) !important;
}

.border-color-info-a0 {
  border-color: var(--info-a0) !important;
}

.border-color-info-a1 {
  border-color: var(--info-a1) !important;
}

.border-color-info-a2 {
  border-color: var(--info-a2) !important;
}

.border-color-info-a3 {
  border-color: var(--info-a3) !important;
}

.border-color-info-a4 {
  border-color: var(--info-a4) !important;
}

.border-color-info-a5 {
  border-color: var(--info-a5) !important;
}

.border-color-info-a6 {
  border-color: var(--info-a6) !important;
}

.border-color-info-a7 {
  border-color: var(--info-a7) !important;
}

.border-color-info-a8 {
  border-color: var(--info-a8) !important;
}

.border-color-info-a9 {
  border-color: var(--info-a9) !important;
}

.border-color-info-a10 {
  border-color: var(--info-a10) !important;
}

.border-color-info-rgba-10 {
  border-color: var(--info-a1) !important;
}

.border-color-info-rgba-20 {
  border-color: var(--info-a2) !important;
}

.border-color-info-rgba-30 {
  border-color: var(--info-a3) !important;
}

.border-color-info-rgba-40 {
  border-color: var(--info-a4) !important;
}

.border-color-info-rgba-50 {
  border-color: var(--info-a5) !important;
}

.border-color-info-rgba-60 {
  border-color: var(--info-a6) !important;
}

.border-color-info-rgba-70 {
  border-color: var(--info-a7) !important;
}

.border-color-info-rgba-80 {
  border-color: var(--info-a8) !important;
}

.border-color-info-rgba-90 {
  border-color: var(--info-a9) !important;
}

.border-color-warning-a0 {
  border-color: var(--warning-a0) !important;
}

.border-color-warning-a1 {
  border-color: var(--warning-a1) !important;
}

.border-color-warning-a2 {
  border-color: var(--warning-a2) !important;
}

.border-color-warning-a3 {
  border-color: var(--warning-a3) !important;
}

.border-color-warning-a4 {
  border-color: var(--warning-a4) !important;
}

.border-color-warning-a5 {
  border-color: var(--warning-a5) !important;
}

.border-color-warning-a6 {
  border-color: var(--warning-a6) !important;
}

.border-color-warning-a7 {
  border-color: var(--warning-a7) !important;
}

.border-color-warning-a8 {
  border-color: var(--warning-a8) !important;
}

.border-color-warning-a9 {
  border-color: var(--warning-a9) !important;
}

.border-color-warning-a10 {
  border-color: var(--warning-a10) !important;
}

.border-color-warning-rgba-10 {
  border-color: var(--warning-a1) !important;
}

.border-color-warning-rgba-20 {
  border-color: var(--warning-a2) !important;
}

.border-color-warning-rgba-30 {
  border-color: var(--warning-a3) !important;
}

.border-color-warning-rgba-40 {
  border-color: var(--warning-a4) !important;
}

.border-color-warning-rgba-50 {
  border-color: var(--warning-a5) !important;
}

.border-color-warning-rgba-60 {
  border-color: var(--warning-a6) !important;
}

.border-color-warning-rgba-70 {
  border-color: var(--warning-a7) !important;
}

.border-color-warning-rgba-80 {
  border-color: var(--warning-a8) !important;
}

.border-color-warning-rgba-90 {
  border-color: var(--warning-a9) !important;
}

.border-color-danger-a0 {
  border-color: var(--danger-a0) !important;
}

.border-color-danger-a1 {
  border-color: var(--danger-a1) !important;
}

.border-color-danger-a2 {
  border-color: var(--danger-a2) !important;
}

.border-color-danger-a3 {
  border-color: var(--danger-a3) !important;
}

.border-color-danger-a4 {
  border-color: var(--danger-a4) !important;
}

.border-color-danger-a5 {
  border-color: var(--danger-a5) !important;
}

.border-color-danger-a6 {
  border-color: var(--danger-a6) !important;
}

.border-color-danger-a7 {
  border-color: var(--danger-a7) !important;
}

.border-color-danger-a8 {
  border-color: var(--danger-a8) !important;
}

.border-color-danger-a9 {
  border-color: var(--danger-a9) !important;
}

.border-color-danger-a10 {
  border-color: var(--danger-a10) !important;
}

.border-color-danger-rgba-10 {
  border-color: var(--danger-a1) !important;
}

.border-color-danger-rgba-20 {
  border-color: var(--danger-a2) !important;
}

.border-color-danger-rgba-30 {
  border-color: var(--danger-a3) !important;
}

.border-color-danger-rgba-40 {
  border-color: var(--danger-a4) !important;
}

.border-color-danger-rgba-50 {
  border-color: var(--danger-a5) !important;
}

.border-color-danger-rgba-60 {
  border-color: var(--danger-a6) !important;
}

.border-color-danger-rgba-70 {
  border-color: var(--danger-a7) !important;
}

.border-color-danger-rgba-80 {
  border-color: var(--danger-a8) !important;
}

.border-color-danger-rgba-90 {
  border-color: var(--danger-a9) !important;
}

.border-color-light-a0 {
  border-color: var(--light-a0) !important;
}

.border-color-light-a1 {
  border-color: var(--light-a1) !important;
}

.border-color-light-a2 {
  border-color: var(--light-a2) !important;
}

.border-color-light-a3 {
  border-color: var(--light-a3) !important;
}

.border-color-light-a4 {
  border-color: var(--light-a4) !important;
}

.border-color-light-a5 {
  border-color: var(--light-a5) !important;
}

.border-color-light-a6 {
  border-color: var(--light-a6) !important;
}

.border-color-light-a7 {
  border-color: var(--light-a7) !important;
}

.border-color-light-a8 {
  border-color: var(--light-a8) !important;
}

.border-color-light-a9 {
  border-color: var(--light-a9) !important;
}

.border-color-light-a10 {
  border-color: var(--light-a10) !important;
}

.border-color-light-rgba-10 {
  border-color: var(--light-a1) !important;
}

.border-color-light-rgba-20 {
  border-color: var(--light-a2) !important;
}

.border-color-light-rgba-30 {
  border-color: var(--light-a3) !important;
}

.border-color-light-rgba-40 {
  border-color: var(--light-a4) !important;
}

.border-color-light-rgba-50 {
  border-color: var(--light-a5) !important;
}

.border-color-light-rgba-60 {
  border-color: var(--light-a6) !important;
}

.border-color-light-rgba-70 {
  border-color: var(--light-a7) !important;
}

.border-color-light-rgba-80 {
  border-color: var(--light-a8) !important;
}

.border-color-light-rgba-90 {
  border-color: var(--light-a9) !important;
}

.border-color-dark-a0 {
  border-color: var(--dark-a0) !important;
}

.border-color-dark-a1 {
  border-color: var(--dark-a1) !important;
}

.border-color-dark-a2 {
  border-color: var(--dark-a2) !important;
}

.border-color-dark-a3 {
  border-color: var(--dark-a3) !important;
}

.border-color-dark-a4 {
  border-color: var(--dark-a4) !important;
}

.border-color-dark-a5 {
  border-color: var(--dark-a5) !important;
}

.border-color-dark-a6 {
  border-color: var(--dark-a6) !important;
}

.border-color-dark-a7 {
  border-color: var(--dark-a7) !important;
}

.border-color-dark-a8 {
  border-color: var(--dark-a8) !important;
}

.border-color-dark-a9 {
  border-color: var(--dark-a9) !important;
}

.border-color-dark-a10 {
  border-color: var(--dark-a10) !important;
}

.border-color-dark-rgba-10 {
  border-color: var(--dark-a1) !important;
}

.border-color-dark-rgba-20 {
  border-color: var(--dark-a2) !important;
}

.border-color-dark-rgba-30 {
  border-color: var(--dark-a3) !important;
}

.border-color-dark-rgba-40 {
  border-color: var(--dark-a4) !important;
}

.border-color-dark-rgba-50 {
  border-color: var(--dark-a5) !important;
}

.border-color-dark-rgba-60 {
  border-color: var(--dark-a6) !important;
}

.border-color-dark-rgba-70 {
  border-color: var(--dark-a7) !important;
}

.border-color-dark-rgba-80 {
  border-color: var(--dark-a8) !important;
}

.border-color-dark-rgba-90 {
  border-color: var(--dark-a9) !important;
}

.border-color-red-a0 {
  border-color: rgba(220, 53, 69, 0) !important;
}

.border-color-red-a1 {
  border-color: rgba(220, 53, 69, 0.1) !important;
}

.border-color-red-a2 {
  border-color: rgba(220, 53, 69, 0.2) !important;
}

.border-color-red-a3 {
  border-color: rgba(220, 53, 69, 0.3) !important;
}

.border-color-red-a4 {
  border-color: rgba(220, 53, 69, 0.4) !important;
}

.border-color-red-a5 {
  border-color: rgba(220, 53, 69, 0.5) !important;
}

.border-color-red-a6 {
  border-color: rgba(220, 53, 69, 0.6) !important;
}

.border-color-red-a7 {
  border-color: rgba(220, 53, 69, 0.7) !important;
}

.border-color-red-a8 {
  border-color: rgba(220, 53, 69, 0.8) !important;
}

.border-color-red-a9 {
  border-color: rgba(220, 53, 69, 0.9) !important;
}

.border-color-red-a10 {
  border-color: #dc3545 !important;
}

.border-color-orange-a0 {
  border-color: rgba(247, 114, 22, 0) !important;
}

.border-color-orange-a1 {
  border-color: rgba(247, 114, 22, 0.1) !important;
}

.border-color-orange-a2 {
  border-color: rgba(247, 114, 22, 0.2) !important;
}

.border-color-orange-a3 {
  border-color: rgba(247, 114, 22, 0.3) !important;
}

.border-color-orange-a4 {
  border-color: rgba(247, 114, 22, 0.4) !important;
}

.border-color-orange-a5 {
  border-color: rgba(247, 114, 22, 0.5) !important;
}

.border-color-orange-a6 {
  border-color: rgba(247, 114, 22, 0.6) !important;
}

.border-color-orange-a7 {
  border-color: rgba(247, 114, 22, 0.7) !important;
}

.border-color-orange-a8 {
  border-color: rgba(247, 114, 22, 0.8) !important;
}

.border-color-orange-a9 {
  border-color: rgba(247, 114, 22, 0.9) !important;
}

.border-color-orange-a10 {
  border-color: #f77216 !important;
}

.border-color-amber-a0 {
  border-color: rgba(243, 157, 11, 0) !important;
}

.border-color-amber-a1 {
  border-color: rgba(243, 157, 11, 0.1) !important;
}

.border-color-amber-a2 {
  border-color: rgba(243, 157, 11, 0.2) !important;
}

.border-color-amber-a3 {
  border-color: rgba(243, 157, 11, 0.3) !important;
}

.border-color-amber-a4 {
  border-color: rgba(243, 157, 11, 0.4) !important;
}

.border-color-amber-a5 {
  border-color: rgba(243, 157, 11, 0.5) !important;
}

.border-color-amber-a6 {
  border-color: rgba(243, 157, 11, 0.6) !important;
}

.border-color-amber-a7 {
  border-color: rgba(243, 157, 11, 0.7) !important;
}

.border-color-amber-a8 {
  border-color: rgba(243, 157, 11, 0.8) !important;
}

.border-color-amber-a9 {
  border-color: rgba(243, 157, 11, 0.9) !important;
}

.border-color-amber-a10 {
  border-color: #f39d0b !important;
}

.border-color-yellow-a0 {
  border-color: rgba(243, 222, 9, 0) !important;
}

.border-color-yellow-a1 {
  border-color: rgba(243, 222, 9, 0.1) !important;
}

.border-color-yellow-a2 {
  border-color: rgba(243, 222, 9, 0.2) !important;
}

.border-color-yellow-a3 {
  border-color: rgba(243, 222, 9, 0.3) !important;
}

.border-color-yellow-a4 {
  border-color: rgba(243, 222, 9, 0.4) !important;
}

.border-color-yellow-a5 {
  border-color: rgba(243, 222, 9, 0.5) !important;
}

.border-color-yellow-a6 {
  border-color: rgba(243, 222, 9, 0.6) !important;
}

.border-color-yellow-a7 {
  border-color: rgba(243, 222, 9, 0.7) !important;
}

.border-color-yellow-a8 {
  border-color: rgba(243, 222, 9, 0.8) !important;
}

.border-color-yellow-a9 {
  border-color: rgba(243, 222, 9, 0.9) !important;
}

.border-color-yellow-a10 {
  border-color: #f3de09 !important;
}

.border-color-lime-a0 {
  border-color: rgba(126, 206, 37, 0) !important;
}

.border-color-lime-a1 {
  border-color: rgba(126, 206, 37, 0.1) !important;
}

.border-color-lime-a2 {
  border-color: rgba(126, 206, 37, 0.2) !important;
}

.border-color-lime-a3 {
  border-color: rgba(126, 206, 37, 0.3) !important;
}

.border-color-lime-a4 {
  border-color: rgba(126, 206, 37, 0.4) !important;
}

.border-color-lime-a5 {
  border-color: rgba(126, 206, 37, 0.5) !important;
}

.border-color-lime-a6 {
  border-color: rgba(126, 206, 37, 0.6) !important;
}

.border-color-lime-a7 {
  border-color: rgba(126, 206, 37, 0.7) !important;
}

.border-color-lime-a8 {
  border-color: rgba(126, 206, 37, 0.8) !important;
}

.border-color-lime-a9 {
  border-color: rgba(126, 206, 37, 0.9) !important;
}

.border-color-lime-a10 {
  border-color: #7ece25 !important;
}

.border-color-acid-a0 {
  border-color: rgba(185, 241, 15, 0) !important;
}

.border-color-acid-a1 {
  border-color: rgba(185, 241, 15, 0.1) !important;
}

.border-color-acid-a2 {
  border-color: rgba(185, 241, 15, 0.2) !important;
}

.border-color-acid-a3 {
  border-color: rgba(185, 241, 15, 0.3) !important;
}

.border-color-acid-a4 {
  border-color: rgba(185, 241, 15, 0.4) !important;
}

.border-color-acid-a5 {
  border-color: rgba(185, 241, 15, 0.5) !important;
}

.border-color-acid-a6 {
  border-color: rgba(185, 241, 15, 0.6) !important;
}

.border-color-acid-a7 {
  border-color: rgba(185, 241, 15, 0.7) !important;
}

.border-color-acid-a8 {
  border-color: rgba(185, 241, 15, 0.8) !important;
}

.border-color-acid-a9 {
  border-color: rgba(185, 241, 15, 0.9) !important;
}

.border-color-acid-a10 {
  border-color: #b9f10f !important;
}

.border-color-green-a0 {
  border-color: rgba(34, 197, 94, 0) !important;
}

.border-color-green-a1 {
  border-color: rgba(34, 197, 94, 0.1) !important;
}

.border-color-green-a2 {
  border-color: rgba(34, 197, 94, 0.2) !important;
}

.border-color-green-a3 {
  border-color: rgba(34, 197, 94, 0.3) !important;
}

.border-color-green-a4 {
  border-color: rgba(34, 197, 94, 0.4) !important;
}

.border-color-green-a5 {
  border-color: rgba(34, 197, 94, 0.5) !important;
}

.border-color-green-a6 {
  border-color: rgba(34, 197, 94, 0.6) !important;
}

.border-color-green-a7 {
  border-color: rgba(34, 197, 94, 0.7) !important;
}

.border-color-green-a8 {
  border-color: rgba(34, 197, 94, 0.8) !important;
}

.border-color-green-a9 {
  border-color: rgba(34, 197, 94, 0.9) !important;
}

.border-color-green-a10 {
  border-color: #22c55e !important;
}

.border-color-emerald-a0 {
  border-color: rgba(16, 185, 129, 0) !important;
}

.border-color-emerald-a1 {
  border-color: rgba(16, 185, 129, 0.1) !important;
}

.border-color-emerald-a2 {
  border-color: rgba(16, 185, 129, 0.2) !important;
}

.border-color-emerald-a3 {
  border-color: rgba(16, 185, 129, 0.3) !important;
}

.border-color-emerald-a4 {
  border-color: rgba(16, 185, 129, 0.4) !important;
}

.border-color-emerald-a5 {
  border-color: rgba(16, 185, 129, 0.5) !important;
}

.border-color-emerald-a6 {
  border-color: rgba(16, 185, 129, 0.6) !important;
}

.border-color-emerald-a7 {
  border-color: rgba(16, 185, 129, 0.7) !important;
}

.border-color-emerald-a8 {
  border-color: rgba(16, 185, 129, 0.8) !important;
}

.border-color-emerald-a9 {
  border-color: rgba(16, 185, 129, 0.9) !important;
}

.border-color-emerald-a10 {
  border-color: #10b981 !important;
}

.border-color-teal-a0 {
  border-color: rgba(20, 184, 166, 0) !important;
}

.border-color-teal-a1 {
  border-color: rgba(20, 184, 166, 0.1) !important;
}

.border-color-teal-a2 {
  border-color: rgba(20, 184, 166, 0.2) !important;
}

.border-color-teal-a3 {
  border-color: rgba(20, 184, 166, 0.3) !important;
}

.border-color-teal-a4 {
  border-color: rgba(20, 184, 166, 0.4) !important;
}

.border-color-teal-a5 {
  border-color: rgba(20, 184, 166, 0.5) !important;
}

.border-color-teal-a6 {
  border-color: rgba(20, 184, 166, 0.6) !important;
}

.border-color-teal-a7 {
  border-color: rgba(20, 184, 166, 0.7) !important;
}

.border-color-teal-a8 {
  border-color: rgba(20, 184, 166, 0.8) !important;
}

.border-color-teal-a9 {
  border-color: rgba(20, 184, 166, 0.9) !important;
}

.border-color-teal-a10 {
  border-color: #14b8a6 !important;
}

.border-color-cyan-a0 {
  border-color: rgba(6, 182, 212, 0) !important;
}

.border-color-cyan-a1 {
  border-color: rgba(6, 182, 212, 0.1) !important;
}

.border-color-cyan-a2 {
  border-color: rgba(6, 182, 212, 0.2) !important;
}

.border-color-cyan-a3 {
  border-color: rgba(6, 182, 212, 0.3) !important;
}

.border-color-cyan-a4 {
  border-color: rgba(6, 182, 212, 0.4) !important;
}

.border-color-cyan-a5 {
  border-color: rgba(6, 182, 212, 0.5) !important;
}

.border-color-cyan-a6 {
  border-color: rgba(6, 182, 212, 0.6) !important;
}

.border-color-cyan-a7 {
  border-color: rgba(6, 182, 212, 0.7) !important;
}

.border-color-cyan-a8 {
  border-color: rgba(6, 182, 212, 0.8) !important;
}

.border-color-cyan-a9 {
  border-color: rgba(6, 182, 212, 0.9) !important;
}

.border-color-cyan-a10 {
  border-color: #06b6d4 !important;
}

.border-color-sky-a0 {
  border-color: rgba(14, 165, 233, 0) !important;
}

.border-color-sky-a1 {
  border-color: rgba(14, 165, 233, 0.1) !important;
}

.border-color-sky-a2 {
  border-color: rgba(14, 165, 233, 0.2) !important;
}

.border-color-sky-a3 {
  border-color: rgba(14, 165, 233, 0.3) !important;
}

.border-color-sky-a4 {
  border-color: rgba(14, 165, 233, 0.4) !important;
}

.border-color-sky-a5 {
  border-color: rgba(14, 165, 233, 0.5) !important;
}

.border-color-sky-a6 {
  border-color: rgba(14, 165, 233, 0.6) !important;
}

.border-color-sky-a7 {
  border-color: rgba(14, 165, 233, 0.7) !important;
}

.border-color-sky-a8 {
  border-color: rgba(14, 165, 233, 0.8) !important;
}

.border-color-sky-a9 {
  border-color: rgba(14, 165, 233, 0.9) !important;
}

.border-color-sky-a10 {
  border-color: #0ea5e9 !important;
}

.border-color-blue-a0 {
  border-color: rgba(59, 130, 246, 0) !important;
}

.border-color-blue-a1 {
  border-color: rgba(59, 130, 246, 0.1) !important;
}

.border-color-blue-a2 {
  border-color: rgba(59, 130, 246, 0.2) !important;
}

.border-color-blue-a3 {
  border-color: rgba(59, 130, 246, 0.3) !important;
}

.border-color-blue-a4 {
  border-color: rgba(59, 130, 246, 0.4) !important;
}

.border-color-blue-a5 {
  border-color: rgba(59, 130, 246, 0.5) !important;
}

.border-color-blue-a6 {
  border-color: rgba(59, 130, 246, 0.6) !important;
}

.border-color-blue-a7 {
  border-color: rgba(59, 130, 246, 0.7) !important;
}

.border-color-blue-a8 {
  border-color: rgba(59, 130, 246, 0.8) !important;
}

.border-color-blue-a9 {
  border-color: rgba(59, 130, 246, 0.9) !important;
}

.border-color-blue-a10 {
  border-color: #3b82f6 !important;
}

.border-color-indigo-a0 {
  border-color: rgba(99, 102, 241, 0) !important;
}

.border-color-indigo-a1 {
  border-color: rgba(99, 102, 241, 0.1) !important;
}

.border-color-indigo-a2 {
  border-color: rgba(99, 102, 241, 0.2) !important;
}

.border-color-indigo-a3 {
  border-color: rgba(99, 102, 241, 0.3) !important;
}

.border-color-indigo-a4 {
  border-color: rgba(99, 102, 241, 0.4) !important;
}

.border-color-indigo-a5 {
  border-color: rgba(99, 102, 241, 0.5) !important;
}

.border-color-indigo-a6 {
  border-color: rgba(99, 102, 241, 0.6) !important;
}

.border-color-indigo-a7 {
  border-color: rgba(99, 102, 241, 0.7) !important;
}

.border-color-indigo-a8 {
  border-color: rgba(99, 102, 241, 0.8) !important;
}

.border-color-indigo-a9 {
  border-color: rgba(99, 102, 241, 0.9) !important;
}

.border-color-indigo-a10 {
  border-color: #6366f1 !important;
}

.border-color-violet-a0 {
  border-color: rgba(139, 92, 246, 0) !important;
}

.border-color-violet-a1 {
  border-color: rgba(139, 92, 246, 0.1) !important;
}

.border-color-violet-a2 {
  border-color: rgba(139, 92, 246, 0.2) !important;
}

.border-color-violet-a3 {
  border-color: rgba(139, 92, 246, 0.3) !important;
}

.border-color-violet-a4 {
  border-color: rgba(139, 92, 246, 0.4) !important;
}

.border-color-violet-a5 {
  border-color: rgba(139, 92, 246, 0.5) !important;
}

.border-color-violet-a6 {
  border-color: rgba(139, 92, 246, 0.6) !important;
}

.border-color-violet-a7 {
  border-color: rgba(139, 92, 246, 0.7) !important;
}

.border-color-violet-a8 {
  border-color: rgba(139, 92, 246, 0.8) !important;
}

.border-color-violet-a9 {
  border-color: rgba(139, 92, 246, 0.9) !important;
}

.border-color-violet-a10 {
  border-color: #8b5cf6 !important;
}

.border-color-purple-a0 {
  border-color: rgba(168, 85, 247, 0) !important;
}

.border-color-purple-a1 {
  border-color: rgba(168, 85, 247, 0.1) !important;
}

.border-color-purple-a2 {
  border-color: rgba(168, 85, 247, 0.2) !important;
}

.border-color-purple-a3 {
  border-color: rgba(168, 85, 247, 0.3) !important;
}

.border-color-purple-a4 {
  border-color: rgba(168, 85, 247, 0.4) !important;
}

.border-color-purple-a5 {
  border-color: rgba(168, 85, 247, 0.5) !important;
}

.border-color-purple-a6 {
  border-color: rgba(168, 85, 247, 0.6) !important;
}

.border-color-purple-a7 {
  border-color: rgba(168, 85, 247, 0.7) !important;
}

.border-color-purple-a8 {
  border-color: rgba(168, 85, 247, 0.8) !important;
}

.border-color-purple-a9 {
  border-color: rgba(168, 85, 247, 0.9) !important;
}

.border-color-purple-a10 {
  border-color: #a855f7 !important;
}

.border-color-pink-a0 {
  border-color: rgba(251, 6, 128, 0) !important;
}

.border-color-pink-a1 {
  border-color: rgba(251, 6, 128, 0.1) !important;
}

.border-color-pink-a2 {
  border-color: rgba(251, 6, 128, 0.2) !important;
}

.border-color-pink-a3 {
  border-color: rgba(251, 6, 128, 0.3) !important;
}

.border-color-pink-a4 {
  border-color: rgba(251, 6, 128, 0.4) !important;
}

.border-color-pink-a5 {
  border-color: rgba(251, 6, 128, 0.5) !important;
}

.border-color-pink-a6 {
  border-color: rgba(251, 6, 128, 0.6) !important;
}

.border-color-pink-a7 {
  border-color: rgba(251, 6, 128, 0.7) !important;
}

.border-color-pink-a8 {
  border-color: rgba(251, 6, 128, 0.8) !important;
}

.border-color-pink-a9 {
  border-color: rgba(251, 6, 128, 0.9) !important;
}

.border-color-pink-a10 {
  border-color: #fb0680 !important;
}

.border-color-rose-a0 {
  border-color: rgba(244, 48, 80, 0) !important;
}

.border-color-rose-a1 {
  border-color: rgba(244, 48, 80, 0.1) !important;
}

.border-color-rose-a2 {
  border-color: rgba(244, 48, 80, 0.2) !important;
}

.border-color-rose-a3 {
  border-color: rgba(244, 48, 80, 0.3) !important;
}

.border-color-rose-a4 {
  border-color: rgba(244, 48, 80, 0.4) !important;
}

.border-color-rose-a5 {
  border-color: rgba(244, 48, 80, 0.5) !important;
}

.border-color-rose-a6 {
  border-color: rgba(244, 48, 80, 0.6) !important;
}

.border-color-rose-a7 {
  border-color: rgba(244, 48, 80, 0.7) !important;
}

.border-color-rose-a8 {
  border-color: rgba(244, 48, 80, 0.8) !important;
}

.border-color-rose-a9 {
  border-color: rgba(244, 48, 80, 0.9) !important;
}

.border-color-rose-a10 {
  border-color: #f43050 !important;
}

.border-color-white-a1,
.border-color-light-rgba-10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.border-color-white-a2,
.border-color-light-rgba-20 {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.border-color-white-a3,
.border-color-light-rgba-30 {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.border-color-white-a5,
.border-color-light-rgba-50 {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.border-color-black-a1,
.border-color-dark-rgba-10 {
  border-color: rgba(0, 0, 0, 0.1) !important;
}

.border-color-black-a2,
.border-color-dark-rgba-20 {
  border-color: rgba(0, 0, 0, 0.2) !important;
}

.border-color-black-a3,
.border-color-dark-rgba-30 {
  border-color: rgba(0, 0, 0, 0.3) !important;
}

.border-color-black-a5,
.border-color-dark-rgba-50 {
  border-color: rgba(0, 0, 0, 0.5) !important;
}

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

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

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

.top-50pct {
  top: 50%;
}

.left-50pct {
  left: 50%;
}

.left-100pct {
  left: 100%;
}

.right-100pct {
  right: 100%;
}

.transform3dxy-n50 {
  transform: translate3d(-50%, -50%, 0);
}

.transform3dx-n50 {
  transform: translate3d(-50%, 0, 0);
}

.transform3dy-n50 {
  transform: translate3d(0, -50%, 0);
}

.transform3dx-n100 {
  transform: translate3d(-100%, 0, 0);
}

.transition-1ms {
  transition: all 0.1s ease-in-out;
}

.transition-2ms {
  transition: all 0.2s ease-in-out;
}

.transition-3ms {
  transition: all 0.3s ease-in-out;
}

.transition-4ms {
  transition: all 0.4s ease-in-out;
}

.transition-5ms {
  transition: all 0.5s ease-in-out;
}

.text-color-hover-primary:hover,
.text-hover-primary:hover {
  color: var(--primary) !important;
}

.text-color-hover-secondary:hover,
.text-hover-secondary:hover {
  color: var(--secondary) !important;
}

.text-color-hover-tertiary:hover,
.text-hover-tertiary:hover {
  color: var(--tertiary) !important;
}

.text-color-hover-quaternary:hover,
.text-hover-quaternary:hover {
  color: var(--quaternary) !important;
}

.text-color-hover-success:hover,
.text-hover-success:hover {
  color: var(--success) !important;
}

.text-color-hover-info:hover,
.text-hover-info:hover {
  color: var(--info) !important;
}

.text-color-hover-warning:hover,
.text-hover-warning:hover {
  color: var(--warning) !important;
}

.text-color-hover-danger:hover,
.text-hover-danger:hover {
  color: var(--danger) !important;
}

.text-color-hover-light:hover,
.text-hover-light:hover {
  color: var(--light) !important;
}

.text-color-hover-dark:hover,
.text-hover-dark:hover {
  color: var(--dark) !important;
}

.text-color-hover-red:hover,
.text-hover-red:hover {
  color: var(--color-red) !important;
}

.text-color-hover-orange:hover,
.text-hover-orange:hover {
  color: var(--color-orange) !important;
}

.text-color-hover-amber:hover,
.text-hover-amber:hover {
  color: var(--color-amber) !important;
}

.text-color-hover-yellow:hover,
.text-hover-yellow:hover {
  color: var(--color-yellow) !important;
}

.text-color-hover-lime:hover,
.text-hover-lime:hover {
  color: var(--color-lime) !important;
}

.text-color-hover-acid:hover,
.text-hover-acid:hover {
  color: var(--color-acid) !important;
}

.text-color-hover-green:hover,
.text-hover-green:hover {
  color: var(--color-green) !important;
}

.text-color-hover-emerald:hover,
.text-hover-emerald:hover {
  color: var(--color-emerald) !important;
}

.text-color-hover-teal:hover,
.text-hover-teal:hover {
  color: var(--color-teal) !important;
}

.text-color-hover-cyan:hover,
.text-hover-cyan:hover {
  color: var(--color-cyan) !important;
}

.text-color-hover-sky:hover,
.text-hover-sky:hover {
  color: var(--color-sky) !important;
}

.text-color-hover-blue:hover,
.text-hover-blue:hover {
  color: var(--color-blue) !important;
}

.text-color-hover-indigo:hover,
.text-hover-indigo:hover {
  color: var(--color-indigo) !important;
}

.text-color-hover-violet:hover,
.text-hover-violet:hover {
  color: var(--color-violet) !important;
}

.text-color-hover-purple:hover,
.text-hover-purple:hover {
  color: var(--color-purple) !important;
}

.text-color-hover-pink:hover,
.text-hover-pink:hover {
  color: var(--color-pink) !important;
}

.text-color-hover-rose:hover,
.text-hover-rose:hover {
  color: var(--color-rose) !important;
}

.bg-color-primary {
  background-color: var(--primary) !important;
}

.bg-color-secondary {
  background-color: var(--secondary) !important;
}

.bg-color-tertiary {
  background-color: var(--tertiary) !important;
}

.bg-color-quaternary {
  background-color: var(--quaternary) !important;
}

.bg-color-success {
  background-color: var(--success) !important;
}

.bg-color-info {
  background-color: var(--info) !important;
}

.bg-color-warning {
  background-color: var(--warning) !important;
}

.bg-color-danger {
  background-color: var(--danger) !important;
}

.bg-color-light {
  background-color: var(--light) !important;
}

.bg-color-dark {
  background-color: var(--dark) !important;
}

.bg-color-red {
  background-color: var(--color-red) !important;
}

.bg-color-orange {
  background-color: var(--color-orange) !important;
}

.bg-color-amber {
  background-color: var(--color-amber) !important;
}

.bg-color-yellow {
  background-color: var(--color-yellow) !important;
}

.bg-color-lime {
  background-color: var(--color-lime) !important;
}

.bg-color-acid {
  background-color: var(--color-acid) !important;
}

.bg-color-green {
  background-color: var(--color-green) !important;
}

.bg-color-emerald {
  background-color: var(--color-emerald) !important;
}

.bg-color-teal {
  background-color: var(--color-teal) !important;
}

.bg-color-cyan {
  background-color: var(--color-cyan) !important;
}

.bg-color-sky {
  background-color: var(--color-sky) !important;
}

.bg-color-blue {
  background-color: var(--color-blue) !important;
}

.bg-color-indigo {
  background-color: var(--color-indigo) !important;
}

.bg-color-violet {
  background-color: var(--color-violet) !important;
}

.bg-color-purple {
  background-color: var(--color-purple) !important;
}

.bg-color-pink {
  background-color: var(--color-pink) !important;
}

.bg-color-rose {
  background-color: var(--color-rose) !important;
}

@keyframes upDownInfinite {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
.anim-up-down-infinite {
  animation: upDownInfinite 1200ms ease infinite;
}

@keyframes leftRightInfinite {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
  100% {
    transform: translateX(0);
  }
}
.anim-left-right-infinite {
  animation: leftRightInfinite 1200ms ease infinite;
}

@keyframes pulseInfinite {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.anim-pulse-infinite {
  animation: pulseInfinite 1500ms ease infinite;
}

.bg-color-primary-a0,
.bg-primary-a0 {
  background-color: var(--primary-a0) !important;
}

.bg-color-primary-a1,
.bg-primary-a1 {
  background-color: var(--primary-a1) !important;
}

.bg-color-primary-a2,
.bg-primary-a2 {
  background-color: var(--primary-a2) !important;
}

.bg-color-primary-a3,
.bg-primary-a3 {
  background-color: var(--primary-a3) !important;
}

.bg-color-primary-a4,
.bg-primary-a4 {
  background-color: var(--primary-a4) !important;
}

.bg-color-primary-a5,
.bg-primary-a5 {
  background-color: var(--primary-a5) !important;
}

.bg-color-primary-a6,
.bg-primary-a6 {
  background-color: var(--primary-a6) !important;
}

.bg-color-primary-a7,
.bg-primary-a7 {
  background-color: var(--primary-a7) !important;
}

.bg-color-primary-a8,
.bg-primary-a8 {
  background-color: var(--primary-a8) !important;
}

.bg-color-primary-a9,
.bg-primary-a9 {
  background-color: var(--primary-a9) !important;
}

.bg-color-primary-a10,
.bg-primary-a10 {
  background-color: var(--primary-a10) !important;
}

.bg-color-primary-rgba-10 {
  background-color: var(--primary-a1) !important;
}

.bg-color-primary-rgba-20 {
  background-color: var(--primary-a2) !important;
}

.bg-color-primary-rgba-30 {
  background-color: var(--primary-a3) !important;
}

.bg-color-primary-rgba-40 {
  background-color: var(--primary-a4) !important;
}

.bg-color-primary-rgba-50 {
  background-color: var(--primary-a5) !important;
}

.bg-color-primary-rgba-60 {
  background-color: var(--primary-a6) !important;
}

.bg-color-primary-rgba-70 {
  background-color: var(--primary-a7) !important;
}

.bg-color-primary-rgba-80 {
  background-color: var(--primary-a8) !important;
}

.bg-color-primary-rgba-90 {
  background-color: var(--primary-a9) !important;
}

.bg-color-secondary-a0,
.bg-secondary-a0 {
  background-color: var(--secondary-a0) !important;
}

.bg-color-secondary-a1,
.bg-secondary-a1 {
  background-color: var(--secondary-a1) !important;
}

.bg-color-secondary-a2,
.bg-secondary-a2 {
  background-color: var(--secondary-a2) !important;
}

.bg-color-secondary-a3,
.bg-secondary-a3 {
  background-color: var(--secondary-a3) !important;
}

.bg-color-secondary-a4,
.bg-secondary-a4 {
  background-color: var(--secondary-a4) !important;
}

.bg-color-secondary-a5,
.bg-secondary-a5 {
  background-color: var(--secondary-a5) !important;
}

.bg-color-secondary-a6,
.bg-secondary-a6 {
  background-color: var(--secondary-a6) !important;
}

.bg-color-secondary-a7,
.bg-secondary-a7 {
  background-color: var(--secondary-a7) !important;
}

.bg-color-secondary-a8,
.bg-secondary-a8 {
  background-color: var(--secondary-a8) !important;
}

.bg-color-secondary-a9,
.bg-secondary-a9 {
  background-color: var(--secondary-a9) !important;
}

.bg-color-secondary-a10,
.bg-secondary-a10 {
  background-color: var(--secondary-a10) !important;
}

.bg-color-secondary-rgba-10 {
  background-color: var(--secondary-a1) !important;
}

.bg-color-secondary-rgba-20 {
  background-color: var(--secondary-a2) !important;
}

.bg-color-secondary-rgba-30 {
  background-color: var(--secondary-a3) !important;
}

.bg-color-secondary-rgba-40 {
  background-color: var(--secondary-a4) !important;
}

.bg-color-secondary-rgba-50 {
  background-color: var(--secondary-a5) !important;
}

.bg-color-secondary-rgba-60 {
  background-color: var(--secondary-a6) !important;
}

.bg-color-secondary-rgba-70 {
  background-color: var(--secondary-a7) !important;
}

.bg-color-secondary-rgba-80 {
  background-color: var(--secondary-a8) !important;
}

.bg-color-secondary-rgba-90 {
  background-color: var(--secondary-a9) !important;
}

.bg-color-tertiary-a0,
.bg-tertiary-a0 {
  background-color: var(--tertiary-a0) !important;
}

.bg-color-tertiary-a1,
.bg-tertiary-a1 {
  background-color: var(--tertiary-a1) !important;
}

.bg-color-tertiary-a2,
.bg-tertiary-a2 {
  background-color: var(--tertiary-a2) !important;
}

.bg-color-tertiary-a3,
.bg-tertiary-a3 {
  background-color: var(--tertiary-a3) !important;
}

.bg-color-tertiary-a4,
.bg-tertiary-a4 {
  background-color: var(--tertiary-a4) !important;
}

.bg-color-tertiary-a5,
.bg-tertiary-a5 {
  background-color: var(--tertiary-a5) !important;
}

.bg-color-tertiary-a6,
.bg-tertiary-a6 {
  background-color: var(--tertiary-a6) !important;
}

.bg-color-tertiary-a7,
.bg-tertiary-a7 {
  background-color: var(--tertiary-a7) !important;
}

.bg-color-tertiary-a8,
.bg-tertiary-a8 {
  background-color: var(--tertiary-a8) !important;
}

.bg-color-tertiary-a9,
.bg-tertiary-a9 {
  background-color: var(--tertiary-a9) !important;
}

.bg-color-tertiary-a10,
.bg-tertiary-a10 {
  background-color: var(--tertiary-a10) !important;
}

.bg-color-tertiary-rgba-10 {
  background-color: var(--tertiary-a1) !important;
}

.bg-color-tertiary-rgba-20 {
  background-color: var(--tertiary-a2) !important;
}

.bg-color-tertiary-rgba-30 {
  background-color: var(--tertiary-a3) !important;
}

.bg-color-tertiary-rgba-40 {
  background-color: var(--tertiary-a4) !important;
}

.bg-color-tertiary-rgba-50 {
  background-color: var(--tertiary-a5) !important;
}

.bg-color-tertiary-rgba-60 {
  background-color: var(--tertiary-a6) !important;
}

.bg-color-tertiary-rgba-70 {
  background-color: var(--tertiary-a7) !important;
}

.bg-color-tertiary-rgba-80 {
  background-color: var(--tertiary-a8) !important;
}

.bg-color-tertiary-rgba-90 {
  background-color: var(--tertiary-a9) !important;
}

.bg-color-quaternary-a0,
.bg-quaternary-a0 {
  background-color: var(--quaternary-a0) !important;
}

.bg-color-quaternary-a1,
.bg-quaternary-a1 {
  background-color: var(--quaternary-a1) !important;
}

.bg-color-quaternary-a2,
.bg-quaternary-a2 {
  background-color: var(--quaternary-a2) !important;
}

.bg-color-quaternary-a3,
.bg-quaternary-a3 {
  background-color: var(--quaternary-a3) !important;
}

.bg-color-quaternary-a4,
.bg-quaternary-a4 {
  background-color: var(--quaternary-a4) !important;
}

.bg-color-quaternary-a5,
.bg-quaternary-a5 {
  background-color: var(--quaternary-a5) !important;
}

.bg-color-quaternary-a6,
.bg-quaternary-a6 {
  background-color: var(--quaternary-a6) !important;
}

.bg-color-quaternary-a7,
.bg-quaternary-a7 {
  background-color: var(--quaternary-a7) !important;
}

.bg-color-quaternary-a8,
.bg-quaternary-a8 {
  background-color: var(--quaternary-a8) !important;
}

.bg-color-quaternary-a9,
.bg-quaternary-a9 {
  background-color: var(--quaternary-a9) !important;
}

.bg-color-quaternary-a10,
.bg-quaternary-a10 {
  background-color: var(--quaternary-a10) !important;
}

.bg-color-quaternary-rgba-10 {
  background-color: var(--quaternary-a1) !important;
}

.bg-color-quaternary-rgba-20 {
  background-color: var(--quaternary-a2) !important;
}

.bg-color-quaternary-rgba-30 {
  background-color: var(--quaternary-a3) !important;
}

.bg-color-quaternary-rgba-40 {
  background-color: var(--quaternary-a4) !important;
}

.bg-color-quaternary-rgba-50 {
  background-color: var(--quaternary-a5) !important;
}

.bg-color-quaternary-rgba-60 {
  background-color: var(--quaternary-a6) !important;
}

.bg-color-quaternary-rgba-70 {
  background-color: var(--quaternary-a7) !important;
}

.bg-color-quaternary-rgba-80 {
  background-color: var(--quaternary-a8) !important;
}

.bg-color-quaternary-rgba-90 {
  background-color: var(--quaternary-a9) !important;
}

.bg-color-success-a0,
.bg-success-a0 {
  background-color: var(--success-a0) !important;
}

.bg-color-success-a1,
.bg-success-a1 {
  background-color: var(--success-a1) !important;
}

.bg-color-success-a2,
.bg-success-a2 {
  background-color: var(--success-a2) !important;
}

.bg-color-success-a3,
.bg-success-a3 {
  background-color: var(--success-a3) !important;
}

.bg-color-success-a4,
.bg-success-a4 {
  background-color: var(--success-a4) !important;
}

.bg-color-success-a5,
.bg-success-a5 {
  background-color: var(--success-a5) !important;
}

.bg-color-success-a6,
.bg-success-a6 {
  background-color: var(--success-a6) !important;
}

.bg-color-success-a7,
.bg-success-a7 {
  background-color: var(--success-a7) !important;
}

.bg-color-success-a8,
.bg-success-a8 {
  background-color: var(--success-a8) !important;
}

.bg-color-success-a9,
.bg-success-a9 {
  background-color: var(--success-a9) !important;
}

.bg-color-success-a10,
.bg-success-a10 {
  background-color: var(--success-a10) !important;
}

.bg-color-success-rgba-10 {
  background-color: var(--success-a1) !important;
}

.bg-color-success-rgba-20 {
  background-color: var(--success-a2) !important;
}

.bg-color-success-rgba-30 {
  background-color: var(--success-a3) !important;
}

.bg-color-success-rgba-40 {
  background-color: var(--success-a4) !important;
}

.bg-color-success-rgba-50 {
  background-color: var(--success-a5) !important;
}

.bg-color-success-rgba-60 {
  background-color: var(--success-a6) !important;
}

.bg-color-success-rgba-70 {
  background-color: var(--success-a7) !important;
}

.bg-color-success-rgba-80 {
  background-color: var(--success-a8) !important;
}

.bg-color-success-rgba-90 {
  background-color: var(--success-a9) !important;
}

.bg-color-info-a0,
.bg-info-a0 {
  background-color: var(--info-a0) !important;
}

.bg-color-info-a1,
.bg-info-a1 {
  background-color: var(--info-a1) !important;
}

.bg-color-info-a2,
.bg-info-a2 {
  background-color: var(--info-a2) !important;
}

.bg-color-info-a3,
.bg-info-a3 {
  background-color: var(--info-a3) !important;
}

.bg-color-info-a4,
.bg-info-a4 {
  background-color: var(--info-a4) !important;
}

.bg-color-info-a5,
.bg-info-a5 {
  background-color: var(--info-a5) !important;
}

.bg-color-info-a6,
.bg-info-a6 {
  background-color: var(--info-a6) !important;
}

.bg-color-info-a7,
.bg-info-a7 {
  background-color: var(--info-a7) !important;
}

.bg-color-info-a8,
.bg-info-a8 {
  background-color: var(--info-a8) !important;
}

.bg-color-info-a9,
.bg-info-a9 {
  background-color: var(--info-a9) !important;
}

.bg-color-info-a10,
.bg-info-a10 {
  background-color: var(--info-a10) !important;
}

.bg-color-info-rgba-10 {
  background-color: var(--info-a1) !important;
}

.bg-color-info-rgba-20 {
  background-color: var(--info-a2) !important;
}

.bg-color-info-rgba-30 {
  background-color: var(--info-a3) !important;
}

.bg-color-info-rgba-40 {
  background-color: var(--info-a4) !important;
}

.bg-color-info-rgba-50 {
  background-color: var(--info-a5) !important;
}

.bg-color-info-rgba-60 {
  background-color: var(--info-a6) !important;
}

.bg-color-info-rgba-70 {
  background-color: var(--info-a7) !important;
}

.bg-color-info-rgba-80 {
  background-color: var(--info-a8) !important;
}

.bg-color-info-rgba-90 {
  background-color: var(--info-a9) !important;
}

.bg-color-warning-a0,
.bg-warning-a0 {
  background-color: var(--warning-a0) !important;
}

.bg-color-warning-a1,
.bg-warning-a1 {
  background-color: var(--warning-a1) !important;
}

.bg-color-warning-a2,
.bg-warning-a2 {
  background-color: var(--warning-a2) !important;
}

.bg-color-warning-a3,
.bg-warning-a3 {
  background-color: var(--warning-a3) !important;
}

.bg-color-warning-a4,
.bg-warning-a4 {
  background-color: var(--warning-a4) !important;
}

.bg-color-warning-a5,
.bg-warning-a5 {
  background-color: var(--warning-a5) !important;
}

.bg-color-warning-a6,
.bg-warning-a6 {
  background-color: var(--warning-a6) !important;
}

.bg-color-warning-a7,
.bg-warning-a7 {
  background-color: var(--warning-a7) !important;
}

.bg-color-warning-a8,
.bg-warning-a8 {
  background-color: var(--warning-a8) !important;
}

.bg-color-warning-a9,
.bg-warning-a9 {
  background-color: var(--warning-a9) !important;
}

.bg-color-warning-a10,
.bg-warning-a10 {
  background-color: var(--warning-a10) !important;
}

.bg-color-warning-rgba-10 {
  background-color: var(--warning-a1) !important;
}

.bg-color-warning-rgba-20 {
  background-color: var(--warning-a2) !important;
}

.bg-color-warning-rgba-30 {
  background-color: var(--warning-a3) !important;
}

.bg-color-warning-rgba-40 {
  background-color: var(--warning-a4) !important;
}

.bg-color-warning-rgba-50 {
  background-color: var(--warning-a5) !important;
}

.bg-color-warning-rgba-60 {
  background-color: var(--warning-a6) !important;
}

.bg-color-warning-rgba-70 {
  background-color: var(--warning-a7) !important;
}

.bg-color-warning-rgba-80 {
  background-color: var(--warning-a8) !important;
}

.bg-color-warning-rgba-90 {
  background-color: var(--warning-a9) !important;
}

.bg-color-danger-a0,
.bg-danger-a0 {
  background-color: var(--danger-a0) !important;
}

.bg-color-danger-a1,
.bg-danger-a1 {
  background-color: var(--danger-a1) !important;
}

.bg-color-danger-a2,
.bg-danger-a2 {
  background-color: var(--danger-a2) !important;
}

.bg-color-danger-a3,
.bg-danger-a3 {
  background-color: var(--danger-a3) !important;
}

.bg-color-danger-a4,
.bg-danger-a4 {
  background-color: var(--danger-a4) !important;
}

.bg-color-danger-a5,
.bg-danger-a5 {
  background-color: var(--danger-a5) !important;
}

.bg-color-danger-a6,
.bg-danger-a6 {
  background-color: var(--danger-a6) !important;
}

.bg-color-danger-a7,
.bg-danger-a7 {
  background-color: var(--danger-a7) !important;
}

.bg-color-danger-a8,
.bg-danger-a8 {
  background-color: var(--danger-a8) !important;
}

.bg-color-danger-a9,
.bg-danger-a9 {
  background-color: var(--danger-a9) !important;
}

.bg-color-danger-a10,
.bg-danger-a10 {
  background-color: var(--danger-a10) !important;
}

.bg-color-danger-rgba-10 {
  background-color: var(--danger-a1) !important;
}

.bg-color-danger-rgba-20 {
  background-color: var(--danger-a2) !important;
}

.bg-color-danger-rgba-30 {
  background-color: var(--danger-a3) !important;
}

.bg-color-danger-rgba-40 {
  background-color: var(--danger-a4) !important;
}

.bg-color-danger-rgba-50 {
  background-color: var(--danger-a5) !important;
}

.bg-color-danger-rgba-60 {
  background-color: var(--danger-a6) !important;
}

.bg-color-danger-rgba-70 {
  background-color: var(--danger-a7) !important;
}

.bg-color-danger-rgba-80 {
  background-color: var(--danger-a8) !important;
}

.bg-color-danger-rgba-90 {
  background-color: var(--danger-a9) !important;
}

.bg-color-light-a0,
.bg-light-a0 {
  background-color: var(--light-a0) !important;
}

.bg-color-light-a1,
.bg-light-a1 {
  background-color: var(--light-a1) !important;
}

.bg-color-light-a2,
.bg-light-a2 {
  background-color: var(--light-a2) !important;
}

.bg-color-light-a3,
.bg-light-a3 {
  background-color: var(--light-a3) !important;
}

.bg-color-light-a4,
.bg-light-a4 {
  background-color: var(--light-a4) !important;
}

.bg-color-light-a5,
.bg-light-a5 {
  background-color: var(--light-a5) !important;
}

.bg-color-light-a6,
.bg-light-a6 {
  background-color: var(--light-a6) !important;
}

.bg-color-light-a7,
.bg-light-a7 {
  background-color: var(--light-a7) !important;
}

.bg-color-light-a8,
.bg-light-a8 {
  background-color: var(--light-a8) !important;
}

.bg-color-light-a9,
.bg-light-a9 {
  background-color: var(--light-a9) !important;
}

.bg-color-light-a10,
.bg-light-a10 {
  background-color: var(--light-a10) !important;
}

.bg-color-light-rgba-10 {
  background-color: var(--light-a1) !important;
}

.bg-color-light-rgba-20 {
  background-color: var(--light-a2) !important;
}

.bg-color-light-rgba-30 {
  background-color: var(--light-a3) !important;
}

.bg-color-light-rgba-40 {
  background-color: var(--light-a4) !important;
}

.bg-color-light-rgba-50 {
  background-color: var(--light-a5) !important;
}

.bg-color-light-rgba-60 {
  background-color: var(--light-a6) !important;
}

.bg-color-light-rgba-70 {
  background-color: var(--light-a7) !important;
}

.bg-color-light-rgba-80 {
  background-color: var(--light-a8) !important;
}

.bg-color-light-rgba-90 {
  background-color: var(--light-a9) !important;
}

.bg-color-dark-a0,
.bg-dark-a0 {
  background-color: var(--dark-a0) !important;
}

.bg-color-dark-a1,
.bg-dark-a1 {
  background-color: var(--dark-a1) !important;
}

.bg-color-dark-a2,
.bg-dark-a2 {
  background-color: var(--dark-a2) !important;
}

.bg-color-dark-a3,
.bg-dark-a3 {
  background-color: var(--dark-a3) !important;
}

.bg-color-dark-a4,
.bg-dark-a4 {
  background-color: var(--dark-a4) !important;
}

.bg-color-dark-a5,
.bg-dark-a5 {
  background-color: var(--dark-a5) !important;
}

.bg-color-dark-a6,
.bg-dark-a6 {
  background-color: var(--dark-a6) !important;
}

.bg-color-dark-a7,
.bg-dark-a7 {
  background-color: var(--dark-a7) !important;
}

.bg-color-dark-a8,
.bg-dark-a8 {
  background-color: var(--dark-a8) !important;
}

.bg-color-dark-a9,
.bg-dark-a9 {
  background-color: var(--dark-a9) !important;
}

.bg-color-dark-a10,
.bg-dark-a10 {
  background-color: var(--dark-a10) !important;
}

.bg-color-dark-rgba-10 {
  background-color: var(--dark-a1) !important;
}

.bg-color-dark-rgba-20 {
  background-color: var(--dark-a2) !important;
}

.bg-color-dark-rgba-30 {
  background-color: var(--dark-a3) !important;
}

.bg-color-dark-rgba-40 {
  background-color: var(--dark-a4) !important;
}

.bg-color-dark-rgba-50 {
  background-color: var(--dark-a5) !important;
}

.bg-color-dark-rgba-60 {
  background-color: var(--dark-a6) !important;
}

.bg-color-dark-rgba-70 {
  background-color: var(--dark-a7) !important;
}

.bg-color-dark-rgba-80 {
  background-color: var(--dark-a8) !important;
}

.bg-color-dark-rgba-90 {
  background-color: var(--dark-a9) !important;
}

.bg-color-red-a0,
.bg-red-a0 {
  background-color: rgba(220, 53, 69, 0) !important;
}

.bg-color-red-a1,
.bg-red-a1 {
  background-color: rgba(220, 53, 69, 0.1) !important;
}

.bg-color-red-a2,
.bg-red-a2 {
  background-color: rgba(220, 53, 69, 0.2) !important;
}

.bg-color-red-a3,
.bg-red-a3 {
  background-color: rgba(220, 53, 69, 0.3) !important;
}

.bg-color-red-a4,
.bg-red-a4 {
  background-color: rgba(220, 53, 69, 0.4) !important;
}

.bg-color-red-a5,
.bg-red-a5 {
  background-color: rgba(220, 53, 69, 0.5) !important;
}

.bg-color-red-a6,
.bg-red-a6 {
  background-color: rgba(220, 53, 69, 0.6) !important;
}

.bg-color-red-a7,
.bg-red-a7 {
  background-color: rgba(220, 53, 69, 0.7) !important;
}

.bg-color-red-a8,
.bg-red-a8 {
  background-color: rgba(220, 53, 69, 0.8) !important;
}

.bg-color-red-a9,
.bg-red-a9 {
  background-color: rgba(220, 53, 69, 0.9) !important;
}

.bg-color-red-a10,
.bg-red-a10 {
  background-color: #dc3545 !important;
}

.bg-color-orange-a0,
.bg-orange-a0 {
  background-color: rgba(247, 114, 22, 0) !important;
}

.bg-color-orange-a1,
.bg-orange-a1 {
  background-color: rgba(247, 114, 22, 0.1) !important;
}

.bg-color-orange-a2,
.bg-orange-a2 {
  background-color: rgba(247, 114, 22, 0.2) !important;
}

.bg-color-orange-a3,
.bg-orange-a3 {
  background-color: rgba(247, 114, 22, 0.3) !important;
}

.bg-color-orange-a4,
.bg-orange-a4 {
  background-color: rgba(247, 114, 22, 0.4) !important;
}

.bg-color-orange-a5,
.bg-orange-a5 {
  background-color: rgba(247, 114, 22, 0.5) !important;
}

.bg-color-orange-a6,
.bg-orange-a6 {
  background-color: rgba(247, 114, 22, 0.6) !important;
}

.bg-color-orange-a7,
.bg-orange-a7 {
  background-color: rgba(247, 114, 22, 0.7) !important;
}

.bg-color-orange-a8,
.bg-orange-a8 {
  background-color: rgba(247, 114, 22, 0.8) !important;
}

.bg-color-orange-a9,
.bg-orange-a9 {
  background-color: rgba(247, 114, 22, 0.9) !important;
}

.bg-color-orange-a10,
.bg-orange-a10 {
  background-color: #f77216 !important;
}

.bg-color-amber-a0,
.bg-amber-a0 {
  background-color: rgba(243, 157, 11, 0) !important;
}

.bg-color-amber-a1,
.bg-amber-a1 {
  background-color: rgba(243, 157, 11, 0.1) !important;
}

.bg-color-amber-a2,
.bg-amber-a2 {
  background-color: rgba(243, 157, 11, 0.2) !important;
}

.bg-color-amber-a3,
.bg-amber-a3 {
  background-color: rgba(243, 157, 11, 0.3) !important;
}

.bg-color-amber-a4,
.bg-amber-a4 {
  background-color: rgba(243, 157, 11, 0.4) !important;
}

.bg-color-amber-a5,
.bg-amber-a5 {
  background-color: rgba(243, 157, 11, 0.5) !important;
}

.bg-color-amber-a6,
.bg-amber-a6 {
  background-color: rgba(243, 157, 11, 0.6) !important;
}

.bg-color-amber-a7,
.bg-amber-a7 {
  background-color: rgba(243, 157, 11, 0.7) !important;
}

.bg-color-amber-a8,
.bg-amber-a8 {
  background-color: rgba(243, 157, 11, 0.8) !important;
}

.bg-color-amber-a9,
.bg-amber-a9 {
  background-color: rgba(243, 157, 11, 0.9) !important;
}

.bg-color-amber-a10,
.bg-amber-a10 {
  background-color: #f39d0b !important;
}

.bg-color-yellow-a0,
.bg-yellow-a0 {
  background-color: rgba(243, 222, 9, 0) !important;
}

.bg-color-yellow-a1,
.bg-yellow-a1 {
  background-color: rgba(243, 222, 9, 0.1) !important;
}

.bg-color-yellow-a2,
.bg-yellow-a2 {
  background-color: rgba(243, 222, 9, 0.2) !important;
}

.bg-color-yellow-a3,
.bg-yellow-a3 {
  background-color: rgba(243, 222, 9, 0.3) !important;
}

.bg-color-yellow-a4,
.bg-yellow-a4 {
  background-color: rgba(243, 222, 9, 0.4) !important;
}

.bg-color-yellow-a5,
.bg-yellow-a5 {
  background-color: rgba(243, 222, 9, 0.5) !important;
}

.bg-color-yellow-a6,
.bg-yellow-a6 {
  background-color: rgba(243, 222, 9, 0.6) !important;
}

.bg-color-yellow-a7,
.bg-yellow-a7 {
  background-color: rgba(243, 222, 9, 0.7) !important;
}

.bg-color-yellow-a8,
.bg-yellow-a8 {
  background-color: rgba(243, 222, 9, 0.8) !important;
}

.bg-color-yellow-a9,
.bg-yellow-a9 {
  background-color: rgba(243, 222, 9, 0.9) !important;
}

.bg-color-yellow-a10,
.bg-yellow-a10 {
  background-color: #f3de09 !important;
}

.bg-color-lime-a0,
.bg-lime-a0 {
  background-color: rgba(126, 206, 37, 0) !important;
}

.bg-color-lime-a1,
.bg-lime-a1 {
  background-color: rgba(126, 206, 37, 0.1) !important;
}

.bg-color-lime-a2,
.bg-lime-a2 {
  background-color: rgba(126, 206, 37, 0.2) !important;
}

.bg-color-lime-a3,
.bg-lime-a3 {
  background-color: rgba(126, 206, 37, 0.3) !important;
}

.bg-color-lime-a4,
.bg-lime-a4 {
  background-color: rgba(126, 206, 37, 0.4) !important;
}

.bg-color-lime-a5,
.bg-lime-a5 {
  background-color: rgba(126, 206, 37, 0.5) !important;
}

.bg-color-lime-a6,
.bg-lime-a6 {
  background-color: rgba(126, 206, 37, 0.6) !important;
}

.bg-color-lime-a7,
.bg-lime-a7 {
  background-color: rgba(126, 206, 37, 0.7) !important;
}

.bg-color-lime-a8,
.bg-lime-a8 {
  background-color: rgba(126, 206, 37, 0.8) !important;
}

.bg-color-lime-a9,
.bg-lime-a9 {
  background-color: rgba(126, 206, 37, 0.9) !important;
}

.bg-color-lime-a10,
.bg-lime-a10 {
  background-color: #7ece25 !important;
}

.bg-color-acid-a0,
.bg-acid-a0 {
  background-color: rgba(185, 241, 15, 0) !important;
}

.bg-color-acid-a1,
.bg-acid-a1 {
  background-color: rgba(185, 241, 15, 0.1) !important;
}

.bg-color-acid-a2,
.bg-acid-a2 {
  background-color: rgba(185, 241, 15, 0.2) !important;
}

.bg-color-acid-a3,
.bg-acid-a3 {
  background-color: rgba(185, 241, 15, 0.3) !important;
}

.bg-color-acid-a4,
.bg-acid-a4 {
  background-color: rgba(185, 241, 15, 0.4) !important;
}

.bg-color-acid-a5,
.bg-acid-a5 {
  background-color: rgba(185, 241, 15, 0.5) !important;
}

.bg-color-acid-a6,
.bg-acid-a6 {
  background-color: rgba(185, 241, 15, 0.6) !important;
}

.bg-color-acid-a7,
.bg-acid-a7 {
  background-color: rgba(185, 241, 15, 0.7) !important;
}

.bg-color-acid-a8,
.bg-acid-a8 {
  background-color: rgba(185, 241, 15, 0.8) !important;
}

.bg-color-acid-a9,
.bg-acid-a9 {
  background-color: rgba(185, 241, 15, 0.9) !important;
}

.bg-color-acid-a10,
.bg-acid-a10 {
  background-color: #b9f10f !important;
}

.bg-color-green-a0,
.bg-green-a0 {
  background-color: rgba(34, 197, 94, 0) !important;
}

.bg-color-green-a1,
.bg-green-a1 {
  background-color: rgba(34, 197, 94, 0.1) !important;
}

.bg-color-green-a2,
.bg-green-a2 {
  background-color: rgba(34, 197, 94, 0.2) !important;
}

.bg-color-green-a3,
.bg-green-a3 {
  background-color: rgba(34, 197, 94, 0.3) !important;
}

.bg-color-green-a4,
.bg-green-a4 {
  background-color: rgba(34, 197, 94, 0.4) !important;
}

.bg-color-green-a5,
.bg-green-a5 {
  background-color: rgba(34, 197, 94, 0.5) !important;
}

.bg-color-green-a6,
.bg-green-a6 {
  background-color: rgba(34, 197, 94, 0.6) !important;
}

.bg-color-green-a7,
.bg-green-a7 {
  background-color: rgba(34, 197, 94, 0.7) !important;
}

.bg-color-green-a8,
.bg-green-a8 {
  background-color: rgba(34, 197, 94, 0.8) !important;
}

.bg-color-green-a9,
.bg-green-a9 {
  background-color: rgba(34, 197, 94, 0.9) !important;
}

.bg-color-green-a10,
.bg-green-a10 {
  background-color: #22c55e !important;
}

.bg-color-emerald-a0,
.bg-emerald-a0 {
  background-color: rgba(16, 185, 129, 0) !important;
}

.bg-color-emerald-a1,
.bg-emerald-a1 {
  background-color: rgba(16, 185, 129, 0.1) !important;
}

.bg-color-emerald-a2,
.bg-emerald-a2 {
  background-color: rgba(16, 185, 129, 0.2) !important;
}

.bg-color-emerald-a3,
.bg-emerald-a3 {
  background-color: rgba(16, 185, 129, 0.3) !important;
}

.bg-color-emerald-a4,
.bg-emerald-a4 {
  background-color: rgba(16, 185, 129, 0.4) !important;
}

.bg-color-emerald-a5,
.bg-emerald-a5 {
  background-color: rgba(16, 185, 129, 0.5) !important;
}

.bg-color-emerald-a6,
.bg-emerald-a6 {
  background-color: rgba(16, 185, 129, 0.6) !important;
}

.bg-color-emerald-a7,
.bg-emerald-a7 {
  background-color: rgba(16, 185, 129, 0.7) !important;
}

.bg-color-emerald-a8,
.bg-emerald-a8 {
  background-color: rgba(16, 185, 129, 0.8) !important;
}

.bg-color-emerald-a9,
.bg-emerald-a9 {
  background-color: rgba(16, 185, 129, 0.9) !important;
}

.bg-color-emerald-a10,
.bg-emerald-a10 {
  background-color: #10b981 !important;
}

.bg-color-teal-a0,
.bg-teal-a0 {
  background-color: rgba(20, 184, 166, 0) !important;
}

.bg-color-teal-a1,
.bg-teal-a1 {
  background-color: rgba(20, 184, 166, 0.1) !important;
}

.bg-color-teal-a2,
.bg-teal-a2 {
  background-color: rgba(20, 184, 166, 0.2) !important;
}

.bg-color-teal-a3,
.bg-teal-a3 {
  background-color: rgba(20, 184, 166, 0.3) !important;
}

.bg-color-teal-a4,
.bg-teal-a4 {
  background-color: rgba(20, 184, 166, 0.4) !important;
}

.bg-color-teal-a5,
.bg-teal-a5 {
  background-color: rgba(20, 184, 166, 0.5) !important;
}

.bg-color-teal-a6,
.bg-teal-a6 {
  background-color: rgba(20, 184, 166, 0.6) !important;
}

.bg-color-teal-a7,
.bg-teal-a7 {
  background-color: rgba(20, 184, 166, 0.7) !important;
}

.bg-color-teal-a8,
.bg-teal-a8 {
  background-color: rgba(20, 184, 166, 0.8) !important;
}

.bg-color-teal-a9,
.bg-teal-a9 {
  background-color: rgba(20, 184, 166, 0.9) !important;
}

.bg-color-teal-a10,
.bg-teal-a10 {
  background-color: #14b8a6 !important;
}

.bg-color-cyan-a0,
.bg-cyan-a0 {
  background-color: rgba(6, 182, 212, 0) !important;
}

.bg-color-cyan-a1,
.bg-cyan-a1 {
  background-color: rgba(6, 182, 212, 0.1) !important;
}

.bg-color-cyan-a2,
.bg-cyan-a2 {
  background-color: rgba(6, 182, 212, 0.2) !important;
}

.bg-color-cyan-a3,
.bg-cyan-a3 {
  background-color: rgba(6, 182, 212, 0.3) !important;
}

.bg-color-cyan-a4,
.bg-cyan-a4 {
  background-color: rgba(6, 182, 212, 0.4) !important;
}

.bg-color-cyan-a5,
.bg-cyan-a5 {
  background-color: rgba(6, 182, 212, 0.5) !important;
}

.bg-color-cyan-a6,
.bg-cyan-a6 {
  background-color: rgba(6, 182, 212, 0.6) !important;
}

.bg-color-cyan-a7,
.bg-cyan-a7 {
  background-color: rgba(6, 182, 212, 0.7) !important;
}

.bg-color-cyan-a8,
.bg-cyan-a8 {
  background-color: rgba(6, 182, 212, 0.8) !important;
}

.bg-color-cyan-a9,
.bg-cyan-a9 {
  background-color: rgba(6, 182, 212, 0.9) !important;
}

.bg-color-cyan-a10,
.bg-cyan-a10 {
  background-color: #06b6d4 !important;
}

.bg-color-sky-a0,
.bg-sky-a0 {
  background-color: rgba(14, 165, 233, 0) !important;
}

.bg-color-sky-a1,
.bg-sky-a1 {
  background-color: rgba(14, 165, 233, 0.1) !important;
}

.bg-color-sky-a2,
.bg-sky-a2 {
  background-color: rgba(14, 165, 233, 0.2) !important;
}

.bg-color-sky-a3,
.bg-sky-a3 {
  background-color: rgba(14, 165, 233, 0.3) !important;
}

.bg-color-sky-a4,
.bg-sky-a4 {
  background-color: rgba(14, 165, 233, 0.4) !important;
}

.bg-color-sky-a5,
.bg-sky-a5 {
  background-color: rgba(14, 165, 233, 0.5) !important;
}

.bg-color-sky-a6,
.bg-sky-a6 {
  background-color: rgba(14, 165, 233, 0.6) !important;
}

.bg-color-sky-a7,
.bg-sky-a7 {
  background-color: rgba(14, 165, 233, 0.7) !important;
}

.bg-color-sky-a8,
.bg-sky-a8 {
  background-color: rgba(14, 165, 233, 0.8) !important;
}

.bg-color-sky-a9,
.bg-sky-a9 {
  background-color: rgba(14, 165, 233, 0.9) !important;
}

.bg-color-sky-a10,
.bg-sky-a10 {
  background-color: #0ea5e9 !important;
}

.bg-color-blue-a0,
.bg-blue-a0 {
  background-color: rgba(59, 130, 246, 0) !important;
}

.bg-color-blue-a1,
.bg-blue-a1 {
  background-color: rgba(59, 130, 246, 0.1) !important;
}

.bg-color-blue-a2,
.bg-blue-a2 {
  background-color: rgba(59, 130, 246, 0.2) !important;
}

.bg-color-blue-a3,
.bg-blue-a3 {
  background-color: rgba(59, 130, 246, 0.3) !important;
}

.bg-color-blue-a4,
.bg-blue-a4 {
  background-color: rgba(59, 130, 246, 0.4) !important;
}

.bg-color-blue-a5,
.bg-blue-a5 {
  background-color: rgba(59, 130, 246, 0.5) !important;
}

.bg-color-blue-a6,
.bg-blue-a6 {
  background-color: rgba(59, 130, 246, 0.6) !important;
}

.bg-color-blue-a7,
.bg-blue-a7 {
  background-color: rgba(59, 130, 246, 0.7) !important;
}

.bg-color-blue-a8,
.bg-blue-a8 {
  background-color: rgba(59, 130, 246, 0.8) !important;
}

.bg-color-blue-a9,
.bg-blue-a9 {
  background-color: rgba(59, 130, 246, 0.9) !important;
}

.bg-color-blue-a10,
.bg-blue-a10 {
  background-color: #3b82f6 !important;
}

.bg-color-indigo-a0,
.bg-indigo-a0 {
  background-color: rgba(99, 102, 241, 0) !important;
}

.bg-color-indigo-a1,
.bg-indigo-a1 {
  background-color: rgba(99, 102, 241, 0.1) !important;
}

.bg-color-indigo-a2,
.bg-indigo-a2 {
  background-color: rgba(99, 102, 241, 0.2) !important;
}

.bg-color-indigo-a3,
.bg-indigo-a3 {
  background-color: rgba(99, 102, 241, 0.3) !important;
}

.bg-color-indigo-a4,
.bg-indigo-a4 {
  background-color: rgba(99, 102, 241, 0.4) !important;
}

.bg-color-indigo-a5,
.bg-indigo-a5 {
  background-color: rgba(99, 102, 241, 0.5) !important;
}

.bg-color-indigo-a6,
.bg-indigo-a6 {
  background-color: rgba(99, 102, 241, 0.6) !important;
}

.bg-color-indigo-a7,
.bg-indigo-a7 {
  background-color: rgba(99, 102, 241, 0.7) !important;
}

.bg-color-indigo-a8,
.bg-indigo-a8 {
  background-color: rgba(99, 102, 241, 0.8) !important;
}

.bg-color-indigo-a9,
.bg-indigo-a9 {
  background-color: rgba(99, 102, 241, 0.9) !important;
}

.bg-color-indigo-a10,
.bg-indigo-a10 {
  background-color: #6366f1 !important;
}

.bg-color-violet-a0,
.bg-violet-a0 {
  background-color: rgba(139, 92, 246, 0) !important;
}

.bg-color-violet-a1,
.bg-violet-a1 {
  background-color: rgba(139, 92, 246, 0.1) !important;
}

.bg-color-violet-a2,
.bg-violet-a2 {
  background-color: rgba(139, 92, 246, 0.2) !important;
}

.bg-color-violet-a3,
.bg-violet-a3 {
  background-color: rgba(139, 92, 246, 0.3) !important;
}

.bg-color-violet-a4,
.bg-violet-a4 {
  background-color: rgba(139, 92, 246, 0.4) !important;
}

.bg-color-violet-a5,
.bg-violet-a5 {
  background-color: rgba(139, 92, 246, 0.5) !important;
}

.bg-color-violet-a6,
.bg-violet-a6 {
  background-color: rgba(139, 92, 246, 0.6) !important;
}

.bg-color-violet-a7,
.bg-violet-a7 {
  background-color: rgba(139, 92, 246, 0.7) !important;
}

.bg-color-violet-a8,
.bg-violet-a8 {
  background-color: rgba(139, 92, 246, 0.8) !important;
}

.bg-color-violet-a9,
.bg-violet-a9 {
  background-color: rgba(139, 92, 246, 0.9) !important;
}

.bg-color-violet-a10,
.bg-violet-a10 {
  background-color: #8b5cf6 !important;
}

.bg-color-purple-a0,
.bg-purple-a0 {
  background-color: rgba(168, 85, 247, 0) !important;
}

.bg-color-purple-a1,
.bg-purple-a1 {
  background-color: rgba(168, 85, 247, 0.1) !important;
}

.bg-color-purple-a2,
.bg-purple-a2 {
  background-color: rgba(168, 85, 247, 0.2) !important;
}

.bg-color-purple-a3,
.bg-purple-a3 {
  background-color: rgba(168, 85, 247, 0.3) !important;
}

.bg-color-purple-a4,
.bg-purple-a4 {
  background-color: rgba(168, 85, 247, 0.4) !important;
}

.bg-color-purple-a5,
.bg-purple-a5 {
  background-color: rgba(168, 85, 247, 0.5) !important;
}

.bg-color-purple-a6,
.bg-purple-a6 {
  background-color: rgba(168, 85, 247, 0.6) !important;
}

.bg-color-purple-a7,
.bg-purple-a7 {
  background-color: rgba(168, 85, 247, 0.7) !important;
}

.bg-color-purple-a8,
.bg-purple-a8 {
  background-color: rgba(168, 85, 247, 0.8) !important;
}

.bg-color-purple-a9,
.bg-purple-a9 {
  background-color: rgba(168, 85, 247, 0.9) !important;
}

.bg-color-purple-a10,
.bg-purple-a10 {
  background-color: #a855f7 !important;
}

.bg-color-pink-a0,
.bg-pink-a0 {
  background-color: rgba(251, 6, 128, 0) !important;
}

.bg-color-pink-a1,
.bg-pink-a1 {
  background-color: rgba(251, 6, 128, 0.1) !important;
}

.bg-color-pink-a2,
.bg-pink-a2 {
  background-color: rgba(251, 6, 128, 0.2) !important;
}

.bg-color-pink-a3,
.bg-pink-a3 {
  background-color: rgba(251, 6, 128, 0.3) !important;
}

.bg-color-pink-a4,
.bg-pink-a4 {
  background-color: rgba(251, 6, 128, 0.4) !important;
}

.bg-color-pink-a5,
.bg-pink-a5 {
  background-color: rgba(251, 6, 128, 0.5) !important;
}

.bg-color-pink-a6,
.bg-pink-a6 {
  background-color: rgba(251, 6, 128, 0.6) !important;
}

.bg-color-pink-a7,
.bg-pink-a7 {
  background-color: rgba(251, 6, 128, 0.7) !important;
}

.bg-color-pink-a8,
.bg-pink-a8 {
  background-color: rgba(251, 6, 128, 0.8) !important;
}

.bg-color-pink-a9,
.bg-pink-a9 {
  background-color: rgba(251, 6, 128, 0.9) !important;
}

.bg-color-pink-a10,
.bg-pink-a10 {
  background-color: #fb0680 !important;
}

.bg-color-rose-a0,
.bg-rose-a0 {
  background-color: rgba(244, 48, 80, 0) !important;
}

.bg-color-rose-a1,
.bg-rose-a1 {
  background-color: rgba(244, 48, 80, 0.1) !important;
}

.bg-color-rose-a2,
.bg-rose-a2 {
  background-color: rgba(244, 48, 80, 0.2) !important;
}

.bg-color-rose-a3,
.bg-rose-a3 {
  background-color: rgba(244, 48, 80, 0.3) !important;
}

.bg-color-rose-a4,
.bg-rose-a4 {
  background-color: rgba(244, 48, 80, 0.4) !important;
}

.bg-color-rose-a5,
.bg-rose-a5 {
  background-color: rgba(244, 48, 80, 0.5) !important;
}

.bg-color-rose-a6,
.bg-rose-a6 {
  background-color: rgba(244, 48, 80, 0.6) !important;
}

.bg-color-rose-a7,
.bg-rose-a7 {
  background-color: rgba(244, 48, 80, 0.7) !important;
}

.bg-color-rose-a8,
.bg-rose-a8 {
  background-color: rgba(244, 48, 80, 0.8) !important;
}

.bg-color-rose-a9,
.bg-rose-a9 {
  background-color: rgba(244, 48, 80, 0.9) !important;
}

.bg-color-rose-a10,
.bg-rose-a10 {
  background-color: #f43050 !important;
}

.bg-white-a1 {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.bg-white-a2 {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.bg-white-a3 {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.bg-white-a5 {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.bg-white-a8 {
  background-color: rgba(255, 255, 255, 0.8) !important;
}

.bg-black-a1 {
  background-color: rgba(0, 0, 0, 0.1) !important;
}

.bg-black-a2 {
  background-color: rgba(0, 0, 0, 0.2) !important;
}

.bg-black-a3 {
  background-color: rgba(0, 0, 0, 0.3) !important;
}

.bg-black-a5 {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.bg-black-a8 {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

[class*=clip-arrow-],
[class*=clip-wedge-] {
  --clip-depth: 120px;
}
[class*=clip-arrow-]:not(img),
[class*=clip-wedge-]:not(img) {
  overflow: hidden;
}
@media (max-width: 767px) {
  [class*=clip-arrow-],
  [class*=clip-wedge-] {
    --clip-depth: 70px;
  }
}
@media (max-width: 575px) {
  [class*=clip-arrow-],
  [class*=clip-wedge-] {
    --clip-depth: 50px;
  }
}

.clip-arrow-l {
  clip-path: polygon(var(--clip-depth) 0%, 100% 0%, 100% 100%, var(--clip-depth) 100%, calc(var(--clip-depth) * 0.15) 50%);
}

.clip-arrow-r {
  clip-path: polygon(0% 0%, calc(100% - var(--clip-depth)) 0%, 100% 50%, calc(100% - var(--clip-depth)) 100%, 0% 100%);
}

.clip-wedge-l {
  clip-path: polygon(var(--clip-depth) 0%, 100% 0%, 100% 100%, 0% 100%);
}

.clip-wedge-r {
  clip-path: polygon(0% 0%, calc(100% - var(--clip-depth)) 0%, 100% 100%, 0% 100%);
}

.clip-wedge-rl {
  clip-path: polygon(calc(var(--clip-depth) * 2) 0%, 100% 0%, 100% 100%, 0% 100%);
}

.clip-depth-sm {
  --clip-depth: 60px;
}

.clip-depth-md {
  --clip-depth: 120px;
}

.clip-depth-lg {
  --clip-depth: 200px;
}

.clip-depth-xl {
  --clip-depth: 300px;
}

.section-cta-diagonal {
  position: relative;
  overflow: hidden;
  height: 500px;
}
.section-cta-diagonal > .container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .section-cta-diagonal {
    height: auto;
    overflow: visible;
  }
  .section-cta-diagonal > .container {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    display: block;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.section-img-bg {
  position: absolute;
  top: -10%;
  left: 40%;
  right: 0;
  width: auto;
  min-width: 60%;
  height: 120%;
  object-fit: cover;
  object-position: left center;
  z-index: 0;
  pointer-events: none;
  transform: translateY(var(--parallax-y, 0px));
}
.scd-img-left .section-img-bg {
  left: 0;
  right: 40%;
  object-position: right center;
}
@media (max-width: 991px) {
  .section-img-bg {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    min-width: 0;
    height: 250px;
    transform: none;
    opacity: 1;
    display: block;
  }
  .scd-img-left .section-img-bg {
    left: auto;
    right: auto;
  }
}

.section-svg-diagonal {
  position: absolute;
  width: 1000%;
  height: 100.2%;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  pointer-events: none;
  z-index: 1;
}
.scd-img-left .section-svg-diagonal {
  transform: translate3d(-50%, 0, 0) scaleX(-1);
}
@media (max-width: 991px) {
  .section-svg-diagonal {
    display: none;
  }
}

.section-svg-line {
  stroke-dasharray: 2650;
  stroke-dashoffset: 2650;
  animation: svgLineDrawIn 2s ease forwards;
  animation-delay: 0.5s;
}

@keyframes svgLineDrawIn {
  from {
    stroke-dasharray: 2650;
    stroke-dashoffset: 2650;
  }
  to {
    stroke-dasharray: 2650;
    stroke-dashoffset: 0;
  }
}
.scd-color-bg .section-svg-mask {
  fill: var(--scd-color, var(--primary));
}

.scd-free-img {
  position: absolute;
  bottom: 0;
  right: 5%;
  max-height: 110%;
  width: auto;
  z-index: 2;
  pointer-events: none;
}
.scd-img-left .scd-free-img {
  right: auto;
  left: 5%;
}
@media (max-width: 991px) {
  .scd-free-img {
    display: none;
  }
}

.scd-img-left > .container {
  justify-content: flex-end;
}
.scd-img-left .section-img-bg {
  left: 0;
  right: 40%;
  object-position: right center;
}

/***

====================================================================
	Header style One
====================================================================

***/
.main-header {
  position: absolute;
  left: 0px;
  top: 40px;
  right: 0px;
  z-index: 1001;
  width: 100%;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.header-style-one {
  min-height: 92px;
}

.main-header.header-style-one .header-lower .inner-container {
  position: relative;
  padding: 0px 10px 0px 0px;
}

.main-header.header-style-one.fixed-header .header-lower .inner-container {
  padding: 0px 0px;
}

.header-top {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
}

.header-top .inner-container {
  position: relative;
  padding-left: 325px;
  padding-right: 35px;
}

.header-top .left-box {
  position: relative;
}

.header-top_text {
  position: relative;
  font-size: 14px;
  color: var(--white-color);
}

.header-top_text a {
  position: relative;
  font-weight: 600;
  margin-left: 30px;
  color: var(--primary);
}

.header-top_text a:hover {
  color: var(--white-color);
}

.header-top .right-box {
  position: relative;
}

.header-top_socials {
  position: relative;
}

.header-top_socials a {
  position: relative;
  font-size: 16px;
  margin-left: 15px;
  display: inline-block;
  color: var(--white-color);
}

.header-top_socials a:hover {
  color: var(--primary);
}

/* Language Dropdown */
.language-dropdown {
  position: relative;
  line-height: 1em;
}

.language-dropdown button {
  position: relative;
  background: none;
  font-weight: 400;
  font-size: 14px;
  z-index: 1;
  border: none;
  cursor: pointer;
  padding: 0px 0px;
  color: var(--white-color);
  text-transform: capitalize;
}

.language-dropdown button:focus,
.language-dropdown button:hover {
  color: var(--white-color);
}

.language-dropdown button .flag {
  position: relative;
  margin-right: 5px;
}

.language-dropdown button:after {
  display: none;
}

.language-dropdown button .fa {
  font-size: 12px;
}

.language-dropdown button .flag-icon {
  position: relative;
  margin-right: 10px;
}

.language-dropdown .dropdown-menu {
  padding: 0px;
  border: 0px;
  border-radius: 0px;
  margin-top: 8px !important;
  border-top: 4px solid var(--color-two);
}

.language-dropdown .dropdown-menu li {
  position: relative;
  border: none !important;
}

.language-dropdown .dropdown-menu .dropdown-item {
  font-weight: 400;
  font-size: 14px;
  padding: 16px 15px;
  color: var(--white-color);
  text-transform: capitalize;
  background-color: var(--primary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.language-dropdown .dropdown-menu li:last-child a {
  border: none;
}

.language-dropdown .dropdown-menu .dropdown-item:hover {
  color: var(--white-color);
  background-color: var(--color-two);
}

/* Login Dropdown */
.login-dropdown {
  position: relative;
  line-height: 1em;
  margin-left: 25px;
}

.login-dropdown button {
  position: relative;
  background: none;
  font-weight: 400;
  font-size: 14px;
  z-index: 1;
  border: none;
  cursor: pointer;
  padding: 0px 0px;
  border-radius: 0px;
  color: var(--white-color);
  text-transform: capitalize;
}

.login-dropdown button:focus,
.login-dropdown button:hover {
  color: var(--white-color);
}

.login-dropdown button .flag {
  position: relative;
  margin-right: 5px;
}

.login-dropdown button:after {
  display: none;
}

.login-dropdown button .fa {
  font-size: 12px;
}

.login-dropdown button .flag-icon {
  position: relative;
  margin-right: 10px;
}

.login-dropdown .dropdown-menu {
  padding: 0px;
  border: 0px;
  border-radius: 0px;
  margin-top: 10px !important;
  border-top: 4px solid var(--color-two);
}

.login-dropdown .dropdown-menu li {
  position: relative;
  border: none !important;
}

.login-dropdown .dropdown-menu .dropdown-item {
  font-weight: 400;
  font-size: 14px;
  padding: 16px 15px;
  color: var(--white-color);
  text-transform: capitalize;
  background-color: var(--primary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.login-dropdown .dropdown-menu li:last-child a {
  border: none;
}

.login-dropdown .dropdown-menu .dropdown-item:hover {
  color: var(--white-color);
  background-color: var(--color-two);
}

/* Header Upper */
.main-header .header-lower {
  position: relative;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

/* Login Box */
.header-login_box {
  position: relative;
  width: 64px;
  height: 64px;
  font-size: 22px;
  line-height: 62px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  color: var(--color-two);
  border: 1px solid rgba(var(--color-two-rgb), 0.15);
}

.header-login_box:hover {
  color: var(--white-color);
  border-color: var(--primary);
  background-color: var(--primary);
}

/* NavSidebar Button */
.navSidebar-button {
  position: relative;
  width: 64px;
  height: 64px;
  cursor: pointer;
  font-size: 20px;
  margin-left: 20px;
  line-height: 62px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  color: var(--color-two);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  border: 1px solid rgba(var(--color-two-rgb), 0.15);
}

.navSidebar-button span {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  font-size: 10px;
  line-height: 20px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  color: var(--white-color);
  background-color: var(--primary);
}

.navSidebar-button:hover {
  color: var(--white-color);
  border-color: var(--primary);
  background-color: var(--primary);
}

.navSidebar-button:hover span {
  color: var(--white-color);
  background-color: var(--color-two);
}

/* Header Info Outer */
.header-info_outer {
  position: relative;
}

.header-info_box {
  position: relative;
  display: inline-block;
  padding: 33px 30px 33px 22px;
  border-right: 1px solid rgba(var(--black-color-rgb), 0.1);
}

.header-info_box:last-child {
  border: none;
  padding-right: 0px;
}

.header-info_box-inner {
  position: relative;
  padding-left: 60px;
}

.header-info_box-icon {
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 40px;
  line-height: 1em;
  color: var(--primary);
  font-family: "flaticon_anqix-flat";
}

.header-info_box-inner strong {
  position: relative;
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-two);
}

/* Search Widget */
.header-search_box {
  position: relative;
  width: 310px;
}

.header-search_box .form-group {
  position: relative;
  margin: 0px;
}

.header-search_box .form-group input:focus + button {
  color: var(--white-color);
  background-color: var(--primary);
}

.header-search_box .form-group input[type=text],
.header-search_box .form-group input[type=search] {
  position: relative;
  line-height: 28px;
  font-size: 16px;
  padding: 10px 50px 10px 25px;
  background: none;
  display: block;
  width: 100%;
  height: 64px;
  border-radius: 50px;
  color: var(--black-color);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  border: 1px solid rgba(var(--black-color-rgb), 0.1);
}

.header-search_box .form-group input::placeholder,
.header-search_box .form-group textarea::placeholder {
  color: var(--color-two);
  font-size: 18px;
}

.header-search_box .form-group button {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  width: 60px;
  display: block;
  cursor: pointer;
  line-height: 50px;
  font-weight: normal;
  border-radius: 50px;
  font-size: 16px;
  color: var(--color-two);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  background-color: var(--color-six);
}

.header-search_box .form-group button:hover {
  background-color: var(--primary);
  color: var(--white-color);
}

.main-header .main-box {
  position: relative;
  padding: 0px 0px;
  left: 0px;
  top: 0px;
  width: 100%;
  background: none;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-header .main-box .outer-container {
  position: relative;
}

.main-header .main-box .logo-box {
  position: relative;
  float: left;
  left: 0px;
  z-index: 10;
  padding: 30px 0px;
}

.main-header .main-box .logo-box .logo img {
  display: inline-block;
  max-width: 100%;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-header .header-lower .nav-outer {
  position: static;
  z-index: 1;
}

.main-header .header-lower .nav-outer:before {
  position: absolute;
  content: "";
  left: 250px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  border-radius: 50px;
  background-color: var(--black-color);
}

.main-header .header-lower .logo-box {
  position: relative;
  z-index: 1;
}

.main-header .header-lower .logo-box .logo {
  position: relative;
  padding: 16px 30px;
  border-radius: 50px;
  margin-top: -30px;
  border: 1px solid var(--color-two);
}

.main-header .main-menu .navigation > li:nth-child(7) > ul,
.main-header .main-menu .navigation > li:nth-child(8) > ul {
  left: 0px;
  right: auto !important;
}

/* Main Menu */
.main-header .main-menu {
  position: static;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-header .main-menu .navbar-collapse {
  padding: 0px;
  display: block;
}

.main-header .header-lower .main-menu .navigation {
  position: static;
}

.main-header .main-menu .navigation > li {
  position: relative;
  margin-right: 20px;
  display: inline-block;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-header .main-menu .navigation > li.current a::after,
.main-header .main-menu .navigation > li:hover a::after {
  opacity: 1;
}

.main-header.fixed-header .header-lower .logo-box .logo {
  border: none;
  margin-top: 0px;
  padding: 15px 0px;
}

.main-header.fixed-header .header-lower {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  z-index: 9999999;
  opacity: 1;
  visibility: visible;
  background-color: var(--black-color);
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -ms-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -op-animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -op-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.04);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.main-header.fixed-header.bg-header-gradient .header-lower {
  background-color: transparent;
  background-image: linear-gradient(105deg, #071828 0%, #0b3060 40%, #1a5fa8 70%, #071828 100%);
}

.main-header .main-menu .navigation > li > a {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  padding: 30px 0px;
  text-align: center;
  color: var(--white-color);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  text-transform: capitalize;
  font-family: "Outfit", serif;
}

.main-header .main-menu .navigation > li.dropdown a {
  padding-right: 17px !important;
}

.main-header .main-menu .navigation > li.dropdown > a:after {
  position: absolute;
  content: "\f107";
  right: 0px;
  line-height: 22px;
  font-weight: 700;
  font-size: 13px;
  font-family: var(--font-awesome);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-header .main-menu .navigation > li.dropdown:hover > a::after {
  transform: rotate(180deg);
}

.main-header .main-menu .navigation > li:hover > a::before {
  color: var(--primary);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-header .main-menu .navigation > li > a .menu-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  text-shadow: 0 17px 0 var(--primary);
}

.main-header .sticky-header .main-menu .navigation > li > a .menu-text {
  text-shadow: 0 16px 0 var(--black-color);
}

.main-header .main-menu .navigation > li > a .menu-text span:nth-child(1) {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

.main-header .main-menu .navigation > li:hover > a span {
  --m: calc(17px * -1);
}

.main-menu > li > a .menu-text span:nth-child(1), .main-menu-4 > li > a .menu-text span:nth-child(1) {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

.main-header .main-menu .navigation > li > a .menu-text span:nth-child(2) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.main-header .main-menu .navigation > li > a .menu-text span:nth-child(3) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.main-header .main-menu .navigation > li > a .menu-text span:nth-child(4) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.main-header .main-menu .navigation > li > a .menu-text span:nth-child(5) {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

.main-header .main-menu .navigation > li > a .menu-text span:nth-child(6) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.main-header .main-menu .navigation > li > a .menu-text span:nth-child(7) {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}

.main-header .main-menu .navigation > li > a .menu-text span:nth-child(8) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.main-header .main-menu .navigation > li > a .menu-text span:nth-child(9) {
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}

.main-header .main-menu .navigation > li > a .menu-text span:nth-child(10) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.main-header .main-menu .navigation > li > a .menu-text span {
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-style: normal;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: translateY(var(--m)) translateZ(0);
  transform: translateY(var(--m)) translateZ(0);
}

.main-header .main-menu .navigation > li > a > span {
  position: absolute;
  right: -25px;
  top: 20px;
  width: 42px;
  height: 16px;
  font-weight: 600;
  line-height: 1.6em;
  border-radius: 50px;
  letter-spacing: 1px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--black-color);
  background-color: var(--primary);
}

.main-header .main-menu .navigation > li:last-child {
  margin-right: 0px;
}

.main-header .sticky-header .main-menu .navigation > li {
  position: relative;
}

.main-header .sticky-header .main-menu .navigation > li:last-child {
  margin-right: 0px;
}

.main-header .main-menu .navigation > li:last-child ul {
  right: 0px;
}

.main-header .main-menu .navigation > li:hover > a,
.main-header .main-menu .navigation > li.current > a {
  opacity: 1;
  color: var(--primary);
}

.main-header .main-menu .navigation > li > ul {
  position: absolute;
  width: 16rem;
  top: 100%;
  padding: 15px 15px;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  border-radius: 0px;
  background-color: var(--white-color);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.main-header .main-menu .navigation > li > ul.from-right {
  left: auto;
  right: 0px;
}

.main-header .main-menu .navigation > li > ul > li {
  position: relative;
  width: 100%;
  opacity: 0;
  text-align: left;
  margin-bottom: 2px;
  transform: translateY(11px);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-header .main-menu .navigation > li > ul > li:last-child {
  margin-bottom: 0px;
}

.main-header .main-menu .navigation > li:hover > ul > li {
  opacity: 1;
  transform: translateY(0px);
  -webkit-transition-delay: 70ms;
  -moz-transition-delay: 70ms;
  -ms-transition-delay: 70ms;
  -o-transition-delay: 70ms;
  transition-delay: 70ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(2) {
  -webkit-transition-delay: 140ms;
  -moz-transition-delay: 140ms;
  -ms-transition-delay: 140ms;
  -o-transition-delay: 140ms;
  transition-delay: 140ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(3) {
  -webkit-transition-delay: 210ms;
  -moz-transition-delay: 210ms;
  -ms-transition-delay: 210ms;
  -o-transition-delay: 210ms;
  transition-delay: 210ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(4) {
  -webkit-transition-delay: 280ms;
  -moz-transition-delay: 280ms;
  -ms-transition-delay: 280ms;
  -o-transition-delay: 280ms;
  transition-delay: 280ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(5) {
  -webkit-transition-delay: 350ms;
  -moz-transition-delay: 350ms;
  -ms-transition-delay: 350ms;
  -o-transition-delay: 350ms;
  transition-delay: 350ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(6) {
  -webkit-transition-delay: 420ms;
  -moz-transition-delay: 420ms;
  -ms-transition-delay: 420ms;
  -o-transition-delay: 420ms;
  transition-delay: 420ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(7) {
  -webkit-transition-delay: 490ms;
  -moz-transition-delay: 490ms;
  -ms-transition-delay: 490ms;
  -o-transition-delay: 490ms;
  transition-delay: 490ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(8) {
  -webkit-transition-delay: 560ms;
  -moz-transition-delay: 560ms;
  -ms-transition-delay: 560ms;
  -o-transition-delay: 560ms;
  transition-delay: 560ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(9) {
  -webkit-transition-delay: 630ms;
  -moz-transition-delay: 630ms;
  -ms-transition-delay: 630ms;
  -o-transition-delay: 630ms;
  transition-delay: 630ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(10) {
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(11) {
  -webkit-transition-delay: 770ms;
  -moz-transition-delay: 770ms;
  -ms-transition-delay: 770ms;
  -o-transition-delay: 770ms;
  transition-delay: 770ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(12) {
  -webkit-transition-delay: 840ms;
  -moz-transition-delay: 840ms;
  -ms-transition-delay: 840ms;
  -o-transition-delay: 840ms;
  transition-delay: 840ms;
}

.main-header .main-menu .navigation > li:hover > ul > li:nth-child(13) {
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  transition-delay: 900ms;
}

.main-header .main-menu .navigation > li > ul > li:last-child {
  border-bottom: none;
}

.main-header .main-menu .navigation > li > ul > li > a {
  position: relative;
  display: block;
  line-height: 24px;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 15px;
  text-transform: uppercase;
  color: var(--black-color);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  background-color: rgba(var(--black-color-rgb), 0.06);
}

.main-header .main-menu .navigation > li > ul > li > a:hover {
  color: var(--black-color);
  background-color: var(--primary);
}

.main-header .main-menu .navigation > li > ul > li.dropdown > a:after {
  position: absolute;
  content: "\f105";
  right: 15px;
  top: 12px;
  z-index: 5;
  width: 10px;
  height: 20px;
  display: block;
  line-height: 20px;
  font-weight: normal;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--black-color);
  font-family: var(--font-awesome);
}

.main-header .main-menu .navigation > li > ul > li > ul {
  position: absolute;
  left: 100%;
  top: 0px;
  width: 16rem;
  padding: 15px 15px;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  visibility: hidden;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  border-radius: 0px;
  background-color: var(--white-color);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.main-header .main-menu .navigation > li > ul > li > ul.from-right {
  left: auto;
  right: 0px;
}

.main-header .main-menu .navigation > li > ul > li > ul > li {
  position: relative;
  width: 100%;
  text-align: left;
  opacity: 0;
  margin-bottom: 2px;
  transform: translateY(-8px);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-header .main-menu .navigation > li > ul > li > ul > li:last-child {
  margin-bottom: 0px;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li {
  opacity: 1;
  transform: translateY(0px);
  -webkit-transition-delay: 70ms;
  -moz-transition-delay: 70ms;
  -ms-transition-delay: 70ms;
  -o-transition-delay: 70ms;
  transition-delay: 70ms;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li:nth-child(2) {
  -webkit-transition-delay: 140ms;
  -moz-transition-delay: 140ms;
  -ms-transition-delay: 140ms;
  -o-transition-delay: 140ms;
  transition-delay: 140ms;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li:nth-child(3) {
  -webkit-transition-delay: 210ms;
  -moz-transition-delay: 210ms;
  -ms-transition-delay: 210ms;
  -o-transition-delay: 210ms;
  transition-delay: 210ms;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li:nth-child(4) {
  -webkit-transition-delay: 280ms;
  -moz-transition-delay: 280ms;
  -ms-transition-delay: 280ms;
  -o-transition-delay: 280ms;
  transition-delay: 280ms;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li:nth-child(5) {
  -webkit-transition-delay: 350ms;
  -moz-transition-delay: 350ms;
  -ms-transition-delay: 350ms;
  -o-transition-delay: 350ms;
  transition-delay: 350ms;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li:nth-child(6) {
  -webkit-transition-delay: 420ms;
  -moz-transition-delay: 420ms;
  -ms-transition-delay: 420ms;
  -o-transition-delay: 420ms;
  transition-delay: 420ms;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li:nth-child(7) {
  -webkit-transition-delay: 490ms;
  -moz-transition-delay: 490ms;
  -ms-transition-delay: 490ms;
  -o-transition-delay: 490ms;
  transition-delay: 490ms;
}

.main-header .main-menu .navigation > li > ul > li.dropdown:hover > ul > li:nth-child(8) {
  -webkit-transition-delay: 560ms;
  -moz-transition-delay: 560ms;
  -ms-transition-delay: 560ms;
  -o-transition-delay: 560ms;
  transition-delay: 560ms;
}

.main-header .main-menu .navigation > li > ul > li > ul > li:last-child {
  border-bottom: none;
}

.main-header .main-menu .navigation > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  line-height: 24px;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 15px;
  text-transform: uppercase;
  color: var(--black-color);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  background-color: rgba(var(--black-color-rgb), 0.06);
}

.main-header .main-menu .navigation > li > ul > li > ul > li > a:hover {
  color: var(--white-color);
  background-color: var(--primary);
}

.main-header .main-menu .navigation > li.dropdown:hover > ul {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}

.main-header .main-menu .navigation li > ul > li.dropdown:hover > ul {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}

.main-header .main-menu .navbar-collapse > ul li.dropdown .dropdown-btn {
  position: absolute;
  right: 10px;
  top: 6px;
  width: 30px;
  height: 30px;
  text-align: center;
  color: var(--white-color);
  line-height: 28px;
  border: 1px solid var(--white-color);
  background-size: 20px;
  cursor: pointer;
  z-index: 5;
  display: none;
}

/* Header Style Two */
.main-header.header-style-two .header-lower .logo-box .logo {
  border: none;
  margin: 0px;
  padding: 20px 0px;
}

.main-header.header-style-two .header-lower .inner-container {
  position: relative;
  padding: 0px 30px;
}

.main-header.header-style-two .header-lower .inner-container:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 0px 0px 20px 20px;
  background-color: var(--white-color);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.05);
}

.main-header.header-style-two .header-top {
  margin-bottom: 0px;
}

.main-header.header-style-two .header-top .inner-container {
  padding: 10px 20px;
  border-radius: 20px 20px 0px 0px;
  background-color: var(--color-two);
}

.main-header.header-style-two .header-lower .nav-outer:before {
  display: none;
}

.main-header.header-style-two .main-menu .navigation > li > a {
  color: var(--color-two);
}

.main-header.header-style-two .search-box-btn {
  color: var(--color-two);
  border-color: var(--color-two);
}

.main-header.header-style-two .hamburger span {
  background-color: var(--color-two);
}

.main-header.header-style-two.fixed-header .header-lower {
  background-color: var(--white-color);
}

.main-header.header-style-two.fixed-header .header-lower .inner-container {
  padding: 0px 0px;
}

.main-header.header-style-two.fixed-header .header-lower .inner-container:before {
  display: none;
}

/* Header Style Three */
.main-header.header-style-three {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  min-height: 88px;
}

.main-header.header-style-three:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  height: 90px;
  background-image: linear-gradient(to bottom, #000000, rgba(255, 255, 255, 0));
}

.main-header.header-style-three .header-lower .logo-box .logo {
  margin-top: 0px;
  border: none;
  padding: 20px 0px;
}

.main-header.header-style-three .header-lower .nav-outer:before {
  display: none;
}

.main-header.header-style-three .header-phone_box-inner,
.main-header.header-style-three .header-phone_box-inner a,
.main-header.header-style-three .header-phone_box-inner strong {
  color: var(--white-color);
}

/* Header Phone Box */
.header-phone_box {
  position: relative;
}

.header-phone_box-inner {
  position: relative;
  padding-left: 60px;
  color: var(--white-color);
}

.header-phone_box-inner .icon {
  position: absolute;
  left: 0px;
  top: 5px;
  width: 44px;
  height: 44px;
  font-size: 20px;
  line-height: 48px;
  text-align: center;
  color: var(--color-two);
  background-color: var(--primary);
  border-radius: 6px;
}

.header-phone_box-inner strong {
  position: relative;
  display: block;
  font-weight: 600;
  color: var(--color-two);
}

.header-phone_box-inner a {
  position: relative;
  color: var(--color-two);
}

/*** 

====================================================================
	Mobile Menu
====================================================================

***/
.main-header .mobile-nav-toggler {
  position: relative;
  font-size: 25px;
  line-height: 44px;
  cursor: pointer;
  display: none;
  color: var(--white-color);
  font-family: var(--font-awesome);
}

.main-header.header-style-two .mobile-nav-toggler {
  color: var(--black-color);
}

.main-header .sticky-header .mobile-nav-toggler {
  color: var(--black-color);
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  visibility: hidden;
  z-index: 99999999;
}

.mobile-menu .nav-logo {
  background: var(--black);
  position: relative;
  padding: 20px 20px;
  text-align: left;
}

.mobile-menu .nav-logo img {
  max-width: 200px;
}

.mobile-menu-visible {
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
  visibility: visible;
}

.mobile-menu .menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 0%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.9);
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 1;
  width: 100%;
  visibility: visible;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .menu-box {
  position: absolute;
  right: -400px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #ffffff;
  padding: 0px 0px;
  z-index: 5;
  border-radius: 0px;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
}

.mobile-menu-visible .mobile-menu .menu-box {
  right: 0px;
  -webkit-transition-delay: 600ms;
  -moz-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  transition-delay: 600ms;
}

.mobile-menu .close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  line-height: 30px;
  width: 30px;
  text-align: center;
  font-size: 20px;
  color: #202020;
  cursor: pointer;
  z-index: 10;
  font-weight: 700;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
  font-family: var(--font-awesome);
}

.mobile-menu-visible .mobile-menu .close-btn {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  transition-delay: 900ms;
}

.mobile-menu .close-btn:hover {
  opacity: 0.5;
}

.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu .navigation li > ul > li:last-child {
  border-bottom: none;
}

.mobile-menu .navigation li > ul > li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu .navigation li:hover > a,
.mobile-menu .navigation li.current > a {
  color: #111111;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 44px;
  height: 44px;
  text-align: center;
  font-size: 16px;
  line-height: 44px;
  color: #404040;
  cursor: pointer;
  z-index: 5;
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul {
  display: none;
}

.mobile-menu .navigation li > ul > li > a {
  padding-left: 30px;
}

.mobile-menu .navigation li > ul > li > ul {
  padding-left: 0px;
}

.mobile-menu .navigation li > ul > li > ul > li > a {
  padding-left: 40px;
}

.main-header .mobile-menu .close-btn:hover {
  opacity: 0.5;
}

.main-header .mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  border-top: 1px solid #dddddd;
}

.main-header .mobile-menu .navigation li {
  position: relative;
  display: block;
  border-bottom: 1px solid #dddddd;
}

.main-header .mobile-menu .navigation li > ul > li:last-child {
  border-bottom: none;
}

.main-header .mobile-menu .navigation li > ul > li:first-child {
  border-top: 1px solid #dddddd;
}

.main-header .mobile-menu .navigation li > a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 12px 20px;
  font-size: 16px;
  color: var(--black-color);
  text-transform: capitalize;
}

.main-header .mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 44px;
  height: 44px;
  text-align: center;
  color: var(--dark-color);
  font-size: 16px;
  line-height: 44px;
  cursor: pointer;
  z-index: 5;
}

.main-header .mobile-menu .navigation li.dropdown .dropdown-btn:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 10px;
  width: 1px;
  height: 24px;
  border-left: 1px solid #dddddd;
}

.main-header .mobile-menu .navigation li > ul,
.main-header .mobile-menu .navigation li > ul > li > ul {
  display: none;
}

.main-header .sticky-header .navbar-header {
  display: none;
}

.main-header .outer-box {
  position: relative;
  gap: 15px;
  z-index: 1;
}

.main-header_button {
  position: relative;
  height: 62px;
}

/* Search Box Outer */
.main-header .search-box-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: block;
  font-size: 16px;
  cursor: pointer;
  background: none;
  line-height: 40px;
  text-align: center;
  border-radius: 0px;
  color: var(--white-color);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  border: 1px solid var(--color-three);
}

.main-header .search-box-btn:hover {
  color: var(--white-color);
  border-color: var(--primary);
  background-color: var(--primary);
}

/*** 

====================================================================
	Search Popup
====================================================================

***/
.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 999999999;
  margin-top: -540px;
  transform: translateY(-100%);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.search-popup .color-layer {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 120px;
  width: 100%;
  box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.07);
  background-color: rgb(255, 255, 255);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.sidenav-bar-visible .search-popup {
  width: 80%;
}

.search-active .search-popup {
  transform: translateY(0%);
  margin-top: 0px;
}

.search-popup .close-search {
  position: absolute;
  right: 25px;
  top: 25px;
  cursor: pointer;
  background: none;
  font-family: var(--font-awesome);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
  z-index: 9999;
  visibility: hidden;
}

.search-popup .close-search span {
  position: relative;
  display: block;
  z-index: 2;
  font-weight: 800;
  font-size: 22px;
  color: var(--black-color);
}

.search-active .search-popup .close-search {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}

.search-popup form {
  position: absolute;
  max-width: 1300px;
  top: 25px;
  left: 15px;
  right: 15px;
  z-index: 999;
  margin: 0px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  background-color: var(--dark-color);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.search-active .search-popup form {
  transform: scaleX(1);
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}

.search-popup .form-group {
  position: relative;
  margin: var(--margin-zero);
  overflow: hidden;
}

.search-popup .form-group input[type=text],
.search-popup .form-group input[type=search] {
  position: relative;
  display: block;
  height: 70px;
  width: 100%;
  line-height: 50px;
  font-size: 16px;
  color: var(--black-color);
  padding: 10px 30px 10px 60px;
  background-color: var(--white-color);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 400;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.search-popup .form-group input[type=submit],
.search-popup .form-group button {
  position: absolute;
  left: 10px;
  top: 0px;
  line-height: 70px;
  background: transparent;
  text-align: center;
  font-size: 24px;
  color: var(--black-color);
  cursor: pointer;
  font-weight: 800;
  display: inline-block;
  font-family: var(--font-awesome);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup .form-group input[type=submit]:hover,
.search-popup .form-group button:hover {
  color: var(--black-color);
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
  color: var(--black-color);
}

.search-popup .close-search.style-two {
  position: absolute;
  right: 25px;
  left: auto;
  color: var(--white-color);
  width: auto;
  height: auto;
  top: 25px;
  margin: 0px;
  border: none;
  background: none !important;
  box-shadow: none !important;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup .close-search.style-two span {
  font-size: 18px;
  color: var(--white-color);
}

.main-header .sticky-header .search-box-btn {
  color: var(--color-two);
}

.main-header .sticky-header .outer-box .nav-btn {
  color: var(--color-two);
}

.main-header .mobile-menu .menu-box .mCSB_scrollTools {
  width: 3px;
}

/*** 

====================================================================
	Hidden Sidebar style
====================================================================

***/
.sidebar-info-contents {
  position: relative;
  height: 100%;
}

.sidebar-textwidget,
.sidebar-widget-container {
  height: 100%;
}

.sidebar-info-contents .content-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sidebar-info-contents .content-inner h5, .sidebar-info-contents .content-inner .h5 {
  margin: 15px 20px;
  font-weight: 400;
  color: var(--black-color);
  text-transform: capitalize;
}

.sidebar-info-contents .content-inner h5 span, .sidebar-info-contents .content-inner .h5 span {
  position: relative;
  font-weight: 600;
}

.sidebar-info-contents .price {
  position: relative;
  padding: 14px 10px;
  text-align: center;
  font-size: 14px;
  color: var(--black-color);
  background-color: rgba(var(--primary-rgb), 0.2);
}

.sidebar-info-contents .empty-cart-box {
  position: relative;
  margin: 15px 0px;
}

.sidebar-info-contents .no-cart {
  position: relative;
  text-align: center;
  font-size: 16px;
  color: var(--black-color);
}

.sidebar-info-contents .no-cart .icon {
  position: relative;
  width: 55px;
  height: 55px;
  display: block;
  margin: 0 auto;
  font-size: 18px;
  line-height: 57px;
  text-align: center;
  border-radius: 50px;
  margin-bottom: 20px;
  color: var(--white-color);
  background-color: var(--primary);
}

.sidebar-info-contents .lower-box h5, .sidebar-info-contents .lower-box .h5 {
  padding: 25px 20px;
  margin: 0px;
}

.sidebar-info-contents .lower-box {
  position: relative;
  border-top: 1px solid rgba(var(--black-color-rgb), 0.1);
}

.sidebar-info-contents .lower-box:before {
  position: absolute;
  content: "";
  right: 0px;
  top: 0px;
  width: 10px;
  bottom: 0px;
  z-index: 100;
  background-color: var(--white-color);
}

/* Post Block */
.post-block {
  position: relative;
  padding: 0px 10px;
  margin-bottom: 10px;
}

.post-block .inner-box {
  position: relative;
  min-height: 144px;
  padding-right: 10px;
  padding-left: 120px;
}

.post-block .rating {
  position: relative;
  font-size: 12px;
  color: var(--black-color);
}

.post-block .inner-box .image {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 106px;
  height: 144px;
}

.post-block .inner-box h6 a, .post-block .inner-box .h6 a {
  position: relative;
  color: var(--black-color);
}

.post-block .inner-box h6 a:hover, .post-block .inner-box .h6 a:hover {
  color: var(--primary);
}

.post-block .inner-box .price-box {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  margin-top: 5px;
  color: var(--black-color);
}

.post-block .inner-box .bag-btn {
  position: relative;
  display: block;
  padding: 10px 10px;
  border-radius: 4px;
  font-weight: 400;
  font-size: 12px;
  margin-top: 15px;
  text-align: center;
  letter-spacing: 1px;
  color: var(--white-color);
  text-transform: uppercase;
  background-color: var(--primary);
}

.post-block .inner-box .bag-btn:hover {
  color: var(--white-color);
  background-color: var(--black-color);
}

.xs-sidebar-widget::-webkit-scrollbar,
.xs-sidebar-widget-two::-webkit-scrollbar,
.about-sidebar .sidebar-inner::-webkit-scrollbar {
  width: 8px;
}

/* Track */
.xs-sidebar-widget::-webkit-scrollbar-track,
.xs-sidebar-widget-two::-webkit-scrollbar-track,
.about-sidebar .sidebar-inner::-webkit-scrollbar-track {
  background: #dddddd;
}

/* Handle */
.xs-sidebar-widget::-webkit-scrollbar-thumb,
.xs-sidebar-widget-two::-webkit-scrollbar-thumb,
.about-sidebar .sidebar-inner::-webkit-scrollbar-thumb {
  background-color: var(--color-three);
}

/* Handle on hover */
.xs-sidebar-widget::-webkit-scrollbar-thumb:hover,
.xs-sidebar-widget-two::-webkit-scrollbar-thumb:hover,
.about-sidebar .sidebar-inner::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.about-widget {
  position: relative;
  cursor: pointer;
}

/* About Sidebar */
.about-sidebar {
  position: fixed;
  left: -500px;
  top: 0px;
  bottom: 0px;
  width: 450px;
  z-index: 999999;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  transition: all 900ms ease;
  background-color: var(--white-color);
}

.about-sidebar .gradient-layer {
  position: absolute;
  left: 0%;
  top: 0px;
  bottom: 0px;
  width: 0%;
  opacity: 0.6;
  z-index: -1;
  background-color: var(--black-color);
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  cursor: url(../../html/cross-out.png), pointer;
}

.about-sidebar.active .gradient-layer {
  width: 500%;
  left: 100%;
}

.about-sidebar.active {
  left: 0px;
}

.about-sidebar .close-button span {
  position: absolute;
  right: 20px;
  top: 10px;
  width: 50px;
  height: 50px;
  z-index: 10;
  cursor: pointer;
  line-height: 50px;
  text-align: center;
  font-size: 22px;
  color: var(--black-color);
  background-color: var(--white-color);
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.about-sidebar .close-button span:hover {
  color: var(--white-color);
  background-color: var(--primary);
}

.about-sidebar .sidebar-inner {
  position: relative;
  overflow-y: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-sidebar .content-box {
  position: relative;
  padding: 30px 50px;
}

.about-sidebar h3, .about-sidebar .h3 {
  margin-bottom: 15px;
  color: var(--black-color);
}

.about-sidebar h3 span, .about-sidebar .h3 span {
  font-weight: 700;
}

.about-sidebar .text {
  line-height: 28px;
  margin-top: 15px;
  margin-bottom: 30px;
  color: var(--color-five);
}

.about-sidebar .social-box {
  position: relative;
  margin-left: 50px;
  margin-bottom: 35px;
}

.about-sidebar .social-box a {
  position: relative;
  margin-right: 15px;
  font-size: 18px;
  color: var(--black-color);
  font-family: "Font Awesome 5 Brands";
}

.about-sidebar .social-box a:hover {
  color: var(--primary);
}

.about-sidebar .sidebar-inner::-webkit-scrollbar {
  width: 8px;
}

/* Track */
.about-sidebar .sidebar-inner::-webkit-scrollbar-track {
  background: #dddddd;
}

/* Handle */
.about-sidebar .sidebar-inner::-webkit-scrollbar-thumb {
  background-color: var(--primary);
}

/* Handle on hover */
.about-sidebar .sidebar-inner::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* About One List */
.about-sidebar_list {
  position: relative;
}

.about-sidebar_list li {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  padding-left: 30px;
  margin-bottom: 20px;
  color: var(--black-color);
  text-transform: capitalize;
}

.about-sidebar_list li:before {
  position: absolute;
  content: "\f058";
  left: 0px;
  top: 0px;
  font-size: 18px;
  font-weight: 800;
  color: var(--black-color);
  font-family: var(--font-awesome);
}

/* Hamburger */
.hamburger {
  width: 30px;
  height: 38px;
  display: flex;
  padding: 11px 0px;
  align-self: center;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.hamburger span {
  height: 2px;
  width: 83.33333333%;
  background: var(--white-color);
  transition: all 400ms ease-in-out;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.hamburger:hover span {
  background-color: var(--primary);
}

.hamburger .meat {
  width: 100%;
  transition: all 200ms ease-in-out;
}

.hamburger .bottom-bun {
  width: 58.33333333%;
  transition: all 100ms ease-in-out;
}

.hamburger:hover span {
  width: 100%;
}

html:not(.body-menu-opened) .hamburger .top-bun {
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
  animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
}

html:not(.body-menu-opened) .hamburger .meat {
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
  animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
}

html:not(.body-menu-opened) .hamburger .bottom-bun {
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
  animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
}

@-webkit-keyframes burger-hover {
  0% {
    width: 100%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}
@keyframes burger-hover {
  0% {
    width: 100%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}
.body-menu-opened .hamburger .top-bun {
  transform: rotate(-45deg) translate(-4.5px, 4px);
  width: 100%;
}

.body-menu-opened .hamburger .bottom-bun {
  transform: rotate(45deg) translate(-4.5px, -4px);
  width: 100%;
}

.body-menu-opened .hamburger .meat {
  width: 0;
}

/************************ Mega Menu ***************************/
.main-menu .navigation > li.has-mega-menu {
  position: static;
}

.main-menu .navigation > li > .mega-menu {
  position: absolute;
  left: 0px;
  right: 0;
  margin: auto;
  width: 100%;
  max-width: 1280px;
  background-color: #ffffff;
  padding: 25px 40px 30px 35px;
  top: 100%;
  z-index: 100;
  opacity: 0;
  border-radius: 0px;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}

.main-menu .navigation > li:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}

.main-menu .navigation > li > .mega-menu .mega-menu-bar {
  position: relative;
}

.main-menu .navigation > li .mega-menu-bar h6, .main-menu .navigation > li .mega-menu-bar .h6 {
  position: relative;
  font-size: 18px;
  padding-bottom: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--black-color);
  border-bottom: 1px solid rgba(var(--black-color-rgb), 0.15);
}

.main-menu .navigation > li .mega-menu-bar > ul {
  position: relative;
}

.main-menu .navigation > li .mega-menu-bar .column > ul > li {
  position: relative;
  width: 100%;
  padding: 4px 0px;
  text-transform: capitalize;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation > li .mega-menu-bar .column {
  position: relative;
  margin-bottom: 12px;
}

.main-menu .navigation > li .mega-menu-bar .column ul {
  position: relative;
  margin-bottom: 10px;
}

.main-menu .navigation > li .mega-menu-bar .column > ul > li:last-child {
  border: none;
}

.main-menu .navigation > li .mega-menu-bar .column > ul > li > a {
  position: relative;
  display: block;
  line-height: 20px;
  font-weight: 600;
  font-size: 14px;
  color: var(--black-color);
  text-transform: uppercase;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation > li .mega-menu-bar .column > ul > li > a:hover {
  color: var(--primary);
}

.mobile-menu.active-mobile-menu {
  visibility: visible;
  right: auto;
  left: 0px;
}

.mobile-menu.active-mobile-menu .menu-box {
  left: 0px;
  right: auto;
}

.mobile-menu.active-mobile-menu #navbarSupportedContent {
  display: block;
}

.mobile-menu.active-mobile-menu .mCSB_inside > .mCSB_container {
  margin-right: 0px;
}

.mobile-menu.active-mobile-menu .mega-menu-bar .column {
  width: 100%;
}

.mobile-menu.active-mobile-menu .mega-menu-bar .column h6, .mobile-menu.active-mobile-menu .mega-menu-bar .column .h6 {
  position: relative;
  margin-left: 20px;
  margin-top: 10px;
}

.mobile-menu.active-mobile-menu .navigation li.has-mega-menu > .mega-menu {
  display: none;
  overflow: hidden;
}

.sidebar-menu_active {
  position: relative;
  padding-left: 300px;
}

.sidebar-menu_active .header-style-three {
  padding-left: 300px;
}

.sidebar-menu_active .header-style-three .nav-outer {
  display: none;
}

.want-sticky-header .fixed-header {
  position: relative;
  display: none;
}

/*
.main-header.header--sequence-active {

    .header-lower {
        // Position fix erzwingen — Header darf nicht wegscrolln
        position:  fixed !important;
        left:      0     !important;
        top:       0     !important;
        right:     0     !important;
        z-index:   9999999 !important;

        // Hintergrund progressiv via JS-Variable
        background-color: rgba(
            var(--dark-rgb, 0, 0, 0),
            var(--header-seq-opacity, 0)
        ) !important;

        // Keine fadeInDown-Animation während Sequence
        animation:  none !important;
        box-shadow: none !important;

        // Sanfter Übergang zwischen Frames
        transition: background-color 0.1s linear !important;
    }
}
*/
.main-header.header--sequence-active .header-lower {
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  right: 0 !important;
  z-index: 9999999 !important;
  background-color: transparent !important;
  animation: none !important;
  box-shadow: none !important;
  transition: none !important;
}
.main-header.header--sequence-active .header-lower::before {
  opacity: var(--header-seq-opacity, 0) !important;
  transition: opacity 0.1s linear !important;
}

@media only screen and (max-width: 991px) {
  .main-header.header--sequence-active .header-lower {
    transition: background-color 0.08s linear !important;
  }
}
/* =========================================================
   Footer
========================================================= */
.footer-style_two {
  position: relative;
  background-color: var(--color-two);
  color: var(--white-color);
  overflow: hidden;
}

.footer-style_two .footer-bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.footer-style_two .footer-bg-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.footer-style_two .footer-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0.27));
  pointer-events: none;
}

.footer-style_two .auto-container {
  position: relative;
  z-index: 2;
}

.footer-style_two .widgets-section {
  position: relative;
  z-index: 2;
  padding: 110px 0 50px;
}

.footer-style_two .footer-column {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.footer-style_two .footer-logo {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.footer-style_two .footer-logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.footer-style_two h4, .footer-style_two .h4,
.footer-style_two h5,
.footer-style_two .h5,
.footer-style_two .footer-title {
  position: relative;
  z-index: 2;
  margin: 0 0 25px;
  color: var(--white-color);
}

.footer-style_two a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-style_two a:hover {
  color: var(--primary);
}

/* =========================================================
   Top Contact Boxes
========================================================= */
.footer-style_two .feature-box {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 1rem;
}

.footer-style_two .feature-box-icon {
  position: relative;
  flex: 0 0 auto;
  line-height: 1;
}

.footer-style_two .feature-box-icon i {
  display: inline-block;
  line-height: 1;
}

.footer-style_two .feature-box-info {
  position: relative;
  min-width: 0;
}

.footer-style_two .feature-box-info span,
.footer-style_two .feature-box-info p,
.footer-style_two .feature-box-info a {
  word-break: break-word;
}

/* =========================================================
   Footer Lists
========================================================= */
.footer-list {
  position: relative;
  z-index: 2;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.footer-list li {
  position: relative;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white-color);
  font-family: "Outfit", serif;
}

.footer-list li:last-child {
  margin-bottom: 0;
}

.footer-list li a {
  position: relative;
  color: var(--white-color);
  text-decoration: none;
}

.footer-list li a:hover {
  color: var(--primary);
}

/* =========================================================
   Generic Lists
========================================================= */
.footer-style_two .list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-style_two .list li {
  color: var(--white-color);
}

.footer-style_two .list li a {
  color: var(--white-color);
  text-decoration: none;
}

.footer-style_two .list li a:hover {
  color: var(--primary);
}

/* =========================================================
   Divider
========================================================= */
.footer-style_two hr {
  position: relative;
  z-index: 2;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 1;
}

/* =========================================================
   Social Icons
========================================================= */
.footer-social_box {
  position: relative;
  z-index: 5;
  margin-top: 20px;
}

.footer-social_box a {
  position: relative;
  display: inline-block;
  margin-right: 18px;
  font-size: 18px;
  line-height: 1;
  color: var(--white-color);
}

.footer-social_box a:last-child {
  margin-right: 0;
}

.footer-social_box a:hover {
  color: var(--primary);
}

/* =========================================================
   Footer Bottom
========================================================= */
.footer-bottom {
  position: relative;
  z-index: 2;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}

.main-footer_copyright {
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white-color);
  text-align: center;
}

.main-footer_copyright p {
  margin-bottom: 0.35rem;
  color: var(--white-color);
}

.main-footer_copyright p:last-child {
  margin-bottom: 0;
}

.main-footer_copyright a {
  color: var(--white-color);
  text-decoration: none;
}

.main-footer_copyright a:hover {
  color: var(--primary);
}

/* =========================================================
   Footer Helper Text Classes
========================================================= */
.footer-style_two .text-color-light,
.footer-style_two .text-white {
  color: var(--white-color) !important;
}

.footer-style_two .text-color-primary,
.footer-style_two .text-primary {
  color: var(--primary) !important;
}

.footer-style_two .text-color-hover-default:hover {
  color: var(--white-color) !important;
}

/* =========================================================
   Reveal Footer
========================================================= */
.site-main {
  position: relative;
  z-index: 2;
  background: #ffffff;
  margin-bottom: var(--footer-reveal-height, 0px);
}

.footer-style_two.footer-reveal {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}

.footer-style_two.footer-reveal .auto-container {
  position: relative;
  z-index: 2;
}

.footer-style_two.footer-reveal .widgets-section {
  padding: 110px 0 50px;
}

.footer-style_two.footer-reveal .footer-bottom {
  position: relative;
  z-index: 2;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.footer-style_two.footer-reveal .footer-title,
.footer-style_two.footer-reveal h4,
.footer-style_two.footer-reveal .h4,
.footer-style_two.footer-reveal h5,
.footer-style_two.footer-reveal .h5,
.footer-style_two.footer-reveal .footer-list li,
.footer-style_two.footer-reveal .footer-list li a,
.footer-style_two.footer-reveal .main-footer_copyright {
  color: var(--white-color);
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 1199.98px) {
  .footer-style_two .widgets-section,
  .footer-style_two.footer-reveal .widgets-section {
    padding: 90px 0 40px;
  }
}
@media (max-width: 991.98px) {
  .site-main {
    margin-bottom: 0;
  }
  .footer-style_two.footer-reveal {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
  }
  .footer-style_two .widgets-section,
  .footer-style_two.footer-reveal .widgets-section {
    padding: 80px 0 40px;
  }
  .footer-style_two .footer-column {
    margin-bottom: 35px;
  }
  .footer-bottom,
  .footer-style_two.footer-reveal .footer-bottom {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.22);
  }
}
@media (max-width: 767.98px) {
  .footer-style_two .widgets-section,
  .footer-style_two.footer-reveal .widgets-section {
    padding: 65px 0 30px;
  }
  .footer-style_two .feature-box {
    gap: 0.85rem;
  }
  .footer-list li {
    font-size: 16px;
    line-height: 1.45;
  }
  .main-footer_copyright {
    font-size: 14px;
    line-height: 1.55;
  }
}
@media (max-width: 575.98px) {
  .footer-style_two .footer-logo img {
    max-width: 150px;
  }
  .footer-style_two h4, .footer-style_two .h4,
  .footer-style_two h5,
  .footer-style_two .h5,
  .footer-style_two .footer-title {
    margin-bottom: 18px;
  }
  .footer-style_two .footer-column {
    margin-bottom: 30px;
  }
  .footer-social_box a {
    margin-right: 14px;
    font-size: 17px;
  }
  .footer-bottom,
  .footer-style_two.footer-reveal .footer-bottom {
    padding: 18px 0;
  }
}
/***

====================================================================
	Section Title
====================================================================

***/
.sec-title {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.sec-title_title {
  position: relative;
  font-weight: 700;
  font-size: 20px;
  display: inline-block;
  align-items: center;
  padding-left: 25px;
  color: var(--color-three);
  text-transform: uppercase;
}

.sec-title_title:before {
  position: absolute;
  content: "//";
  left: 0px;
  top: 0px;
}

.sec-title_heading {
  margin-top: 15px;
  color: var(--black-color);
  text-transform: capitalize;
}

.sec-title_text {
  line-height: 30px;
  font-size: 16px;
  margin-top: 20px;
  color: #666666;
}

.sec-title.light .sec-title_title {
  color: var(--white-color);
}

.sec-title.light .sec-title_title span {
  background-color: rgba(255, 255, 255, 0);
  background-image: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
}

.sec-title.light .sec-title_big-title {
  -webkit-text-stroke-color: rgba(var(--color-three-rgb), 0.3);
}

.sec-title.light .sec-title_text {
  opacity: 1;
  color: var(--white-color);
}

.sec-title.light .sec-title_heading {
  color: var(--white-color);
}

.sec-title.centered .sec-title_title {
  display: inline-block;
}

.sec-title.centered {
  text-align: center !important;
}

.sec-title.centered .sec-title_title {
  justify-content: center;
}

/* =====================================================
   SECTION 2

   Mit BG Hintergrund und Grafiken - INFOBOX
   ===================================================== */
.section-two {
  position: relative;
  overflow: hidden;
  padding: 140px 0px 150px;
}

.section-two .auto-container {
  position: relative;
  max-width: 1730px;
}

.section-two_shadow {
  top: -120px;
  left: 250px;
  right: -120px;
  background-position: right top;
  background-repeat: no-repeat;
}

.section-two_content-column {
  position: relative;
}

.section-two_content-outer {
  position: relative;
  padding-left: 550px;
}

.section-two_image {
  position: absolute;
  left: 0px;
  top: 0px;
  -webkit-animation: icon-bounce 0.8s ease-out infinite;
  animation: icon-bounce 0.8s ease-out infinite;
}

.section-two_image-three {
  position: absolute;
  left: 15px;
  bottom: 100px;
  overflow: hidden;
  display: inline-block;
  border-radius: 150px 150px;
  border: 12px solid var(--white-color);
  -webkit-animation: icon-bounce 0.8s ease-out infinite;
  animation: icon-bounce 0.8s ease-out infinite;
}

.section-two_content-outer .sec-title_text {
  max-width: 440px;
}

.section-block_one {
  position: relative;
}

.section-block_one-inner {
  position: relative;
  padding-left: 110px;
}

.section-block_one-icon {
  position: absolute;
  left: 0px;
  top: 3px;
  width: 82px;
  height: 82px;
  font-size: 50px;
  line-height: 82px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  color: var(--primary);
  background-color: var(--color-two);
  font-family: var(--font-awesome);
}

.section-block_one-inner:hover .section-block_one-icon {
  color: var(--color-two);
  transform: rotateY(180deg);
  background-color: var(--primary);
}

.section-block_one-inner strong {
  position: relative;
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--color-two);
  text-transform: capitalize;
  font-family: "Rajdhani", sans-serif;
}

.section-two_image-column {
  position: relative;
  text-align: right;
}

.section-two_image-two {
  position: relative;
  overflow: hidden;
  border-radius: 250px;
  display: inline-block;
}

.section-two_button {
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.section-two_options {
  position: relative;
}

/* Header Phone Box */
.section-two_phone {
  position: relative;
  margin-top: 50px;
}

.section-two_phone-inner {
  position: relative;
  font-size: 18px;
  border-radius: 60px;
  display: inline-block;
  color: var(--white-color);
  padding: 20px 30px 20px 120px;
  background-color: var(--primary);
}

.section-two_phone-inner .icon {
  position: absolute;
  left: 15px;
  top: 15px;
  width: 80px;
  height: 80px;
  font-size: 50px;
  border-radius: 50px;
  line-height: 84px;
  text-align: center;
  color: var(--white-color);
  background-color: var(--color-two);
}

.section-two_phone-inner strong {
  position: relative;
  display: block;
  font-weight: 600;
  color: var(--color-two);
}

.section-two_phone-inner a {
  position: relative;
  font-size: 34px;
  font-weight: 500;
  margin-top: 10px;
  display: inline-block;
  color: var(--black-color);
}

.layout--full {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.layout--full > .auto-container,
.layout--full > .container,
.layout--full > .container-fluid,
.layout--full > .container-sm,
.layout--full > .container-md,
.layout--full > .container-lg,
.layout--full > .container-xl,
.layout--full > .container-xxl {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.layout--boxed {
  width: 100%;
  max-width: none;
}
.layout--boxed > .auto-container,
.layout--boxed > .container {
  max-width: var(--container-max-width, 1200px);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter, 15px);
  padding-right: var(--gutter, 15px);
}

.layout--bleed-right {
  width: 100%;
  overflow: hidden;
}
.layout--bleed-right > .auto-container,
.layout--bleed-right > .container {
  max-width: none;
  padding-left: calc((100vw - var(--container-max-width, 1200px)) / 2 + var(--gutter, 15px));
  padding-right: 0;
}
@media (max-width: var(--container-max-width, 1200px)) {
  .layout--bleed-right > .auto-container,
  .layout--bleed-right > .container {
    padding-left: var(--gutter, 15px);
  }
}
.layout--bleed-right.swiper, .layout--bleed-right.ce-track-wrap {
  padding-left: calc((100vw - var(--container-max-width, 1200px)) / 2 + var(--gutter, 15px));
  padding-right: 0;
}
@media (max-width: var(--container-max-width, 1200px)) {
  .layout--bleed-right.swiper, .layout--bleed-right.ce-track-wrap {
    padding-left: var(--gutter, 15px);
  }
}

.layout--bleed-left {
  width: 100%;
  overflow: hidden;
}
.layout--bleed-left > .auto-container,
.layout--bleed-left > .container {
  max-width: none;
  padding-left: 0;
  padding-right: calc((100vw - var(--container-max-width, 1200px)) / 2 + var(--gutter, 15px));
}
@media (max-width: var(--container-max-width, 1200px)) {
  .layout--bleed-left > .auto-container,
  .layout--bleed-left > .container {
    padding-right: var(--gutter, 15px);
  }
}
.layout--bleed-left.swiper, .layout--bleed-left.ce-track-wrap {
  padding-left: 0;
  padding-right: calc((100vw - var(--container-max-width, 1200px)) / 2 + var(--gutter, 15px));
}
@media (max-width: var(--container-max-width, 1200px)) {
  .layout--bleed-left.swiper, .layout--bleed-left.ce-track-wrap {
    padding-right: var(--gutter, 15px);
  }
}

.layout--split {
  display: flex;
  align-items: stretch;
}
.layout--split > .layout__content,
.layout--split > .layout__media {
  flex: 1 1 50%;
  min-width: 0;
}
@media (max-width: 991px) {
  .layout--split {
    flex-direction: column;
  }
}

.layout__content {
  padding: var(--section-padding-y, 4rem) var(--gutter, 15px);
}
.layout--split .layout__content {
  padding-right: calc((100vw - var(--container-max-width, 1200px)) / 4);
}
@media (max-width: var(--container-max-width, 1200px)) {
  .layout--split .layout__content {
    padding-right: var(--gutter, 15px);
  }
}
.layout--split.layout--media-left .layout__content {
  padding-left: calc((100vw - var(--container-max-width, 1200px)) / 4);
  padding-right: var(--gutter, 15px);
}
@media (max-width: var(--container-max-width, 1200px)) {
  .layout--split.layout--media-left .layout__content {
    padding-left: var(--gutter, 15px);
  }
}

.layout__media {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.layout__media img,
.layout__media video,
.layout__media .swiper,
.layout__media .ce-track-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.layout__media .swiper,
.layout__media .ce-track-wrap {
  position: relative;
  height: 100%;
}
@media (max-width: 991px) {
  .layout__media {
    min-height: 250px;
    position: relative;
  }
  .layout__media img, .layout__media video {
    position: relative;
    height: auto;
  }
}

.layout--media-left {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .layout--media-left {
    flex-direction: column;
  }
}

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

.col-half-section {
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  max-width: 555px;
  margin-left: 30px;
  margin-right: 0;
}
.col-half-section.col-half-section-right {
  margin-left: 0;
  margin-right: 30px;
}
@media (max-width: 1199px) {
  .col-half-section {
    max-width: 465px;
  }
}
@media (max-width: 991px) {
  .col-half-section {
    max-width: 720px;
    margin: 0 auto !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
@media (max-width: 767px) {
  .col-half-section {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .col-half-section {
    max-width: 100%;
  }
}

/***

====================================================================
	Scroll To Top style
====================================================================

***/
/* backtoup */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 40px;
  height: 35px;
  width: 35px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  transform: translateY(15px);
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -o-transform: translateY(15px);
}

.progress-wrap::after {
  position: absolute;
  content: "\f176";
  font-family: var(--font-awesome);
  text-align: center;
  line-height: 35px;
  font-size: 15px;
  color: var(--primary);
  left: 0;
  top: 0;
  height: 35px;
  width: 35px;
  cursor: pointer;
  display: block;
  font-weight: 700;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  font-size: 13px;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap.style2::after {
  color: var(--secondary);
}

.progress-wrap.style2 svg.progress-circle path {
  stroke: var(--secondary);
}

.progress-wrap.style3::after {
  color: var(--tertiary);
}

.progress-wrap.style3 svg.progress-circle path {
  stroke: var(--tertiary);
}

/***

====================================================================
	InfoBox One
====================================================================

***/
.infobox-one {
  position: relative;
  z-index: 10;
}

.infobox-one .inner-container {
  position: relative;
}

.infobox-one .inner-container::before {
  position: absolute;
  content: "";
  left: 0;
  top: -280px;
  width: 600px;
  height: 550px;
  background-color: var(--primary);
  background-image: var(--box-bg-image);
  background-position: left top;
  background-repeat: no-repeat;
}

.infobox-one h2, .infobox-one .h2 {
  position: relative;
  margin-top: 70px;
  margin-bottom: 35px;
}

.infobox-one_image {
  position: relative;
  text-align: right;
  margin-right: 40px;
  margin-top: -100px;
}

.infobox-one_image:before {
  position: absolute;
  content: "";
  right: 100%;
  top: -180px;
  bottom: 0px;
  width: 300%;
  background-color: var(--white);
}

/* =========================================================
   ABOUT SIDEBAR
   ========================================================= */
.about-sidebar {
  position: fixed;
  left: -500px;
  top: 0;
  bottom: 0;
  width: 450px;
  z-index: 999999;
  background-color: var(--white);
  transition: all 900ms ease;
}

.about-sidebar.active {
  left: 0;
}

.about-sidebar .gradient-layer {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  opacity: 0.6;
  z-index: -1;
  cursor: pointer;
  background-color: var(--black);
  transition: all 500ms ease;
}

.about-sidebar.active .gradient-layer {
  left: 100%;
  width: 500%;
}

.about-sidebar .close-button span {
  position: absolute;
  right: 20px;
  top: 10px;
  z-index: 10;
  width: 50px;
  height: 50px;
  font-size: 22px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  color: var(--black);
  background-color: var(--white);
  transition: all 300ms ease;
}

.about-sidebar .close-button span:hover {
  color: var(--white);
  background-color: var(--primary);
}

.about-sidebar .sidebar-inner {
  position: relative;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-sidebar .upper-box {
  position: relative;
}

.about-sidebar .image img {
  display: block;
  width: 100%;
  height: auto;
}

.about-sidebar .content-box {
  position: relative;
  padding: 30px 50px;
}

.about-sidebar h3, .about-sidebar .h3 {
  margin-bottom: 15px;
  color: var(--black);
}

.about-sidebar h3 span, .about-sidebar .h3 span {
  font-weight: 700;
}

.about-sidebar .text {
  margin-top: 15px;
  margin-bottom: 30px;
  line-height: 28px;
  color: var(--gray-700);
}

.about-sidebar_list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-sidebar_list li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--black);
}

.about-sidebar_list li:last-child {
  margin-bottom: 0;
}

.about-sidebar_list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

.about-sidebar .social-box {
  position: relative;
  margin-left: 50px;
  margin-bottom: 35px;
}

.about-sidebar .social-box a {
  display: inline-block;
  margin-right: 15px;
  font-size: 18px;
  color: var(--black);
  transition: color 0.3s ease;
}

.about-sidebar .social-box a:hover {
  color: var(--primary);
}

.about-sidebar .sidebar-inner::-webkit-scrollbar {
  width: 8px;
}

.about-sidebar .sidebar-inner::-webkit-scrollbar-track {
  background: #dddddd;
}

.about-sidebar .sidebar-inner::-webkit-scrollbar-thumb {
  background-color: var(--primary);
}

.about-sidebar .sidebar-inner::-webkit-scrollbar-thumb:hover {
  background: #555555;
}

@media (max-width: 575.98px) {
  .about-sidebar {
    width: 100%;
    left: -100%;
  }
  .about-sidebar .content-box {
    padding: 24px 24px 30px;
  }
  .about-sidebar .social-box {
    margin-left: 24px;
    margin-bottom: 24px;
  }
  .about-sidebar .close-button span {
    right: 10px;
    top: 10px;
  }
}
.ce-track-wrap {
  --ce-card-w: 160px;
  --ce-card-h: 240px;
  --ce-gap: 8px;
  --ce-radius: 8px;
  --ce-foot-color: #1a1a2e;
  --ce-hover-color: #2d1b69;
  --ce-step1-scale: 1.15;
  --ce-step2-scale: 1.35;
  --ce-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ce-track-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: calc(var(--ce-card-h) * 0.35) 0;
  margin: calc(var(--ce-card-h) * -0.35) 0;
}

.ce-track {
  display: flex;
  gap: var(--ce-gap);
  padding: calc(var(--ce-card-h) * 0.35) 16px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.ce-card {
  flex: 0 0 var(--ce-card-w);
  width: var(--ce-card-w);
  height: var(--ce-card-h);
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: z-index 0s;
}

.ce-card__inner {
  position: absolute;
  inset: 0;
  border-radius: var(--ce-radius);
  overflow: hidden;
  background: #111;
  transition: width var(--ce-transition), height var(--ce-transition), top var(--ce-transition), left var(--ce-transition), transform var(--ce-transition), box-shadow var(--ce-transition);
  will-change: width, height, top, transform;
}

.ce-card__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ce-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: opacity 0.4s ease;
}
.ce-card__img img.ce-card__img--expanded {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.ce-card__badges {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
}

.ce-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.4;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  backdrop-filter: blur(4px);
}
.ce-badge img, .ce-badge svg {
  height: 14px;
  width: auto;
}

.ce-card__foot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 40px 12px 12px;
  background: linear-gradient(to top, var(--ce-foot-color) 0%, transparent 100%);
  transition: background 0.3s ease, opacity 0.3s ease;
}

.ce-card__logo {
  display: block;
  max-height: 36px;
  max-width: 80%;
  object-fit: contain;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.ce-card__title-logo {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 2px;
  line-height: 1.2;
}

.ce-card__meta {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin: 0;
}

.ce-card__expanded {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 80px 16px 16px;
  background: linear-gradient(to top, var(--ce-hover-color) 0%, var(--ce-hover-color) 40%, transparent 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.ce-card__exp-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.3;
}

.ce-card__exp-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ce-card__exp-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ce-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.ce-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}
.ce-btn--primary {
  background: rgba(255, 255, 255, 0.95);
  color: #111;
}
.ce-btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ce-card.is-hovered {
  z-index: 10;
}
.ce-card.is-hovered .ce-card__inner {
  top: calc((var(--ce-card-h) * var(--ce-step1-scale) - var(--ce-card-h)) / -2);
  height: calc(var(--ce-card-h) * var(--ce-step1-scale));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.ce-card.is-hovered .ce-card__foot {
  background: linear-gradient(to top, var(--ce-hover-color) 0%, transparent 100%);
}

.ce-card.is-expanded {
  z-index: 20;
}
.ce-card.is-expanded .ce-card__inner {
  height: calc(var(--ce-card-h) * var(--ce-step2-scale));
  width: var(--ce-card-expand-w, calc(var(--ce-card-w) * 2 + var(--ce-gap)));
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7);
}
.ce-card.is-expanded .ce-card__img img:not(.ce-card__img--expanded) {
  opacity: 0;
}
.ce-card.is-expanded .ce-card__img--expanded {
  opacity: 1 !important;
}
.ce-card.is-expanded .ce-card__foot {
  opacity: 0;
  pointer-events: none;
}
.ce-card.is-expanded .ce-card__expanded {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ce-card[data-ce-pos=mid].is-expanded .ce-card__inner {
  top: calc((var(--ce-card-h) * var(--ce-step2-scale) - var(--ce-card-h)) / -2);
  left: calc((var(--ce-card-w) * 2 + var(--ce-gap) - var(--ce-card-w)) / -2);
}

.ce-card[data-ce-pos=first].is-expanded .ce-card__inner {
  top: calc((var(--ce-card-h) * var(--ce-step2-scale) - var(--ce-card-h)) / -2);
  left: 0;
}

.ce-card[data-ce-pos=last].is-expanded .ce-card__inner {
  top: calc((var(--ce-card-h) * var(--ce-step2-scale) - var(--ce-card-h)) / -2);
  right: 0;
  left: auto;
  left: calc(-1 * (var(--ce-card-w) + var(--ce-gap)));
}

.ce-card.is-hovered:not(.is-expanded) .ce-card__inner {
  top: calc((var(--ce-card-h) * var(--ce-step1-scale) - var(--ce-card-h)) / -2);
}

.ce-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
  opacity: 0;
}
.ce-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}
.ce-nav--prev {
  left: 8px;
}
.ce-nav--next {
  right: 8px;
}
.ce-nav.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.ce-track-wrap:hover .ce-nav:not(.is-hidden) {
  opacity: 1;
}

.ce-section {
  margin-bottom: 2.5rem;
}

.ce-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 16px;
  margin-bottom: 0.75rem;
}

.ce-section__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.ce-section__all {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ce-section__all:hover {
  text-decoration: none;
  color: var(--primary);
  opacity: 0.8;
}

.gfx-panels {
  --gfx-h: 50vh;
  --gfx-gap: 6px;
  --gfx-flex: 5;
  --gfx-flex-min: 1;
  --gfx-radius: 10px;
  --gfx-overlay: 0.3;
  display: flex;
  width: 100%;
  gap: var(--gfx-gap);
  height: var(--gfx-h);
}
.gfx-panels.gfx-panels--full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.gfx-panel {
  position: relative;
  flex: var(--gfx-flex-min);
  overflow: hidden;
  border-radius: var(--gfx-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  opacity: 0.6;
  transition: flex 300ms ease-in-out, opacity 300ms ease-in-out;
}
.gfx-panel.active {
  flex: var(--gfx-flex);
  opacity: 1;
}
.gfx-panel.active .gfx-panel__title {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
  transition: opacity 350ms cubic-bezier(0.3, 0.7, 0.1, 1.6) 200ms, filter 350ms cubic-bezier(0.3, 0.7, 0.1, 1.6) 200ms, transform 350ms cubic-bezier(0.3, 0.7, 0.1, 1.6) 200ms;
}
.gfx-panel.active .gfx-panel__desc {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 350ms cubic-bezier(0.3, 0.7, 0.1, 1.6) 300ms, transform 350ms cubic-bezier(0.3, 0.7, 0.1, 1.6) 300ms;
}

.gfx-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  transition: transform 600ms ease;
  transform: scale(1);
}

.gfx-panel.active img {
  transform: scale(1.03);
}

.gfx-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, calc(var(--gfx-overlay) * 2)) 0%, rgba(0, 0, 0, var(--gfx-overlay)) 50%, rgba(0, 0, 0, calc(var(--gfx-overlay) * 0.3)) 100%);
  pointer-events: none;
  z-index: 1;
}

.gfx-panel__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.5rem;
}

.gfx-panel__title {
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.4rem;
  line-height: 1.2;
  opacity: 0;
  filter: blur(4px);
  transform: translateX(-20px);
  transition: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gfx-panel__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 767px) {
  .gfx-panels {
    flex-direction: column;
    height: auto;
  }
  .gfx-panel {
    flex: 1 0 auto !important;
    height: var(--gfx-h);
    opacity: 1;
  }
  .gfx-panel .gfx-panel__title {
    opacity: 1;
    filter: none;
    transform: none;
  }
  .gfx-panel .gfx-panel__desc {
    opacity: 1;
    transform: none;
  }
}
.gfx-showcase {
  --gfx-sc-h: 60vh;
  --gfx-sc-gap: 12px;
  --gfx-sc-color: rgba(178, 85, 197, 0.6);
  display: flex;
  width: 100%;
  height: var(--gfx-sc-h);
  gap: var(--gfx-sc-gap);
}
.gfx-showcase.gfx-showcase--full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.gfx-showcase.gfx-showcase--tall {
  --gfx-sc-h: 80vh;
}
.gfx-showcase.gfx-showcase--short {
  --gfx-sc-h: 40vh;
}

.gfx-showcase__card {
  flex: 1;
  position: relative;
  background: #222;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.65);
  cursor: pointer;
  overflow: hidden;
}
.gfx-showcase__card:hover {
  overflow: initial;
  z-index: 10;
}

.gfx-showcase__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(98, 89, 89, 0.53) 0%, rgba(40, 40, 40, 0.7) 50%, rgba(64, 64, 64, 0.81) 100%);
  z-index: 1;
}
.gfx-showcase__bg img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  transform: translate(-150%, 25%) scale(7.1);
  position: relative;
  z-index: 1;
}

.gfx-showcase__card:hover .gfx-showcase__bg {
  transform: scaleY(1.2);
  background: var(--gfx-sc-color);
}
.gfx-showcase__card:hover .gfx-showcase__bg img {
  opacity: 0;
}

.gfx-showcase__figure {
  position: absolute;
  top: -13vh;
  left: 50%;
  transform: translateX(-50%);
  width: 820px;
  height: 820px;
  z-index: 3;
  pointer-events: none;
}
.gfx-showcase__figure img {
  width: 820px;
  height: 820px;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gfx-showcase__card:hover .gfx-showcase__figure img {
  opacity: 1;
}

.gfx-showcase__name {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -25%);
  font-family: sans-serif;
  font-size: clamp(12px, 1.3vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  z-index: 100;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.gfx-showcase__card:hover .gfx-showcase__name {
  color: #fff;
  transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  .gfx-showcase {
    flex-direction: column;
    height: auto;
  }
  .gfx-showcase.gfx-showcase--full {
    width: 100%;
    margin-left: 0;
  }
  .gfx-showcase__card {
    flex: none;
    height: 120px;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .gfx-showcase__card:focus, .gfx-showcase__card.is-active {
    height: 60vw;
    overflow: visible;
    z-index: 10;
  }
  .gfx-showcase__figure {
    width: 100vw;
    height: 100vw;
    top: -10vw;
  }
  .gfx-showcase__figure img {
    width: 100vw;
    height: 100vw;
  }
  .gfx-showcase__name {
    font-size: clamp(14px, 4vw, 22px);
    color: rgba(255, 255, 255, 0.6);
  }
  .gfx-showcase__card:focus .gfx-showcase__name,
  .gfx-showcase__card.is-active .gfx-showcase__name {
    color: #fff;
  }
  .gfx-showcase__card:focus .gfx-showcase__bg,
  .gfx-showcase__card.is-active .gfx-showcase__bg {
    transform: scaleY(1.1);
    background: var(--gfx-sc-color);
  }
  .gfx-showcase__card:focus .gfx-showcase__bg img,
  .gfx-showcase__card.is-active .gfx-showcase__bg img {
    opacity: 0;
  }
  .gfx-showcase__card:focus .gfx-showcase__figure img,
  .gfx-showcase__card.is-active .gfx-showcase__figure img {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .gfx-showcase--scroll-mobile {
    flex-direction: row;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    height: 70vh;
    scrollbar-width: none;
  }
  .gfx-showcase--scroll-mobile::-webkit-scrollbar {
    display: none;
  }
  .gfx-showcase--scroll-mobile.gfx-showcase--full {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
  .gfx-showcase--scroll-mobile .gfx-showcase__card {
    flex: none;
    width: 25vw;
    height: 100%;
    overflow: hidden;
    scroll-snap-align: center;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), overflow 0.4s;
  }
  .gfx-showcase--scroll-mobile .gfx-showcase__card.is-active {
    width: 75vw;
    overflow: visible;
    z-index: 10;
  }
  .gfx-showcase--scroll-mobile .gfx-showcase__figure {
    width: 120vw;
    height: 120vw;
    top: -30vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .gfx-showcase--scroll-mobile .gfx-showcase__figure img {
    width: 120vw;
    height: 120vw;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .gfx-showcase--scroll-mobile .gfx-showcase__name {
    font-size: clamp(12px, 3.5vw, 20px);
    color: rgba(255, 255, 255, 0.6);
  }
  .gfx-showcase--scroll-mobile .gfx-showcase__card.is-active .gfx-showcase__name {
    color: #fff;
  }
  .gfx-showcase--scroll-mobile .gfx-showcase__card.is-active .gfx-showcase__bg {
    transform: scaleY(1.1);
    background: var(--gfx-sc-color);
  }
  .gfx-showcase--scroll-mobile .gfx-showcase__card.is-active .gfx-showcase__bg img {
    opacity: 0;
  }
  .gfx-showcase--scroll-mobile .gfx-showcase__card.is-active .gfx-showcase__figure img {
    opacity: 1;
  }
  .gfx-showcase__card:focus .gfx-showcase__bg,
  .gfx-showcase__card.is-active .gfx-showcase__bg {
    transform: scaleY(1.1);
    background: var(--gfx-sc-color);
  }
  .gfx-showcase__card:focus .gfx-showcase__bg img,
  .gfx-showcase__card.is-active .gfx-showcase__bg img {
    opacity: 0;
  }
  .gfx-showcase__card:focus .gfx-showcase__figure img,
  .gfx-showcase__card.is-active .gfx-showcase__figure img {
    opacity: 1;
  }
}
.gfx-accordion__scene {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.gfx-accordion__label {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #9fff6b;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}
.gfx-accordion__label::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #9fff6b;
  border-radius: 50%;
}

.gfx-accordion {
  display: flex;
  height: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .gfx-accordion {
    flex-direction: column;
  }
}

.gfx-accordion__slide {
  flex: 1;
  position: relative;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  filter: grayscale(1);
  transition: flex 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.gfx-accordion__slide:hover {
  filter: grayscale(0);
}
.gfx-accordion__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 80%);
  z-index: 1;
}
.gfx-accordion__slide--active {
  flex: 2.5;
  filter: grayscale(0);
}
@media (max-width: 768px) {
  .gfx-accordion__slide--active {
    flex: 2;
  }
}
@media (max-width: 768px) {
  .gfx-accordion__slide {
    min-height: 80px;
  }
}

.gfx-accordion__content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: #fff;
  z-index: 2;
}
.gfx-accordion__slide--active .gfx-accordion__content {
  bottom: 80px;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.gfx-accordion__number {
  font-size: 64px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
  position: absolute;
  bottom: 30px;
  left: 30px;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
.gfx-accordion__slide--active .gfx-accordion__number {
  bottom: auto;
  top: -50px;
  font-size: 48px;
  left: 0;
}

.gfx-accordion__category {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  position: absolute;
  bottom: 100px;
  left: 30px;
  white-space: nowrap;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.gfx-accordion__slide--active .gfx-accordion__category {
  transform: rotate(0deg);
  transform-origin: unset;
  position: static;
}

.gfx-accordion__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.gfx-accordion__slide--active .gfx-accordion__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.gfx-accordion__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.gfx-accordion__slide--active .gfx-accordion__subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.gfx-accordion__specs {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.gfx-accordion__slide--active .gfx-accordion__specs {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.gfx-accordion__spec-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 14px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gfx-accordion__slide--active .gfx-accordion__spec-row {
  opacity: 1;
  transform: translateX(0);
}
.gfx-accordion__slide--active .gfx-accordion__spec-row:nth-child(1) {
  transition-delay: 0.6s;
}
.gfx-accordion__slide--active .gfx-accordion__spec-row:nth-child(2) {
  transition-delay: 0.65s;
}
.gfx-accordion__slide--active .gfx-accordion__spec-row:nth-child(3) {
  transition-delay: 0.7s;
}
.gfx-accordion__slide--active .gfx-accordion__spec-row:nth-child(4) {
  transition-delay: 0.75s;
}

.gfx-accordion__spec-label {
  color: rgba(255, 255, 255, 0.7);
}

.gfx-accordion__spec-value {
  color: #fff;
  font-weight: 600;
}

.gfx-accordion__badges {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.gfx-accordion__slide--active .gfx-accordion__badges {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.gfx-accordion__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.gfx-accordion__slide--active .gfx-accordion__badge {
  opacity: 1;
  transform: scale(1);
}
.gfx-accordion__slide--active .gfx-accordion__badge:nth-child(1) {
  transition-delay: 0.85s;
}
.gfx-accordion__slide--active .gfx-accordion__badge:nth-child(2) {
  transition-delay: 0.9s;
}
.gfx-accordion__slide--active .gfx-accordion__badge:nth-child(3) {
  transition-delay: 0.95s;
}
.gfx-accordion__badge-dot {
  width: 8px;
  height: 8px;
  background: #9fff6b;
  border-radius: 50%;
}

.gfx-accordion__btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 2px solid #9fff6b;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 3;
}
.gfx-accordion__btn::before, .gfx-accordion__btn::after {
  content: "";
  position: absolute;
  background: #9fff6b;
  transition: all 0.4s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gfx-accordion__btn::before {
  width: 12px;
  height: 2px;
}
.gfx-accordion__btn::after {
  width: 2px;
  height: 12px;
}
.gfx-accordion__slide--active .gfx-accordion__btn::after {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

.gfx-accordion__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 4;
  backdrop-filter: blur(10px);
}
.gfx-accordion__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}
.gfx-accordion__nav--prev {
  left: 20px;
}
.gfx-accordion__nav--next {
  right: 20px;
}

.img-donut-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.img-donut-bg {
  aspect-ratio: 1/1;
  width: 80%;
  max-width: 480px;
  background: #fff;
  border-radius: 100%;
  margin: 10%;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 2;
}
.img-donut-bg::before {
  content: "";
  display: block;
  width: 110%;
  height: 110%;
  position: absolute;
  top: 0;
  left: -6%;
  border-radius: 50%;
  border: 1px solid #e7e7e7;
  z-index: 1;
  pointer-events: none;
}

.img-donut-ring {
  height: 100%;
  aspect-ratio: 1/1;
  width: 100%;
  opacity: 0.85;
  background-color: #fff;
  border-width: 70px;
  border-style: solid;
  border-color: var(--primary);
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.img-donut-portrait {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 55%;
  aspect-ratio: 1/1;
}
.img-donut-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-donut-card {
  position: absolute;
  bottom: 8%;
  left: -2%;
  z-index: 10;
  background-color: var(--bg-elevated, #fff);
  border-radius: var(--border-radius-2x);
  padding: 0.875rem 1.25rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
@media (max-width: 575px) {
  .img-donut-card {
    left: 5%;
    bottom: -3rem;
  }
}

.img-donut-card-icon {
  width: 3.25rem;
  height: 3.25rem;
  min-width: 3.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 0.875rem;
  background-color: var(--tertiary);
  color: var(--on-tertiary, #191a1c);
}

.img-donut-card-body {
  display: flex;
  flex-direction: column;
  padding-right: 0.5rem;
}
.img-donut-card-body span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-soft);
  line-height: 1.2;
  margin-bottom: 0.2rem;
  font-weight: 500;
}
.img-donut-card-body strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.img-donut-ring.border-color-primary {
  border-color: var(--primary);
}

.img-donut-ring.border-color-secondary {
  border-color: var(--secondary);
}

.img-donut-ring.border-color-tertiary {
  border-color: var(--tertiary);
}

.img-donut-ring.border-color-quaternary {
  border-color: var(--quaternary);
}

.img-donut-ring.border-color-success {
  border-color: var(--success);
}

.img-donut-ring.border-color-info {
  border-color: var(--info);
}

.img-donut-ring.border-color-warning {
  border-color: var(--warning);
}

.img-donut-ring.border-color-danger {
  border-color: var(--danger);
}

.img-donut-ring.border-color-light {
  border-color: var(--light);
}

.img-donut-ring.border-color-dark {
  border-color: var(--dark);
}

.img-donut-ring.border-color-red {
  border-color: var(--color-red);
}

.img-donut-ring.border-color-orange {
  border-color: var(--color-orange);
}

.img-donut-ring.border-color-amber {
  border-color: var(--color-amber);
}

.img-donut-ring.border-color-yellow {
  border-color: var(--color-yellow);
}

.img-donut-ring.border-color-lime {
  border-color: var(--color-lime);
}

.img-donut-ring.border-color-acid {
  border-color: var(--color-acid);
}

.img-donut-ring.border-color-green {
  border-color: var(--color-green);
}

.img-donut-ring.border-color-emerald {
  border-color: var(--color-emerald);
}

.img-donut-ring.border-color-teal {
  border-color: var(--color-teal);
}

.img-donut-ring.border-color-cyan {
  border-color: var(--color-cyan);
}

.img-donut-ring.border-color-sky {
  border-color: var(--color-sky);
}

.img-donut-ring.border-color-blue {
  border-color: var(--color-blue);
}

.img-donut-ring.border-color-indigo {
  border-color: var(--color-indigo);
}

.img-donut-ring.border-color-violet {
  border-color: var(--color-violet);
}

.img-donut-ring.border-color-purple {
  border-color: var(--color-purple);
}

.img-donut-ring.border-color-pink {
  border-color: var(--color-pink);
}

.img-donut-ring.border-color-rose {
  border-color: var(--color-rose);
}

.img-donut-sm .img-donut-bg {
  max-width: 340px;
}
.img-donut-sm .img-donut-ring {
  border-width: 50px;
}

.img-donut-lg .img-donut-bg {
  max-width: 580px;
}
.img-donut-lg .img-donut-ring {
  border-width: 85px;
}

.gallery-expand {
  --ge-height: 415px;
  --ge-gap: 20px;
  --ge-radius: 20px;
  --ge-flex-expand: 3;
  --ge-speed: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: var(--ge-gap);
}
.gallery-expand > * {
  background-color: #fff;
  border-radius: var(--ge-radius);
  overflow: hidden;
  flex: 1;
  height: var(--ge-height);
  position: relative;
  transition: flex var(--ge-speed) ease;
  cursor: pointer;
}
.gallery-expand > * img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}
.gallery-expand > *:hover {
  flex: var(--ge-flex-expand);
}
@media (max-width: 767px) {
  .gallery-expand {
    flex-direction: column;
    gap: calc(var(--ge-gap) * 0.75);
  }
  .gallery-expand > * {
    width: 100%;
    height: 220px;
    flex: none;
  }
  .gallery-expand > * img {
    height: 220px;
    width: 100%;
    object-fit: cover;
  }
  .gallery-expand > *:hover {
    flex: none;
  }
}

.gallery-expand-sm {
  --ge-height: 280px;
}

.gallery-expand-lg {
  --ge-height: 560px;
}

.gallery-expand-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.ge-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  color: #fff;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.gallery-expand > *:hover .ge-caption {
  opacity: 1;
  transform: translateY(0);
}

.process {
  text-align: center;
}
.process .process-step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.process .process-step-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
  width: 90px;
  border: 2px solid var(--gray-400);
  border-radius: 50%;
  position: relative;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}
.process .process-step-circle-content {
  font-weight: bold;
  color: var(--dark);
  font-size: 1.6em;
  letter-spacing: -1px;
  transition: all 0.2s ease-in-out;
}
.process .process-step-content {
  padding-top: 20px;
}
.process .process-step:hover .process-step-circle {
  background-color: var(--primary);
  border-color: var(--primary);
}
.process .process-step:hover .process-step-circle .process-step-circle-content {
  color: var(--on-primary);
}

@media (min-width: 992px) {
  .process .process-step::before {
    content: "";
    height: 2px;
    display: block;
    background-color: var(--gray-300);
    position: absolute;
    width: 50%;
    top: 45px;
    left: 75%;
  }
  .process .process-step:last-child::before {
    display: none;
  }
}
.process-vertical {
  text-align: left;
}
.process-vertical .process-step {
  width: 100%;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding-bottom: 60px;
}
.process-vertical .process-step::before {
  display: none;
}
.process-vertical .process-step::after {
  content: "";
  width: 2px;
  display: block;
  background-color: var(--gray-300);
  position: absolute;
  height: calc(100% - 80px);
  top: 70px;
  left: 29px;
}
.process-vertical .process-step:last-child::after {
  display: none;
}
.process-vertical .process-step-circle {
  height: 60px;
  width: 60px;
  min-height: 60px;
  min-width: 60px;
  margin: 0 15px 0 0;
  flex-shrink: 0;
}
.process-vertical .process-step-content {
  padding-top: 0;
}

.process-shapes .process-step-circle {
  position: relative;
  width: auto;
  height: auto;
  border: 0;
  margin-bottom: 1.2rem;
}
.process-shapes .process-step-circle .process-step-circle-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--primary);
  border-radius: 100%;
  color: var(--on-primary);
  z-index: 3;
}
.process-shapes .process-step-circle::before, .process-shapes .process-step-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  border-radius: 100%;
  opacity: 0.6;
  transform: translate3d(-50%, -50%, 0) scale(1.5);
  z-index: 2;
}
.process-shapes .process-step-circle::after {
  background-color: var(--primary-400);
  opacity: 0.3;
  transform: translate3d(-50%, -50%, 0) scale(2);
  z-index: 1;
}
.process-shapes.process-shapes-hover-animate .process-step:hover .process-step-circle::before {
  animation: processShapesScaleOne 3s linear infinite;
  animation-delay: 300ms;
}
.process-shapes.process-shapes-hover-animate .process-step:hover .process-step-circle::after {
  animation: processShapesScaleTwo 3s linear infinite;
}
.process-shapes.process-shapes-always-animate .process-step .process-step-circle::before {
  animation: processShapesScaleOne 3s linear infinite;
  animation-delay: 300ms;
}
.process-shapes.process-shapes-always-animate .process-step .process-step-circle::after {
  animation: processShapesScaleTwo 3s linear infinite;
}

@keyframes processShapesScaleOne {
  0% {
    opacity: 0.6;
    transform: translate3d(-50%, -50%, 0) scale(1.5);
  }
  25% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1.8);
  }
  50% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  100% {
    opacity: 0.6;
    transform: translate3d(-50%, -50%, 0) scale(1.5);
  }
}
@keyframes processShapesScaleTwo {
  0% {
    opacity: 0.3;
    transform: translate3d(-50%, -50%, 0) scale(2);
  }
  25% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(2.3);
  }
  50% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  100% {
    opacity: 0.3;
    transform: translate3d(-50%, -50%, 0) scale(2);
  }
}
.process .process-step-circle {
  border-color: var(--primary);
}

.process-color-primary .process-step-circle {
  border-color: var(--primary);
}
.process-color-primary .process-step:hover .process-step-circle {
  background-color: var(--primary);
  border-color: var(--primary);
}
.process-color-primary .process-step:hover .process-step-circle .process-step-circle-content {
  color: var(--on-primary) !important;
}

.process-color-secondary .process-step-circle {
  border-color: var(--secondary);
}
.process-color-secondary .process-step:hover .process-step-circle {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.process-color-secondary .process-step:hover .process-step-circle .process-step-circle-content {
  color: var(--on-secondary) !important;
}

.process-color-tertiary .process-step-circle {
  border-color: var(--tertiary);
}
.process-color-tertiary .process-step:hover .process-step-circle {
  background-color: var(--tertiary);
  border-color: var(--tertiary);
}
.process-color-tertiary .process-step:hover .process-step-circle .process-step-circle-content {
  color: var(--on-tertiary) !important;
}

.process-color-quaternary .process-step-circle {
  border-color: var(--quaternary);
}
.process-color-quaternary .process-step:hover .process-step-circle {
  background-color: var(--quaternary);
  border-color: var(--quaternary);
}
.process-color-quaternary .process-step:hover .process-step-circle .process-step-circle-content {
  color: var(--on-quaternary) !important;
}

.process-color-success .process-step-circle {
  border-color: var(--success);
}
.process-color-success .process-step:hover .process-step-circle {
  background-color: var(--success);
  border-color: var(--success);
}
.process-color-success .process-step:hover .process-step-circle .process-step-circle-content {
  color: var(--on-success) !important;
}

.process-color-info .process-step-circle {
  border-color: var(--info);
}
.process-color-info .process-step:hover .process-step-circle {
  background-color: var(--info);
  border-color: var(--info);
}
.process-color-info .process-step:hover .process-step-circle .process-step-circle-content {
  color: var(--on-info) !important;
}

.process-color-warning .process-step-circle {
  border-color: var(--warning);
}
.process-color-warning .process-step:hover .process-step-circle {
  background-color: var(--warning);
  border-color: var(--warning);
}
.process-color-warning .process-step:hover .process-step-circle .process-step-circle-content {
  color: var(--on-warning) !important;
}

.process-color-danger .process-step-circle {
  border-color: var(--danger);
}
.process-color-danger .process-step:hover .process-step-circle {
  background-color: var(--danger);
  border-color: var(--danger);
}
.process-color-danger .process-step:hover .process-step-circle .process-step-circle-content {
  color: var(--on-danger) !important;
}

.process-color-light .process-step-circle {
  border-color: var(--light);
}
.process-color-light .process-step:hover .process-step-circle {
  background-color: var(--light);
  border-color: var(--light);
}
.process-color-light .process-step:hover .process-step-circle .process-step-circle-content {
  color: var(--on-light) !important;
}

.process-color-dark .process-step-circle {
  border-color: var(--dark);
}
.process-color-dark .process-step:hover .process-step-circle {
  background-color: var(--dark);
  border-color: var(--dark);
}
.process-color-dark .process-step:hover .process-step-circle .process-step-circle-content {
  color: var(--on-dark) !important;
}

.list-icons {
  list-style: none;
  padding-left: 0;
  padding-right: 0;
}
.list-icons li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 13px;
}
.list-icons li > [class*=fa-]:first-child,
.list-icons li > i:first-child {
  position: absolute;
  left: 0;
  top: 5px;
}
.list-icons.list-icons-style-2 li {
  padding-top: 5px;
  padding-left: 36px;
}
.list-icons.list-icons-style-2 li > [class*=fa-]:first-child,
.list-icons.list-icons-style-2 li > i:first-child {
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  text-align: center;
  padding: 4px;
  font-size: 0.8em;
  line-height: 1.3;
}
.list-icons.list-icons-style-3 li {
  padding-top: 5px;
  padding-left: 36px;
}
.list-icons.list-icons-style-3 li > [class*=fa-]:first-child,
.list-icons.list-icons-style-3 li > i:first-child {
  color: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  text-align: center;
  padding: 5px;
  font-size: 0.8em;
  line-height: 1.3;
  background-color: var(--primary);
}
.list-icons.list-icons-sm li {
  padding-left: 13px;
  margin-bottom: 5px;
}
.list-icons.list-icons-sm li > [class*=fa-]:first-child,
.list-icons.list-icons-sm li > i:first-child {
  font-size: 0.8em;
  top: 7px;
}
.list-icons.list-icons-sm.list-icons-style-2 li {
  padding-left: 32px;
}
.list-icons.list-icons-sm.list-icons-style-3 li {
  padding-left: 32px;
}
.list-icons.list-icons-lg li {
  padding-top: 5px;
  padding-left: 27px;
}
.list-icons.list-icons-lg li > [class*=fa-]:first-child,
.list-icons.list-icons-lg li > i:first-child {
  font-size: 1.1em;
  line-height: 1.7;
}
.list-icons.list-icons-lg.list-icons-style-2 li {
  padding-top: 8px;
  padding-left: 42px;
}
.list-icons.list-icons-lg.list-icons-style-2 li > [class*=fa-]:first-child,
.list-icons.list-icons-lg.list-icons-style-2 li > i:first-child {
  width: 30px;
  height: 30px;
  padding: 4px;
}
.list-icons.list-icons-lg.list-icons-style-3 li {
  padding-top: 10px;
  padding-left: 46px;
}
.list-icons.list-icons-lg.list-icons-style-3 li > [class*=fa-]:first-child,
.list-icons.list-icons-lg.list-icons-style-3 li > i:first-child {
  width: 36px;
  height: 36px;
  padding: 4px;
}

.list-icons-primary li > [class*=fa-]:first-child,
.list-icons-primary li > i:first-child {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}
.list-icons-primary.list-icons-style-3 li > [class*=fa-]:first-child, .list-icons-primary.list-icons-style-3 li > i:first-child {
  background-color: var(--primary) !important;
  color: var(--on-primary) !important;
}

.list-icons-secondary li > [class*=fa-]:first-child,
.list-icons-secondary li > i:first-child {
  color: var(--secondary) !important;
  border-color: var(--secondary) !important;
}
.list-icons-secondary.list-icons-style-3 li > [class*=fa-]:first-child, .list-icons-secondary.list-icons-style-3 li > i:first-child {
  background-color: var(--secondary) !important;
  color: var(--on-secondary) !important;
}

.list-icons-tertiary li > [class*=fa-]:first-child,
.list-icons-tertiary li > i:first-child {
  color: var(--tertiary) !important;
  border-color: var(--tertiary) !important;
}
.list-icons-tertiary.list-icons-style-3 li > [class*=fa-]:first-child, .list-icons-tertiary.list-icons-style-3 li > i:first-child {
  background-color: var(--tertiary) !important;
  color: var(--on-tertiary) !important;
}

.list-icons-quaternary li > [class*=fa-]:first-child,
.list-icons-quaternary li > i:first-child {
  color: var(--quaternary) !important;
  border-color: var(--quaternary) !important;
}
.list-icons-quaternary.list-icons-style-3 li > [class*=fa-]:first-child, .list-icons-quaternary.list-icons-style-3 li > i:first-child {
  background-color: var(--quaternary) !important;
  color: var(--on-quaternary) !important;
}

.list-icons-success li > [class*=fa-]:first-child,
.list-icons-success li > i:first-child {
  color: var(--success) !important;
  border-color: var(--success) !important;
}
.list-icons-success.list-icons-style-3 li > [class*=fa-]:first-child, .list-icons-success.list-icons-style-3 li > i:first-child {
  background-color: var(--success) !important;
  color: var(--on-success) !important;
}

.list-icons-info li > [class*=fa-]:first-child,
.list-icons-info li > i:first-child {
  color: var(--info) !important;
  border-color: var(--info) !important;
}
.list-icons-info.list-icons-style-3 li > [class*=fa-]:first-child, .list-icons-info.list-icons-style-3 li > i:first-child {
  background-color: var(--info) !important;
  color: var(--on-info) !important;
}

.list-icons-warning li > [class*=fa-]:first-child,
.list-icons-warning li > i:first-child {
  color: var(--warning) !important;
  border-color: var(--warning) !important;
}
.list-icons-warning.list-icons-style-3 li > [class*=fa-]:first-child, .list-icons-warning.list-icons-style-3 li > i:first-child {
  background-color: var(--warning) !important;
  color: var(--on-warning) !important;
}

.list-icons-danger li > [class*=fa-]:first-child,
.list-icons-danger li > i:first-child {
  color: var(--danger) !important;
  border-color: var(--danger) !important;
}
.list-icons-danger.list-icons-style-3 li > [class*=fa-]:first-child, .list-icons-danger.list-icons-style-3 li > i:first-child {
  background-color: var(--danger) !important;
  color: var(--on-danger) !important;
}

.list-icons-light li > [class*=fa-]:first-child,
.list-icons-light li > i:first-child {
  color: var(--light) !important;
  border-color: var(--light) !important;
}
.list-icons-light.list-icons-style-3 li > [class*=fa-]:first-child, .list-icons-light.list-icons-style-3 li > i:first-child {
  background-color: var(--light) !important;
  color: var(--on-light) !important;
}

.list-icons-dark li > [class*=fa-]:first-child,
.list-icons-dark li > i:first-child {
  color: var(--dark) !important;
  border-color: var(--dark) !important;
}
.list-icons-dark.list-icons-style-3 li > [class*=fa-]:first-child, .list-icons-dark.list-icons-style-3 li > i:first-child {
  background-color: var(--dark) !important;
  color: var(--on-dark) !important;
}

.divider {
  border: 0;
  height: 1px;
  margin: 44px auto;
  background: rgba(0, 0, 0, 0.06);
  position: relative;
  clear: both;
}
.divider.divider-xs {
  width: 35%;
}
.divider.divider-sm {
  width: 67%;
}
.divider.divider-left {
  text-align: left;
}
.divider.divider-right {
  text-align: right;
}
.divider.divider-small {
  margin: 22px auto;
  background: transparent;
}
.divider.divider-small hr {
  width: 50px;
  height: 3px;
  background: var(--gray-600);
  margin: 0;
  border: none;
  opacity: 1;
}
.divider.divider-small.divider-small-center hr {
  margin-left: auto;
  margin-right: auto;
}
.divider.divider-small.divider-small-right hr {
  margin-left: auto;
}
.divider.divider-small.divider-small-sm hr {
  height: 1px;
}
.divider.divider-small.divider-small-lg hr {
  height: 6px;
}
.divider.divider-small.divider-animated hr {
  width: 0;
  animation: dividerProgressAnim 0.8s ease forwards;
  animation-delay: 0.3s;
}

@keyframes dividerProgressAnim {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}
.divider-small.divider-primary hr {
  background-color: var(--primary) !important;
}

.divider-small.divider-secondary hr {
  background-color: var(--secondary) !important;
}

.divider-small.divider-tertiary hr {
  background-color: var(--tertiary) !important;
}

.divider-small.divider-quaternary hr {
  background-color: var(--quaternary) !important;
}

.divider-small.divider-success hr {
  background-color: var(--success) !important;
}

.divider-small.divider-info hr {
  background-color: var(--info) !important;
}

.divider-small.divider-warning hr {
  background-color: var(--warning) !important;
}

.divider-small.divider-danger hr {
  background-color: var(--danger) !important;
}

.divider-small.divider-light hr {
  background-color: var(--light) !important;
}

.divider-small.divider-dark hr {
  background-color: var(--dark) !important;
}

.section-svg-diagonal {
  position: absolute;
  width: 1000%;
  height: 100.2%;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 991px) {
  .section-svg-diagonal {
    left: 77%;
  }
}
@media (max-width: 575px) {
  .section-svg-diagonal {
    left: 82%;
  }
}

.section-svg-line {
  stroke-dasharray: 2650;
  stroke-dashoffset: 2650;
  animation: svgLineDrawIn 2s ease forwards;
  animation-delay: 0.5s;
}

@keyframes svgLineDrawIn {
  from {
    stroke-dasharray: 2650;
    stroke-dashoffset: 2650;
  }
  to {
    stroke-dasharray: 2650;
    stroke-dashoffset: 0;
  }
}
.section-bg-auto {
  background-size: auto !important;
  background-repeat: no-repeat !important;
}
@media (max-width: 991px) {
  .section-bg-auto {
    background-size: cover !important;
  }
}

.gsap-fade-up {
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}

html.reveal-ready .gsap-fade-up {
  opacity: 0;
  transform: translateY(20px);
}

@media (prefers-reduced-motion: reduce) {
  .gsap-fade-up {
    opacity: 1 !important;
    transform: none !important;
    will-change: auto;
  }
}
[data-parallax],
[data-parallax-mouse] {
  --parallax-x: 0px;
  --parallax-y: 0px;
}

[data-parallax]:not([data-parallax-mouse]) {
  transform: translateY(var(--parallax-y));
}

[data-parallax-mouse]:not([data-parallax]) {
  transform: translate(var(--parallax-x), var(--parallax-y));
}

[data-parallax][data-parallax-mouse] {
  transform: translate(var(--parallax-x), var(--parallax-y));
}

.parallax-img {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
}

.parallax-wrap {
  position: relative;
  overflow: hidden;
}

.js-rotating-text-word {
  display: inline-block;
  min-width: 10ch;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.js-rotating-text-word.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.theme-btn {
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.centered {
  text-align: center;
}

::-webkit-input-placeholder {
  color: inherit;
}

::-moz-input-placeholder {
  color: inherit;
}

::-ms-input-placeholder {
  color: inherit;
}

/* Btn Style One */
.btn-style-one {
  position: relative;
  font-weight: 700;
  font-size: 15px;
  overflow: hidden;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  color: var(--white-color);
  text-transform: uppercase;
  padding: 17px 78px 16px 30px;
  font-family: "Manrope", sans-serif;
  background-color: var(--color-two);
  border: 1px solid rgba(var(--white-color-rgb), 0.15);
}

.btn-style-one:before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background-color: var(--primary);
}

.btn-style-one:hover {
  border: 1px solid rgba(var(--primary-rgb), 1);
}

.btn-style-one:hover i {
  transform: rotate(0deg);
  color: var(--white-color);
  background-color: var(--color-two);
}

.btn-style-one:hover:before {
  top: 0%;
}

.btn-style-one .btn-wrap {
  position: relative;
  z-index: 1;
  float: left;
  overflow: hidden;
  display: inline-block;
}

.btn-style-one i {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 1;
  width: 62px;
  height: 61px;
  font-size: 22px;
  line-height: 61px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  color: var(--color-two);
  transform: rotate(-45deg);
  background-color: var(--primary);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.btn-style-one .btn-wrap .text-one {
  position: relative;
  display: block;
  color: var(--white-color);
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.btn-style-one:hover .btn-wrap .text-one:first-child {
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}

.btn-style-one .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  display: block;
  color: var(--white-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-style-one:hover .btn-wrap .text-two {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-style-one:hover .btn-wrap .text-two {
  color: var(--white-color);
}

.btn-style-one:hover:before {
  top: -40%;
}

/* Btn Style Two */
.btn-style-two {
  position: relative;
  font-weight: 700;
  font-size: 15px;
  overflow: hidden;
  text-align: center;
  padding: 20px 48px;
  border-radius: 50px;
  display: inline-block;
  color: var(--black-color);
  text-transform: capitalize;
  font-family: "Manrope", sans-serif;
  background-color: var(--white-color);
}

.btn-style-two:before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background-color: var(--primary);
}

.btn-style-two:hover:before {
  top: 0%;
}

.btn-style-two .btn-wrap {
  position: relative;
  z-index: 1;
  float: left;
  overflow: hidden;
  display: inline-block;
}

.btn-style-two .btn-wrap .text-one {
  position: relative;
  display: block;
  color: var(--black-color);
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap .text-one:first-child {
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}

.btn-style-two .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  display: block;
  color: var(--white-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-style-two:hover .btn-wrap .text-two {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-style-two:hover .btn-wrap .text-two {
  color: var(--white-color);
}

.btn-style-two:hover:before {
  top: -40%;
}

/* Btn Style Three */
.btn-style-three {
  position: relative;
  font-weight: 700;
  font-size: 15px;
  overflow: hidden;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  color: var(--color-two);
  text-transform: uppercase;
  padding: 16px 90px 16px 35px;
  font-family: "Manrope", sans-serif;
  background-color: var(--white-color);
  border: 1px solid rgba(var(--black-color-rgb), 0.15);
}

.btn-style-three:before {
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: -200%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background-color: var(--primary);
}

.btn-style-three:hover {
  border: 1px solid rgba(var(--primary-rgb), 1);
}

.btn-style-three:hover i {
  transform: rotate(0deg);
  color: var(--white-color);
  background-color: var(--color-two);
}

.btn-style-three:hover:before {
  top: 0%;
}

.btn-style-three .btn-wrap {
  position: relative;
  z-index: 1;
  float: left;
  overflow: hidden;
  display: inline-block;
}

.btn-style-three i {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 1;
  width: 61px;
  height: 61px;
  font-size: 22px;
  line-height: 1 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-two);
  transform: rotate(-45deg);
  background-color: var(--primary);
  box-sizing: border-box !important;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.btn-style-three .btn-wrap .text-one {
  position: relative;
  display: block;
  color: var(--color-two);
  transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.btn-style-three:hover .btn-wrap .text-one:first-child {
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}

.btn-style-three .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  display: block;
  color: var(--white-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-style-three:hover .btn-wrap .text-two {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-style-three:hover .btn-wrap .text-two {
  color: var(--white-color);
}

.btn-style-three:hover:before {
  top: -40%;
}

/* =====================================================
   BOOTSTRAP ISOLATION
   Schützt alle eigenen Buttons vor Bootstrap-Resets.
   Bootstrap's reboot/type überschreibt line-height, box-sizing etc.
   ===================================================== */
.theme-btn,
.btn-style-one,
.btn-style-two,
.btn-style-three {
  box-sizing: border-box;
}
.theme-btn i, .theme-btn .fa, .theme-btn [class*=fa-],
.btn-style-one i,
.btn-style-one .fa,
.btn-style-one [class*=fa-],
.btn-style-two i,
.btn-style-two .fa,
.btn-style-two [class*=fa-],
.btn-style-three i,
.btn-style-three .fa,
.btn-style-three [class*=fa-] {
  line-height: 1;
  box-sizing: border-box;
}

/* =============================================================================
   BUTTONS EXTRA
   Zusätzliche Button-Stile aus dem DecMuc-Template.
   Kollidiert NICHT mit Bootstrap (.btn-primary etc.) oder
   eigenen Buttons (.btn-style-*).

   Verfügbare Klassen:
   Filled:  .btn-fullcolor  .btn-fullwhite  .btn-fullblack
   Lined:   .btn-lined
   Skewed:  .btn-skewed (kombinierbar mit beiden)
   Farben:  .lined-{color} für alle Theme-Colors
   ============================================================================= */
.btn-lined,
.btn-fullwhite,
.btn-fullblack,
.btn-fullcolor {
  display: inline-block;
  text-shadow: none;
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
  border-style: solid;
  border-radius: 3px;
  transition: background-color 0.15s ease-out, border-color 0.1s ease-in-out, color 0.1s ease-in-out;
  text-decoration: none;
  cursor: pointer;
  padding: 10px 20px;
  line-height: 1.6;
}

.btn-lined {
  border-width: 2px;
  background: none;
  color: #fff;
  border-color: #fff;
}
.btn-lined:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn-lined.lined-primary {
  color: #eaff48;
  border-color: #eaff48;
}
.btn-lined.lined-primary:hover {
  color: rgb(228.1475409836, 255, 21);
  border-color: rgb(228.1475409836, 255, 21);
}

.btn-lined.lined-secondary {
  color: #c67416;
  border-color: #c67416;
}
.btn-lined.lined-secondary:hover {
  color: rgb(152.1, 89.1090909091, 16.9);
  border-color: rgb(152.1, 89.1090909091, 16.9);
}

.btn-lined.lined-tertiary {
  color: #10b981;
  border-color: #10b981;
}
.btn-lined.lined-tertiary:hover {
  color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
  border-color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
}

.btn-lined.lined-quaternary {
  color: #780752;
  border-color: #780752;
}
.btn-lined.lined-quaternary:hover {
  color: rgb(71.811023622, 4.188976378, 49.0708661417);
  border-color: rgb(71.811023622, 4.188976378, 49.0708661417);
}

.btn-lined.lined-success {
  color: #7ece25;
  border-color: #7ece25;
}
.btn-lined.lined-success:hover {
  color: rgb(99.5555555556, 162.7654320988, 29.2345679012);
  border-color: rgb(99.5555555556, 162.7654320988, 29.2345679012);
}

.btn-lined.lined-info {
  color: #0ea5e9;
  border-color: #0ea5e9;
}
.btn-lined.lined-info:hover {
  color: rgb(11.1093117409, 130.9311740891, 184.8906882591);
  border-color: rgb(11.1093117409, 130.9311740891, 184.8906882591);
}

.btn-lined.lined-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-lined.lined-warning:hover {
  color: rgb(211, 158.25, 0);
  border-color: rgb(211, 158.25, 0);
}

.btn-lined.lined-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-lined.lined-danger:hover {
  color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}

.btn-lined.lined-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-lined.lined-light:hover {
  color: rgb(218.25, 223.5, 228.75);
  border-color: rgb(218.25, 223.5, 228.75);
}

.btn-lined.lined-dark {
  color: #191a1c;
  border-color: #191a1c;
}
.btn-lined.lined-dark:hover {
  color: rgb(0.9433962264, 0.9811320755, 1.0566037736);
  border-color: rgb(0.9433962264, 0.9811320755, 1.0566037736);
}

.btn-lined.lined-dark {
  color: #242424;
  border-color: #242424;
}
.btn-lined.lined-dark:hover {
  color: #343434;
}

.btn-lined.lined-gray {
  color: #8E8E8E;
  border-color: #8E8E8E;
}
.btn-lined.lined-gray:hover {
  color: #454545;
}

.btn-lined.lined-full-light {
  color: #242424;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.8);
}
.btn-lined.lined-full-light:hover {
  color: #343434;
  background-color: #fff;
}

.btn-lined.lined-full-dark {
  color: #e0e0e0;
  border-color: #000;
  background: rgba(0, 0, 0, 0.8);
}
.btn-lined.lined-full-dark:hover {
  color: #f9f9f9;
  background-color: #000;
}

.btn-fullwhite {
  background-color: #fff;
  color: #242424;
  border-width: 0;
}
.btn-fullwhite:hover {
  color: #353535;
  background-color: rgba(255, 255, 255, 0.85);
}

.btn-fullblack {
  background-color: #090909;
  color: #f9f9f9;
  border-width: 0;
}
.btn-fullblack:hover {
  color: #eee;
  background-color: rgba(0, 0, 0, 0.85);
}

.btn-fullcolor {
  background-color: var(--primary);
  color: var(--on-primary);
  border-width: 0;
}
.btn-fullcolor:hover {
  background-color: var(--primary-700);
  color: var(--on-primary);
}
.btn-fullcolor:focus {
  background-color: var(--primary);
  color: var(--on-primary);
}

.btn-full-primary {
  background-color: var(--primary);
  color: var(--on-primary);
  border-width: 0;
  padding: 10px 20px;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease-out;
}
.btn-full-primary:hover {
  background-color: var(--primary-700);
  color: var(--on-primary);
}

.btn-full-secondary {
  background-color: var(--secondary);
  color: var(--on-secondary);
  border-width: 0;
  padding: 10px 20px;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease-out;
}
.btn-full-secondary:hover {
  background-color: var(--secondary-700);
  color: var(--on-secondary);
}

.btn-full-tertiary {
  background-color: var(--tertiary);
  color: var(--on-tertiary);
  border-width: 0;
  padding: 10px 20px;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease-out;
}
.btn-full-tertiary:hover {
  background-color: var(--tertiary-700);
  color: var(--on-tertiary);
}

.btn-full-quaternary {
  background-color: var(--quaternary);
  color: var(--on-quaternary);
  border-width: 0;
  padding: 10px 20px;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease-out;
}
.btn-full-quaternary:hover {
  background-color: var(--quaternary-700);
  color: var(--on-quaternary);
}

.btn-full-success {
  background-color: var(--success);
  color: var(--on-success);
  border-width: 0;
  padding: 10px 20px;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease-out;
}
.btn-full-success:hover {
  background-color: var(--success-700);
  color: var(--on-success);
}

.btn-full-info {
  background-color: var(--info);
  color: var(--on-info);
  border-width: 0;
  padding: 10px 20px;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease-out;
}
.btn-full-info:hover {
  background-color: var(--info-700);
  color: var(--on-info);
}

.btn-full-warning {
  background-color: var(--warning);
  color: var(--on-warning);
  border-width: 0;
  padding: 10px 20px;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease-out;
}
.btn-full-warning:hover {
  background-color: var(--warning-700);
  color: var(--on-warning);
}

.btn-full-danger {
  background-color: var(--danger);
  color: var(--on-danger);
  border-width: 0;
  padding: 10px 20px;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease-out;
}
.btn-full-danger:hover {
  background-color: var(--danger-700);
  color: var(--on-danger);
}

.btn-full-light {
  background-color: var(--light);
  color: var(--on-light);
  border-width: 0;
  padding: 10px 20px;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease-out;
}
.btn-full-light:hover {
  background-color: var(--light-700);
  color: var(--on-light);
}

.btn-full-dark {
  background-color: var(--dark);
  color: var(--on-dark);
  border-width: 0;
  padding: 10px 20px;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease-out;
}
.btn-full-dark:hover {
  background-color: var(--dark-700);
  color: var(--on-dark);
}

.btn-lined.btn-skewed {
  border: 0;
  background: none;
  position: relative;
}
.btn-lined.btn-skewed:before {
  content: "";
  border: 2px solid #fff;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: skewX(-8deg);
}
.btn-lined.btn-skewed:hover:before {
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-lined.lined-dark.btn-skewed {
  border: 0;
}
.btn-lined.lined-dark.btn-skewed:before {
  border-color: #242424;
}
.btn-lined.lined-dark.btn-skewed:hover:before {
  border-color: rgba(0, 0, 0, 0.7);
}

.btn-lined.lined-gray.btn-skewed {
  border: 0;
}
.btn-lined.lined-gray.btn-skewed:before {
  border-color: #8E8E8E;
}
.btn-lined.lined-gray.btn-skewed:hover:before {
  border-color: rgba(0, 0, 0, 0.4);
}

.btn-lined.lined-primary.btn-skewed {
  border: 0;
}
.btn-lined.lined-primary.btn-skewed:before {
  border-color: #eaff48;
}
.btn-lined.lined-primary.btn-skewed:hover:before {
  border-color: rgb(228.1475409836, 255, 21);
}

.btn-lined.lined-secondary.btn-skewed {
  border: 0;
}
.btn-lined.lined-secondary.btn-skewed:before {
  border-color: #c67416;
}
.btn-lined.lined-secondary.btn-skewed:hover:before {
  border-color: rgb(152.1, 89.1090909091, 16.9);
}

.btn-lined.lined-tertiary.btn-skewed {
  border: 0;
}
.btn-lined.lined-tertiary.btn-skewed:before {
  border-color: #10b981;
}
.btn-lined.lined-tertiary.btn-skewed:hover:before {
  border-color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
}

.btn-lined.lined-quaternary.btn-skewed {
  border: 0;
}
.btn-lined.lined-quaternary.btn-skewed:before {
  border-color: #780752;
}
.btn-lined.lined-quaternary.btn-skewed:hover:before {
  border-color: rgb(71.811023622, 4.188976378, 49.0708661417);
}

.btn-lined.lined-success.btn-skewed {
  border: 0;
}
.btn-lined.lined-success.btn-skewed:before {
  border-color: #7ece25;
}
.btn-lined.lined-success.btn-skewed:hover:before {
  border-color: rgb(99.5555555556, 162.7654320988, 29.2345679012);
}

.btn-lined.lined-info.btn-skewed {
  border: 0;
}
.btn-lined.lined-info.btn-skewed:before {
  border-color: #0ea5e9;
}
.btn-lined.lined-info.btn-skewed:hover:before {
  border-color: rgb(11.1093117409, 130.9311740891, 184.8906882591);
}

.btn-lined.lined-warning.btn-skewed {
  border: 0;
}
.btn-lined.lined-warning.btn-skewed:before {
  border-color: #ffc107;
}
.btn-lined.lined-warning.btn-skewed:hover:before {
  border-color: rgb(211, 158.25, 0);
}

.btn-lined.lined-danger.btn-skewed {
  border: 0;
}
.btn-lined.lined-danger.btn-skewed:before {
  border-color: #dc3545;
}
.btn-lined.lined-danger.btn-skewed:hover:before {
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}

.btn-lined.lined-light.btn-skewed {
  border: 0;
}
.btn-lined.lined-light.btn-skewed:before {
  border-color: #f8f9fa;
}
.btn-lined.lined-light.btn-skewed:hover:before {
  border-color: rgb(218.25, 223.5, 228.75);
}

.btn-lined.lined-dark.btn-skewed {
  border: 0;
}
.btn-lined.lined-dark.btn-skewed:before {
  border-color: #191a1c;
}
.btn-lined.lined-dark.btn-skewed:hover:before {
  border-color: rgb(0.9433962264, 0.9811320755, 1.0566037736);
}

.btn-fullwhite.btn-skewed,
.btn-fullblack.btn-skewed,
.btn-fullcolor.btn-skewed {
  border: 0;
  background: none;
  position: relative;
  z-index: 0;
}
.btn-fullwhite.btn-skewed:hover,
.btn-fullblack.btn-skewed:hover,
.btn-fullcolor.btn-skewed:hover {
  border: 0;
  background: none;
}
.btn-fullwhite.btn-skewed:before,
.btn-fullblack.btn-skewed:before,
.btn-fullcolor.btn-skewed:before {
  content: "";
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: skewX(-8deg);
  transition: background-color 0.2s ease-in-out;
  z-index: -1;
}

.btn-fullcolor.btn-skewed:before {
  background-color: var(--primary);
}
.btn-fullcolor.btn-skewed:hover:before {
  background-color: var(--primary-700);
}

.btn-fullwhite.btn-skewed:before {
  background-color: #fff;
}
.btn-fullwhite.btn-skewed:hover:before {
  background-color: rgba(255, 255, 255, 0.85);
}

.btn-fullblack.btn-skewed:before {
  background-color: #090909;
}
.btn-fullblack.btn-skewed:hover:before {
  background-color: rgba(0, 0, 0, 0.85);
}

.btn-full-primary.btn-skewed {
  border: 0;
  background: none;
  position: relative;
  z-index: 0;
}
.btn-full-primary.btn-skewed:hover {
  border: 0;
  background: none;
}
.btn-full-primary.btn-skewed:before {
  content: "";
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary);
  transform: skewX(-8deg);
  transition: background-color 0.2s ease-in-out;
  z-index: -1;
}
.btn-full-primary.btn-skewed:hover:before {
  background-color: var(--primary-700);
}

.btn-full-secondary.btn-skewed {
  border: 0;
  background: none;
  position: relative;
  z-index: 0;
}
.btn-full-secondary.btn-skewed:hover {
  border: 0;
  background: none;
}
.btn-full-secondary.btn-skewed:before {
  content: "";
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--secondary);
  transform: skewX(-8deg);
  transition: background-color 0.2s ease-in-out;
  z-index: -1;
}
.btn-full-secondary.btn-skewed:hover:before {
  background-color: var(--secondary-700);
}

.btn-full-tertiary.btn-skewed {
  border: 0;
  background: none;
  position: relative;
  z-index: 0;
}
.btn-full-tertiary.btn-skewed:hover {
  border: 0;
  background: none;
}
.btn-full-tertiary.btn-skewed:before {
  content: "";
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--tertiary);
  transform: skewX(-8deg);
  transition: background-color 0.2s ease-in-out;
  z-index: -1;
}
.btn-full-tertiary.btn-skewed:hover:before {
  background-color: var(--tertiary-700);
}

.btn-full-quaternary.btn-skewed {
  border: 0;
  background: none;
  position: relative;
  z-index: 0;
}
.btn-full-quaternary.btn-skewed:hover {
  border: 0;
  background: none;
}
.btn-full-quaternary.btn-skewed:before {
  content: "";
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--quaternary);
  transform: skewX(-8deg);
  transition: background-color 0.2s ease-in-out;
  z-index: -1;
}
.btn-full-quaternary.btn-skewed:hover:before {
  background-color: var(--quaternary-700);
}

.btn-full-success.btn-skewed {
  border: 0;
  background: none;
  position: relative;
  z-index: 0;
}
.btn-full-success.btn-skewed:hover {
  border: 0;
  background: none;
}
.btn-full-success.btn-skewed:before {
  content: "";
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--success);
  transform: skewX(-8deg);
  transition: background-color 0.2s ease-in-out;
  z-index: -1;
}
.btn-full-success.btn-skewed:hover:before {
  background-color: var(--success-700);
}

.btn-full-info.btn-skewed {
  border: 0;
  background: none;
  position: relative;
  z-index: 0;
}
.btn-full-info.btn-skewed:hover {
  border: 0;
  background: none;
}
.btn-full-info.btn-skewed:before {
  content: "";
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--info);
  transform: skewX(-8deg);
  transition: background-color 0.2s ease-in-out;
  z-index: -1;
}
.btn-full-info.btn-skewed:hover:before {
  background-color: var(--info-700);
}

.btn-full-warning.btn-skewed {
  border: 0;
  background: none;
  position: relative;
  z-index: 0;
}
.btn-full-warning.btn-skewed:hover {
  border: 0;
  background: none;
}
.btn-full-warning.btn-skewed:before {
  content: "";
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--warning);
  transform: skewX(-8deg);
  transition: background-color 0.2s ease-in-out;
  z-index: -1;
}
.btn-full-warning.btn-skewed:hover:before {
  background-color: var(--warning-700);
}

.btn-full-danger.btn-skewed {
  border: 0;
  background: none;
  position: relative;
  z-index: 0;
}
.btn-full-danger.btn-skewed:hover {
  border: 0;
  background: none;
}
.btn-full-danger.btn-skewed:before {
  content: "";
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--danger);
  transform: skewX(-8deg);
  transition: background-color 0.2s ease-in-out;
  z-index: -1;
}
.btn-full-danger.btn-skewed:hover:before {
  background-color: var(--danger-700);
}

.btn-full-light.btn-skewed {
  border: 0;
  background: none;
  position: relative;
  z-index: 0;
}
.btn-full-light.btn-skewed:hover {
  border: 0;
  background: none;
}
.btn-full-light.btn-skewed:before {
  content: "";
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--light);
  transform: skewX(-8deg);
  transition: background-color 0.2s ease-in-out;
  z-index: -1;
}
.btn-full-light.btn-skewed:hover:before {
  background-color: var(--light-700);
}

.btn-full-dark.btn-skewed {
  border: 0;
  background: none;
  position: relative;
  z-index: 0;
}
.btn-full-dark.btn-skewed:hover {
  border: 0;
  background: none;
}
.btn-full-dark.btn-skewed:before {
  content: "";
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--dark);
  transform: skewX(-8deg);
  transition: background-color 0.2s ease-in-out;
  z-index: -1;
}
.btn-full-dark.btn-skewed:hover:before {
  background-color: var(--dark-700);
}

.btn-extra-lg {
  padding: 20px 30px;
  font-size: 18px;
  line-height: 1.333;
}
.btn-extra-lg.btn-lined {
  padding: 18px 30px;
}

.btn-extra-md {
  padding: 16px 25px;
  font-size: 14px;
  line-height: 1.333;
}
.btn-extra-md.btn-lined {
  padding: 14px 25px;
}

.btn-extra-sm {
  padding: 5px 10px 4px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
}
.btn-extra-sm.btn-lined {
  padding: 3px 10px 2px;
}

.btn-extra-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
}
.btn-extra-xs.btn-lined {
  padding: 1px 5px;
}

.btn-mega {
  position: relative;
  text-align: start;
  display: flex;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 4.5rem;
}
@media (min-width: 992px) {
  .btn-mega {
    padding-left: 0;
  }
}
.btn-mega > strong {
  flex: 1;
  display: inline-flex;
  align-items: center;
}
@media (min-width: 992px) {
  .btn-mega > strong {
    padding-left: 1rem;
  }
}

.btn-arrow-solid > span:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, transform 0.2s ease;
  height: 2.5rem;
  width: 2.5rem;
}
.btn-arrow-solid > span:last-child i {
  font-size: 0.9em;
  color: currentColor;
}
.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.35);
}

.btn-arrow-sm > span:last-child {
  height: 2rem;
  width: 2rem;
}
.btn-arrow-sm > span:last-child i {
  font-size: 0.8em;
}

.btn-arrow-lg > span:last-child {
  height: 3.25rem;
  width: 3.25rem;
}
.btn-arrow-lg > span:last-child i {
  font-size: 1.1em;
}

.btn-img-bleed {
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
  margin-right: 1.5rem;
  margin-left: 0;
}
.btn-img-bleed::after {
  content: "";
  display: block;
  position: absolute;
  width: 300%;
  height: 260%;
  top: -80%;
  left: -40%;
  border-radius: 50%;
  border: 1.5rem solid #fff;
  z-index: 11;
  pointer-events: none;
}
.btn-img-bleed img {
  position: relative;
  z-index: 2;
  display: block;
}

.btn-mega-plain {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--border) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.btn-mega-plain:hover {
  background: transparent !important;
  border-bottom-color: var(--border) !important;
  box-shadow: none !important;
}
.btn-mega-plain.btn-arrow-solid > span:last-child {
  background-color: var(--gray-200);
}
.btn-mega-plain.btn-arrow-solid:hover > span:last-child {
  background-color: var(--gray-300);
}

.btn-primary.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-primary.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-secondary.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-secondary.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-tertiary.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-tertiary.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-quaternary.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-quaternary.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-success.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-success.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-info.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-info.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-warning.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-warning.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-danger.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-danger.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-light.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-light.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-dark.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-dark.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-red.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-red.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-orange.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-orange.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-amber.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-amber.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-yellow.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-yellow.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-lime.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-lime.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-acid.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-acid.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-green.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-green.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-emerald.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-emerald.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-teal.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-teal.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-cyan.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-cyan.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-sky.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-sky.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-blue.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-blue.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-indigo.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-indigo.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-violet.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-violet.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-purple.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-purple.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-pink.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-pink.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-rose.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-rose.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-mega-gap {
  gap: 1rem;
}

.btn-mega-gap-sm {
  gap: 0.5rem;
}

.btn-mega-gap-lg {
  gap: 1.5rem;
}

.shadow-6:not(.shadow-hover) {
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.08);
}
.shadow-6.shadow-hover:hover {
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.08);
}

.shadow-7:not(.shadow-hover) {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.shadow-7.shadow-hover:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.shadow-9:not(.shadow-hover) {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.shadow-9.shadow-hover:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.btn-mega {
  position: relative;
  text-align: start;
  display: flex;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 0;
  padding-right: 4.5rem;
}
.btn-mega > strong {
  flex: 1;
  display: inline-flex;
  align-items: center;
  padding-left: 1rem;
}

.btn-arrow-solid > span:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, transform 0.2s ease;
  height: 2.5rem;
  width: 2.5rem;
}
.btn-arrow-solid > span:last-child i {
  font-size: 0.9em;
  color: currentColor;
}
.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.35);
}

.btn-arrow-sm > span:last-child {
  height: 2rem;
  width: 2rem;
}
.btn-arrow-sm > span:last-child i {
  font-size: 0.8em;
}

.btn-arrow-lg > span:last-child {
  height: 3.25rem;
  width: 3.25rem;
}
.btn-arrow-lg > span:last-child i {
  font-size: 1.1em;
}

.btn-img-bleed {
  display: inline-block;
  position: relative;
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
  margin-right: 3rem;
  margin-left: 0;
}
.btn-img-bleed::after {
  content: "";
  display: block;
  width: 390px;
  height: 280px;
  position: absolute;
  top: -75px;
  left: -55px;
  border-radius: 50%;
  border: 30px solid #fff;
  z-index: 11;
  pointer-events: none;
}
.btn-img-bleed img {
  position: relative;
  z-index: 2;
}

.btn-primary.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-primary.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-secondary.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-secondary.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-tertiary.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-tertiary.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-quaternary.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-quaternary.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-success.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-success.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-info.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-info.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-warning.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-warning.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-danger.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-danger.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-light.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-light.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-dark.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-dark.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-red.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-red.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-orange.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-orange.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-amber.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-amber.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-yellow.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-yellow.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-lime.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-lime.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-acid.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-acid.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-green.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-green.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-emerald.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-emerald.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-teal.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-teal.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-cyan.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-cyan.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-sky.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-sky.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-blue.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-blue.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-indigo.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-indigo.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-violet.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-violet.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-purple.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-purple.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-pink.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-pink.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-rose.btn-arrow-solid > span:last-child {
  background-color: rgba(0, 0, 0, 0.15);
}
.btn-rose.btn-arrow-solid:hover > span:last-child {
  background-color: rgba(0, 0, 0, 0.28);
}

.btn-mega-gap {
  gap: 1rem;
}

.btn-mega-gap-sm {
  gap: 0.5rem;
}

.btn-mega-gap-lg {
  gap: 1.5rem;
}

.shadow-6:not(.shadow-hover) {
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.08);
}
.shadow-6.shadow-hover:hover {
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.08);
}

.shadow-7:not(.shadow-hover) {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.shadow-7.shadow-hover:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.shadow-9:not(.shadow-hover) {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.shadow-9.shadow-hover:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* =============================================================================
   PALETTE COMPONENTS
   Buttons + Alerts für alle $palette-colors aus _colors.scss.

   Kein @use nötig — Variablen kommen via @import-Kontext aus style.scss:
     $prefix, $palette-colors, $btn-active-box-shadow

   Klassen-Schema (identisch zu den Theme-Colors):
     .btn-{name}          Solid        z.B. .btn-pink
     .btn-outline-{name}  Outline      z.B. .btn-outline-rose
     .btn-flat-{name}     Flat/Ghost   z.B. .btn-flat-violet
     .alert-{name}        Alert        z.B. .alert-cyan
   ============================================================================= */
.btn-red {
  --btn-color: #ffffff;
  --btn-bg: #dc3545;
  --btn-border-color: #dc3545;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: rgb(225.25, 83.3, 96.9);
  --btn-hover-border-color: rgb(225.25, 83.3, 96.9);
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(222.8, 69.16, 83.88);
  --btn-active-border-color: rgb(222.8, 69.16, 83.88);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #ffffff;
  --btn-disabled-bg: #dc3545;
  --btn-disabled-border-color: #dc3545;
  --btn-focus-shadow-rgb: 220, 53, 69;
}

.btn-orange {
  --btn-color: #ffffff;
  --btn-bg: #f77216;
  --btn-border-color: #f77216;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: rgb(248.2, 135.15, 56.95);
  --btn-hover-border-color: rgb(248.2, 135.15, 56.95);
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(247.64, 125.28, 40.64);
  --btn-active-border-color: rgb(247.64, 125.28, 40.64);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #ffffff;
  --btn-disabled-bg: #f77216;
  --btn-disabled-border-color: #f77216;
  --btn-focus-shadow-rgb: 247, 114, 22;
}

.btn-amber {
  --btn-color: #ffffff;
  --btn-bg: #f39d0b;
  --btn-border-color: #f39d0b;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: rgb(244.8, 171.7, 47.6);
  --btn-hover-border-color: rgb(244.8, 171.7, 47.6);
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(243.96, 164.84, 30.52);
  --btn-active-border-color: rgb(243.96, 164.84, 30.52);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #ffffff;
  --btn-disabled-bg: #f39d0b;
  --btn-disabled-border-color: #f39d0b;
  --btn-focus-shadow-rgb: 243, 157, 11;
}

.btn-yellow {
  --btn-color: #ffffff;
  --btn-bg: #f3de09;
  --btn-border-color: #f3de09;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: rgb(244.8, 226.95, 45.9);
  --btn-hover-border-color: rgb(244.8, 226.95, 45.9);
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(243.96, 224.64, 28.68);
  --btn-active-border-color: rgb(243.96, 224.64, 28.68);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #ffffff;
  --btn-disabled-bg: #f3de09;
  --btn-disabled-border-color: #f3de09;
  --btn-focus-shadow-rgb: 243, 222, 9;
}

.btn-lime {
  --btn-color: #ffffff;
  --btn-bg: #7ece25;
  --btn-border-color: #7ece25;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: rgb(145.35, 213.35, 69.7);
  --btn-hover-border-color: rgb(145.35, 213.35, 69.7);
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(136.32, 209.92, 54.44);
  --btn-active-border-color: rgb(136.32, 209.92, 54.44);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #ffffff;
  --btn-disabled-bg: #7ece25;
  --btn-disabled-border-color: #7ece25;
  --btn-focus-shadow-rgb: 126, 206, 37;
}

.btn-acid {
  --btn-color: #ffffff;
  --btn-bg: #b9f10f;
  --btn-border-color: #b9f10f;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: rgb(195.5, 243.1, 51);
  --btn-hover-border-color: rgb(195.5, 243.1, 51);
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(190.6, 242.12, 34.2);
  --btn-active-border-color: rgb(190.6, 242.12, 34.2);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #ffffff;
  --btn-disabled-bg: #b9f10f;
  --btn-disabled-border-color: #b9f10f;
  --btn-focus-shadow-rgb: 185, 241, 15;
}

.btn-green {
  --btn-color: #ffffff;
  --btn-bg: #22c55e;
  --btn-border-color: #22c55e;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: rgb(67.15, 205.7, 118.15);
  --btn-hover-border-color: rgb(67.15, 205.7, 118.15);
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(51.68, 201.64, 106.88);
  --btn-active-border-color: rgb(51.68, 201.64, 106.88);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #ffffff;
  --btn-disabled-bg: #22c55e;
  --btn-disabled-border-color: #22c55e;
  --btn-focus-shadow-rgb: 34, 197, 94;
}

.btn-emerald {
  --btn-color: #ffffff;
  --btn-bg: #10b981;
  --btn-border-color: #10b981;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: rgb(51.85, 195.5, 147.9);
  --btn-hover-border-color: rgb(51.85, 195.5, 147.9);
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(35.12, 190.6, 139.08);
  --btn-active-border-color: rgb(35.12, 190.6, 139.08);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #ffffff;
  --btn-disabled-bg: #10b981;
  --btn-disabled-border-color: #10b981;
  --btn-focus-shadow-rgb: 16, 185, 129;
}

.btn-teal {
  --btn-color: #ffffff;
  --btn-bg: #14b8a6;
  --btn-border-color: #14b8a6;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: rgb(55.25, 194.65, 179.35);
  --btn-hover-border-color: rgb(55.25, 194.65, 179.35);
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(38.8, 189.68, 173.12);
  --btn-active-border-color: rgb(38.8, 189.68, 173.12);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #ffffff;
  --btn-disabled-bg: #14b8a6;
  --btn-disabled-border-color: #14b8a6;
  --btn-focus-shadow-rgb: 20, 184, 166;
}

.btn-cyan {
  --btn-color: #ffffff;
  --btn-bg: #06b6d4;
  --btn-border-color: #06b6d4;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: rgb(43.35, 192.95, 218.45);
  --btn-hover-border-color: rgb(43.35, 192.95, 218.45);
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(25.92, 187.84, 215.44);
  --btn-active-border-color: rgb(25.92, 187.84, 215.44);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #ffffff;
  --btn-disabled-bg: #06b6d4;
  --btn-disabled-border-color: #06b6d4;
  --btn-focus-shadow-rgb: 6, 182, 212;
}

.btn-sky {
  --btn-color: #ffffff;
  --btn-bg: #0ea5e9;
  --btn-border-color: #0ea5e9;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: rgb(50.15, 178.5, 236.3);
  --btn-hover-border-color: rgb(50.15, 178.5, 236.3);
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(33.28, 172.2, 234.76);
  --btn-active-border-color: rgb(33.28, 172.2, 234.76);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #ffffff;
  --btn-disabled-bg: #0ea5e9;
  --btn-disabled-border-color: #0ea5e9;
  --btn-focus-shadow-rgb: 14, 165, 233;
}

.btn-blue {
  --btn-color: #191a1c;
  --btn-bg: #3b82f6;
  --btn-border-color: #3b82f6;
  --btn-hover-color: #191a1c;
  --btn-hover-bg: rgb(88.4, 148.75, 247.35);
  --btn-hover-border-color: rgb(88.4, 148.75, 247.35);
  --btn-active-color: #191a1c;
  --btn-active-bg: rgb(74.68, 140, 246.72);
  --btn-active-border-color: rgb(74.68, 140, 246.72);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #191a1c;
  --btn-disabled-bg: #3b82f6;
  --btn-disabled-border-color: #3b82f6;
  --btn-focus-shadow-rgb: 59, 130, 246;
}

.btn-indigo {
  --btn-color: #191a1c;
  --btn-bg: #6366f1;
  --btn-border-color: #6366f1;
  --btn-hover-color: #191a1c;
  --btn-hover-bg: rgb(122.4, 124.95, 243.1);
  --btn-hover-border-color: rgb(122.4, 124.95, 243.1);
  --btn-active-color: #191a1c;
  --btn-active-bg: rgb(111.48, 114.24, 242.12);
  --btn-active-border-color: rgb(111.48, 114.24, 242.12);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #191a1c;
  --btn-disabled-bg: #6366f1;
  --btn-disabled-border-color: #6366f1;
  --btn-focus-shadow-rgb: 99, 102, 241;
}

.btn-violet {
  --btn-color: #191a1c;
  --btn-bg: #8b5cf6;
  --btn-border-color: #8b5cf6;
  --btn-hover-color: #191a1c;
  --btn-hover-bg: rgb(156.4, 116.45, 247.35);
  --btn-hover-border-color: rgb(156.4, 116.45, 247.35);
  --btn-active-color: #191a1c;
  --btn-active-bg: rgb(148.28, 105.04, 246.72);
  --btn-active-border-color: rgb(148.28, 105.04, 246.72);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #191a1c;
  --btn-disabled-bg: #8b5cf6;
  --btn-disabled-border-color: #8b5cf6;
  --btn-focus-shadow-rgb: 139, 92, 246;
}

.btn-purple {
  --btn-color: #191a1c;
  --btn-bg: #a855f7;
  --btn-border-color: #a855f7;
  --btn-hover-color: #191a1c;
  --btn-hover-bg: rgb(181.05, 110.5, 248.2);
  --btn-hover-border-color: rgb(181.05, 110.5, 248.2);
  --btn-active-color: #191a1c;
  --btn-active-bg: rgb(174.96, 98.6, 247.64);
  --btn-active-border-color: rgb(174.96, 98.6, 247.64);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #191a1c;
  --btn-disabled-bg: #a855f7;
  --btn-disabled-border-color: #a855f7;
  --btn-focus-shadow-rgb: 168, 85, 247;
}

.btn-pink {
  --btn-color: #ffffff;
  --btn-bg: #fb0680;
  --btn-border-color: #fb0680;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: rgb(251.6, 43.35, 147.05);
  --btn-hover-border-color: rgb(251.6, 43.35, 147.05);
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(251.32, 25.92, 138.16);
  --btn-active-border-color: rgb(251.32, 25.92, 138.16);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #ffffff;
  --btn-disabled-bg: #fb0680;
  --btn-disabled-border-color: #fb0680;
  --btn-focus-shadow-rgb: 251, 6, 128;
}

.btn-rose {
  --btn-color: #191a1c;
  --btn-bg: #f43050;
  --btn-border-color: #f43050;
  --btn-hover-color: #191a1c;
  --btn-hover-bg: rgb(245.65, 79.05, 106.25);
  --btn-hover-border-color: rgb(245.65, 79.05, 106.25);
  --btn-active-color: #191a1c;
  --btn-active-bg: rgb(244.88, 64.56, 94);
  --btn-active-border-color: rgb(244.88, 64.56, 94);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #191a1c;
  --btn-disabled-bg: #f43050;
  --btn-disabled-border-color: #f43050;
  --btn-focus-shadow-rgb: 244, 48, 80;
}

.btn-outline-red {
  --btn-color: #dc3545;
  --btn-border-color: #dc3545;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: #dc3545;
  --btn-hover-border-color: #dc3545;
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(210.9493670886, 36.5506329114, 53.2594936709);
  --btn-active-border-color: #dc3545;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #dc3545;
  --btn-disabled-bg: transparent;
  --btn-focus-shadow-rgb: 220, 53, 69;
}

.btn-outline-orange {
  --btn-color: #f77216;
  --btn-border-color: #f77216;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: #f77216;
  --btn-hover-border-color: #f77216;
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(235.4170124481, 101.0373443983, 8.0829875519);
  --btn-active-border-color: #f77216;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #f77216;
  --btn-disabled-bg: transparent;
  --btn-focus-shadow-rgb: 247, 114, 22;
}

.btn-outline-amber {
  --btn-color: #f39d0b;
  --btn-border-color: #f39d0b;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: #f39d0b;
  --btn-hover-border-color: #f39d0b;
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(218.6043307087, 141.2381889764, 9.8956692913);
  --btn-active-border-color: #f39d0b;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #f39d0b;
  --btn-disabled-bg: transparent;
  --btn-focus-shadow-rgb: 243, 157, 11;
}

.btn-outline-yellow {
  --btn-color: #f3de09;
  --btn-border-color: #f3de09;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: #f3de09;
  --btn-hover-border-color: #f3de09;
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(218.4107142857, 199.5357142857, 8.0892857143);
  --btn-active-border-color: #f3de09;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #f3de09;
  --btn-disabled-bg: transparent;
  --btn-focus-shadow-rgb: 243, 222, 9;
}

.btn-outline-lime {
  --btn-color: #7ece25;
  --btn-border-color: #7ece25;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: #7ece25;
  --btn-hover-border-color: #7ece25;
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(112.7777777778, 184.3827160494, 33.1172839506);
  --btn-active-border-color: #7ece25;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #7ece25;
  --btn-disabled-bg: transparent;
  --btn-focus-shadow-rgb: 126, 206, 37;
}

.btn-outline-acid {
  --btn-color: #b9f10f;
  --btn-border-color: #b9f10f;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: #b9f10f;
  --btn-hover-border-color: #b9f10f;
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(166.9763779528, 217.7952755906, 12.7047244094);
  --btn-active-border-color: #b9f10f;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #b9f10f;
  --btn-disabled-bg: transparent;
  --btn-focus-shadow-rgb: 185, 241, 15;
}

.btn-outline-green {
  --btn-color: #22c55e;
  --btn-border-color: #22c55e;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: #22c55e;
  --btn-hover-border-color: #22c55e;
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(30.2467532468, 175.2532467532, 83.6233766234);
  --btn-active-border-color: #22c55e;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #22c55e;
  --btn-disabled-bg: transparent;
  --btn-focus-shadow-rgb: 34, 197, 94;
}

.btn-outline-emerald {
  --btn-color: #10b981;
  --btn-border-color: #10b981;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: #10b981;
  --btn-hover-border-color: #10b981;
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(13.9701492537, 161.5298507463, 112.6343283582);
  --btn-active-border-color: #10b981;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #10b981;
  --btn-disabled-bg: transparent;
  --btn-focus-shadow-rgb: 16, 185, 129;
}

.btn-outline-teal {
  --btn-color: #14b8a6;
  --btn-border-color: #14b8a6;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: #14b8a6;
  --btn-hover-border-color: #14b8a6;
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(17.5, 161, 145.25);
  --btn-active-border-color: #14b8a6;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #14b8a6;
  --btn-disabled-bg: transparent;
  --btn-focus-shadow-rgb: 20, 184, 166;
}

.btn-outline-cyan {
  --btn-color: #06b6d4;
  --btn-border-color: #06b6d4;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: #06b6d4;
  --btn-hover-border-color: #06b6d4;
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(5.2981651376, 160.7110091743, 187.2018348624);
  --btn-active-border-color: #06b6d4;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #06b6d4;
  --btn-disabled-bg: transparent;
  --btn-focus-shadow-rgb: 6, 182, 212;
}

.btn-outline-sky {
  --btn-color: #0ea5e9;
  --btn-border-color: #0ea5e9;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: #0ea5e9;
  --btn-hover-border-color: #0ea5e9;
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(12.5546558704, 147.9655870445, 208.9453441296);
  --btn-active-border-color: #0ea5e9;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #0ea5e9;
  --btn-disabled-bg: transparent;
  --btn-focus-shadow-rgb: 14, 165, 233;
}

.btn-outline-blue {
  --btn-color: #3b82f6;
  --btn-border-color: #3b82f6;
  --btn-hover-color: #191a1c;
  --btn-hover-bg: #3b82f6;
  --btn-hover-border-color: #3b82f6;
  --btn-active-color: #191a1c;
  --btn-active-bg: rgb(34.6195121951, 114.4512195122, 244.8804878049);
  --btn-active-border-color: #3b82f6;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #3b82f6;
  --btn-disabled-bg: transparent;
  --btn-focus-shadow-rgb: 59, 130, 246;
}

.btn-outline-indigo {
  --btn-color: #6366f1;
  --btn-border-color: #6366f1;
  --btn-hover-color: #191a1c;
  --btn-hover-bg: #6366f1;
  --btn-hover-border-color: #6366f1;
  --btn-active-color: #191a1c;
  --btn-active-bg: rgb(75.6, 79.05, 238.9);
  --btn-active-border-color: #6366f1;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #6366f1;
  --btn-disabled-bg: transparent;
  --btn-focus-shadow-rgb: 99, 102, 241;
}

.btn-outline-violet {
  --btn-color: #8b5cf6;
  --btn-border-color: #8b5cf6;
  --btn-hover-color: #191a1c;
  --btn-hover-bg: #8b5cf6;
  --btn-hover-border-color: #8b5cf6;
  --btn-active-color: #191a1c;
  --btn-active-bg: rgb(121.8023255814, 67.8343023256, 244.6656976744);
  --btn-active-border-color: #8b5cf6;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #8b5cf6;
  --btn-disabled-bg: transparent;
  --btn-focus-shadow-rgb: 139, 92, 246;
}

.btn-outline-purple {
  --btn-color: #a855f7;
  --btn-border-color: #a855f7;
  --btn-hover-color: #191a1c;
  --btn-hover-bg: #a855f7;
  --btn-hover-border-color: #a855f7;
  --btn-active-color: #191a1c;
  --btn-active-bg: rgb(155.5365168539, 60.6460674157, 245.8539325843);
  --btn-active-border-color: #a855f7;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #a855f7;
  --btn-disabled-bg: transparent;
  --btn-focus-shadow-rgb: 168, 85, 247;
}

.btn-outline-pink {
  --btn-color: #fb0680;
  --btn-border-color: #fb0680;
  --btn-hover-color: #ffffff;
  --btn-hover-bg: #fb0680;
  --btn-hover-border-color: #fb0680;
  --btn-active-color: #ffffff;
  --btn-active-bg: rgb(227.8399209486, 3.6600790514, 115.2924901186);
  --btn-active-border-color: #fb0680;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #fb0680;
  --btn-disabled-bg: transparent;
  --btn-focus-shadow-rgb: 251, 6, 128;
}

.btn-outline-rose {
  --btn-color: #f43050;
  --btn-border-color: #f43050;
  --btn-hover-color: #191a1c;
  --btn-hover-bg: #f43050;
  --btn-hover-border-color: #f43050;
  --btn-active-color: #191a1c;
  --btn-active-bg: rgb(242.7133027523, 23.7866972477, 59.5298165138);
  --btn-active-border-color: #f43050;
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --btn-disabled-color: #f43050;
  --btn-disabled-bg: transparent;
  --btn-focus-shadow-rgb: 244, 48, 80;
}

.btn-flat-red {
  --btn-bg: rgba(220, 53, 69, 0.1);
  --btn-color: #dc3545;
  --btn-border-color: transparent;
  --btn-hover-color: #dc3545;
  --btn-hover-bg: rgba(220, 53, 69, 0.2);
  --btn-hover-border-color: transparent;
  --btn-active-color: #dc3545;
  --btn-active-bg: rgba(220, 53, 69, 0.25);
  --btn-active-border-color: transparent;
  --btn-disabled-color: rgba(220, 53, 69, 0.65);
  --btn-disabled-bg: rgba(220, 53, 69, 0.05);
  --btn-disabled-border-color: transparent;
}

.btn-flat-orange {
  --btn-bg: rgba(247, 114, 22, 0.1);
  --btn-color: #f77216;
  --btn-border-color: transparent;
  --btn-hover-color: #f77216;
  --btn-hover-bg: rgba(247, 114, 22, 0.2);
  --btn-hover-border-color: transparent;
  --btn-active-color: #f77216;
  --btn-active-bg: rgba(247, 114, 22, 0.25);
  --btn-active-border-color: transparent;
  --btn-disabled-color: rgba(247, 114, 22, 0.65);
  --btn-disabled-bg: rgba(247, 114, 22, 0.05);
  --btn-disabled-border-color: transparent;
}

.btn-flat-amber {
  --btn-bg: rgba(243, 157, 11, 0.1);
  --btn-color: #f39d0b;
  --btn-border-color: transparent;
  --btn-hover-color: #f39d0b;
  --btn-hover-bg: rgba(243, 157, 11, 0.2);
  --btn-hover-border-color: transparent;
  --btn-active-color: #f39d0b;
  --btn-active-bg: rgba(243, 157, 11, 0.25);
  --btn-active-border-color: transparent;
  --btn-disabled-color: rgba(243, 157, 11, 0.65);
  --btn-disabled-bg: rgba(243, 157, 11, 0.05);
  --btn-disabled-border-color: transparent;
}

.btn-flat-yellow {
  --btn-bg: rgba(243, 222, 9, 0.1);
  --btn-color: #f3de09;
  --btn-border-color: transparent;
  --btn-hover-color: #f3de09;
  --btn-hover-bg: rgba(243, 222, 9, 0.2);
  --btn-hover-border-color: transparent;
  --btn-active-color: #f3de09;
  --btn-active-bg: rgba(243, 222, 9, 0.25);
  --btn-active-border-color: transparent;
  --btn-disabled-color: rgba(243, 222, 9, 0.65);
  --btn-disabled-bg: rgba(243, 222, 9, 0.05);
  --btn-disabled-border-color: transparent;
}

.btn-flat-lime {
  --btn-bg: rgba(126, 206, 37, 0.1);
  --btn-color: #7ece25;
  --btn-border-color: transparent;
  --btn-hover-color: #7ece25;
  --btn-hover-bg: rgba(126, 206, 37, 0.2);
  --btn-hover-border-color: transparent;
  --btn-active-color: #7ece25;
  --btn-active-bg: rgba(126, 206, 37, 0.25);
  --btn-active-border-color: transparent;
  --btn-disabled-color: rgba(126, 206, 37, 0.65);
  --btn-disabled-bg: rgba(126, 206, 37, 0.05);
  --btn-disabled-border-color: transparent;
}

.btn-flat-acid {
  --btn-bg: rgba(185, 241, 15, 0.1);
  --btn-color: #b9f10f;
  --btn-border-color: transparent;
  --btn-hover-color: #b9f10f;
  --btn-hover-bg: rgba(185, 241, 15, 0.2);
  --btn-hover-border-color: transparent;
  --btn-active-color: #b9f10f;
  --btn-active-bg: rgba(185, 241, 15, 0.25);
  --btn-active-border-color: transparent;
  --btn-disabled-color: rgba(185, 241, 15, 0.65);
  --btn-disabled-bg: rgba(185, 241, 15, 0.05);
  --btn-disabled-border-color: transparent;
}

.btn-flat-green {
  --btn-bg: rgba(34, 197, 94, 0.1);
  --btn-color: #22c55e;
  --btn-border-color: transparent;
  --btn-hover-color: #22c55e;
  --btn-hover-bg: rgba(34, 197, 94, 0.2);
  --btn-hover-border-color: transparent;
  --btn-active-color: #22c55e;
  --btn-active-bg: rgba(34, 197, 94, 0.25);
  --btn-active-border-color: transparent;
  --btn-disabled-color: rgba(34, 197, 94, 0.65);
  --btn-disabled-bg: rgba(34, 197, 94, 0.05);
  --btn-disabled-border-color: transparent;
}

.btn-flat-emerald {
  --btn-bg: rgba(16, 185, 129, 0.1);
  --btn-color: #10b981;
  --btn-border-color: transparent;
  --btn-hover-color: #10b981;
  --btn-hover-bg: rgba(16, 185, 129, 0.2);
  --btn-hover-border-color: transparent;
  --btn-active-color: #10b981;
  --btn-active-bg: rgba(16, 185, 129, 0.25);
  --btn-active-border-color: transparent;
  --btn-disabled-color: rgba(16, 185, 129, 0.65);
  --btn-disabled-bg: rgba(16, 185, 129, 0.05);
  --btn-disabled-border-color: transparent;
}

.btn-flat-teal {
  --btn-bg: rgba(20, 184, 166, 0.1);
  --btn-color: #14b8a6;
  --btn-border-color: transparent;
  --btn-hover-color: #14b8a6;
  --btn-hover-bg: rgba(20, 184, 166, 0.2);
  --btn-hover-border-color: transparent;
  --btn-active-color: #14b8a6;
  --btn-active-bg: rgba(20, 184, 166, 0.25);
  --btn-active-border-color: transparent;
  --btn-disabled-color: rgba(20, 184, 166, 0.65);
  --btn-disabled-bg: rgba(20, 184, 166, 0.05);
  --btn-disabled-border-color: transparent;
}

.btn-flat-cyan {
  --btn-bg: rgba(6, 182, 212, 0.1);
  --btn-color: #06b6d4;
  --btn-border-color: transparent;
  --btn-hover-color: #06b6d4;
  --btn-hover-bg: rgba(6, 182, 212, 0.2);
  --btn-hover-border-color: transparent;
  --btn-active-color: #06b6d4;
  --btn-active-bg: rgba(6, 182, 212, 0.25);
  --btn-active-border-color: transparent;
  --btn-disabled-color: rgba(6, 182, 212, 0.65);
  --btn-disabled-bg: rgba(6, 182, 212, 0.05);
  --btn-disabled-border-color: transparent;
}

.btn-flat-sky {
  --btn-bg: rgba(14, 165, 233, 0.1);
  --btn-color: #0ea5e9;
  --btn-border-color: transparent;
  --btn-hover-color: #0ea5e9;
  --btn-hover-bg: rgba(14, 165, 233, 0.2);
  --btn-hover-border-color: transparent;
  --btn-active-color: #0ea5e9;
  --btn-active-bg: rgba(14, 165, 233, 0.25);
  --btn-active-border-color: transparent;
  --btn-disabled-color: rgba(14, 165, 233, 0.65);
  --btn-disabled-bg: rgba(14, 165, 233, 0.05);
  --btn-disabled-border-color: transparent;
}

.btn-flat-blue {
  --btn-bg: rgba(59, 130, 246, 0.1);
  --btn-color: #3b82f6;
  --btn-border-color: transparent;
  --btn-hover-color: #3b82f6;
  --btn-hover-bg: rgba(59, 130, 246, 0.2);
  --btn-hover-border-color: transparent;
  --btn-active-color: #3b82f6;
  --btn-active-bg: rgba(59, 130, 246, 0.25);
  --btn-active-border-color: transparent;
  --btn-disabled-color: rgba(59, 130, 246, 0.65);
  --btn-disabled-bg: rgba(59, 130, 246, 0.05);
  --btn-disabled-border-color: transparent;
}

.btn-flat-indigo {
  --btn-bg: rgba(99, 102, 241, 0.1);
  --btn-color: #6366f1;
  --btn-border-color: transparent;
  --btn-hover-color: #6366f1;
  --btn-hover-bg: rgba(99, 102, 241, 0.2);
  --btn-hover-border-color: transparent;
  --btn-active-color: #6366f1;
  --btn-active-bg: rgba(99, 102, 241, 0.25);
  --btn-active-border-color: transparent;
  --btn-disabled-color: rgba(99, 102, 241, 0.65);
  --btn-disabled-bg: rgba(99, 102, 241, 0.05);
  --btn-disabled-border-color: transparent;
}

.btn-flat-violet {
  --btn-bg: rgba(139, 92, 246, 0.1);
  --btn-color: #8b5cf6;
  --btn-border-color: transparent;
  --btn-hover-color: #8b5cf6;
  --btn-hover-bg: rgba(139, 92, 246, 0.2);
  --btn-hover-border-color: transparent;
  --btn-active-color: #8b5cf6;
  --btn-active-bg: rgba(139, 92, 246, 0.25);
  --btn-active-border-color: transparent;
  --btn-disabled-color: rgba(139, 92, 246, 0.65);
  --btn-disabled-bg: rgba(139, 92, 246, 0.05);
  --btn-disabled-border-color: transparent;
}

.btn-flat-purple {
  --btn-bg: rgba(168, 85, 247, 0.1);
  --btn-color: #a855f7;
  --btn-border-color: transparent;
  --btn-hover-color: #a855f7;
  --btn-hover-bg: rgba(168, 85, 247, 0.2);
  --btn-hover-border-color: transparent;
  --btn-active-color: #a855f7;
  --btn-active-bg: rgba(168, 85, 247, 0.25);
  --btn-active-border-color: transparent;
  --btn-disabled-color: rgba(168, 85, 247, 0.65);
  --btn-disabled-bg: rgba(168, 85, 247, 0.05);
  --btn-disabled-border-color: transparent;
}

.btn-flat-pink {
  --btn-bg: rgba(251, 6, 128, 0.1);
  --btn-color: #fb0680;
  --btn-border-color: transparent;
  --btn-hover-color: #fb0680;
  --btn-hover-bg: rgba(251, 6, 128, 0.2);
  --btn-hover-border-color: transparent;
  --btn-active-color: #fb0680;
  --btn-active-bg: rgba(251, 6, 128, 0.25);
  --btn-active-border-color: transparent;
  --btn-disabled-color: rgba(251, 6, 128, 0.65);
  --btn-disabled-bg: rgba(251, 6, 128, 0.05);
  --btn-disabled-border-color: transparent;
}

.btn-flat-rose {
  --btn-bg: rgba(244, 48, 80, 0.1);
  --btn-color: #f43050;
  --btn-border-color: transparent;
  --btn-hover-color: #f43050;
  --btn-hover-bg: rgba(244, 48, 80, 0.2);
  --btn-hover-border-color: transparent;
  --btn-active-color: #f43050;
  --btn-active-bg: rgba(244, 48, 80, 0.25);
  --btn-active-border-color: transparent;
  --btn-disabled-color: rgba(244, 48, 80, 0.65);
  --btn-disabled-bg: rgba(244, 48, 80, 0.05);
  --btn-disabled-border-color: transparent;
}

.alert-red {
  --alert-color: rgb(132, 31.8, 41.4);
  --alert-bg: rgb(248, 214.6, 217.8);
  --alert-border-color: rgb(239.25, 164.1, 171.3);
  --alert-link-color: rgb(49.8021978022, 11.9978021978, 15.6197802198);
  --alert-link-hover-color: rgb(8.7032967033, 2.0967032967, 2.7296703297);
}
[data-color-theme=dark] .alert-red {
  --alert-bg: rgba(220, 53, 69, 0.15);
  --alert-border-color: rgba(220, 53, 69, 0.3);
  --alert-color: rgb(234, 133.8, 143.4);
}

.alert-orange {
  --alert-color: rgb(148.2, 68.4, 13.2);
  --alert-bg: rgb(253.4, 226.8, 208.4);
  --alert-border-color: rgb(251.4, 191.55, 150.15);
  --alert-link-color: rgb(54.5420074349, 25.1732342007, 4.8579925651);
  --alert-link-hover-color: rgb(7.7130111524, 3.5598513011, 0.6869888476);
}
[data-color-theme=dark] .alert-orange {
  --alert-bg: rgba(247, 114, 22, 0.15);
  --alert-border-color: rgba(247, 114, 22, 0.3);
  --alert-color: rgb(250.2, 170.4, 115.2);
}

.alert-amber {
  --alert-color: rgb(145.8, 94.2, 6.6);
  --alert-bg: rgb(252.6, 235.4, 206.2);
  --alert-border-color: rgb(249.6, 210.9, 145.2);
  --alert-link-color: rgb(48.2173228346, 31.1527559055, 2.1826771654);
  --alert-link-hover-color: black;
}
[data-color-theme=dark] .alert-amber {
  --alert-bg: rgba(243, 157, 11, 0.15);
  --alert-border-color: rgba(243, 157, 11, 0.3);
  --alert-color: rgb(247.8, 196.2, 108.6);
}

.alert-yellow {
  --alert-color: rgb(145.8, 133.2, 5.4);
  --alert-bg: rgb(252.6, 248.4, 205.8);
  --alert-border-color: rgb(249.6, 240.15, 144.3);
  --alert-link-color: rgb(47.4428571429, 43.3428571429, 1.7571428571);
  --alert-link-hover-color: black;
}
[data-color-theme=dark] .alert-yellow {
  --alert-bg: rgba(243, 222, 9, 0.15);
  --alert-border-color: rgba(243, 222, 9, 0.3);
  --alert-color: rgb(247.8, 235.2, 107.4);
}

.alert-lime {
  --alert-color: rgb(75.6, 123.6, 22.2);
  --alert-bg: rgb(229.2, 245.2, 211.4);
  --alert-border-color: rgb(196.95, 232.95, 156.9);
  --alert-link-color: rgb(22.7111111111, 37.1308641975, 6.6691358025);
  --alert-link-hover-color: black;
}
[data-color-theme=dark] .alert-lime {
  --alert-bg: rgba(126, 206, 37, 0.15);
  --alert-border-color: rgba(126, 206, 37, 0.3);
  --alert-color: rgb(177.6, 225.6, 124.2);
}

.alert-acid {
  --alert-color: rgb(111, 144.6, 9);
  --alert-bg: rgb(241, 252.2, 207);
  --alert-border-color: rgb(223.5, 248.7, 147);
  --alert-link-color: rgb(37.2890625, 48.5765625, 3.0234375);
  --alert-link-hover-color: rgb(0.43359375, 0.56484375, 0.03515625);
}
[data-color-theme=dark] .alert-acid {
  --alert-bg: rgba(185, 241, 15, 0.15);
  --alert-border-color: rgba(185, 241, 15, 0.3);
  --alert-color: rgb(213, 246.6, 111);
}

.alert-green {
  --alert-color: rgb(20.4, 118.2, 56.4);
  --alert-bg: rgb(210.8, 243.4, 222.8);
  --alert-border-color: rgb(155.55, 228.9, 182.55);
  --alert-link-color: rgb(5.387012987, 31.212987013, 14.8935064935);
  --alert-link-hover-color: black;
}
[data-color-theme=dark] .alert-green {
  --alert-bg: rgba(34, 197, 94, 0.15);
  --alert-border-color: rgba(34, 197, 94, 0.3);
  --alert-color: rgb(122.4, 220.2, 158.4);
}

.alert-emerald {
  --alert-color: rgb(9.6, 111, 77.4);
  --alert-bg: rgb(207.2, 241, 229.8);
  --alert-border-color: rgb(147.45, 223.5, 198.3);
  --alert-link-color: rgb(1.4805970149, 17.1194029851, 11.9373134328);
  --alert-link-hover-color: black;
}
[data-color-theme=dark] .alert-emerald {
  --alert-bg: rgba(16, 185, 129, 0.15);
  --alert-border-color: rgba(16, 185, 129, 0.3);
  --alert-color: rgb(111.6, 213, 179.4);
}

.alert-teal {
  --alert-color: rgb(12, 110.4, 99.6);
  --alert-bg: rgb(208, 240.8, 237.2);
  --alert-border-color: rgb(149.25, 223.05, 214.95);
  --alert-link-color: rgb(2, 18.4, 16.6);
  --alert-link-hover-color: black;
}
[data-color-theme=dark] .alert-teal {
  --alert-bg: rgba(20, 184, 166, 0.15);
  --alert-border-color: rgba(20, 184, 166, 0.3);
  --alert-color: rgb(114, 212.4, 201.6);
}

.alert-cyan {
  --alert-color: rgb(3.6, 109.2, 127.2);
  --alert-bg: rgb(205.2, 240.4, 246.4);
  --alert-border-color: rgb(142.95, 222.15, 235.65);
  --alert-link-color: rgb(0.7926605505, 24.0440366972, 28.0073394495);
  --alert-link-hover-color: black;
}
[data-color-theme=dark] .alert-cyan {
  --alert-bg: rgba(6, 182, 212, 0.15);
  --alert-border-color: rgba(6, 182, 212, 0.3);
  --alert-color: rgb(105.6, 211.2, 229.2);
}

.alert-sky {
  --alert-color: rgb(8.4, 99, 139.8);
  --alert-bg: rgb(206.8, 237, 250.6);
  --alert-border-color: rgb(146.55, 214.5, 245.1);
  --alert-link-color: rgb(2.6186234818, 30.8623481781, 43.5813765182);
  --alert-link-hover-color: black;
}
[data-color-theme=dark] .alert-sky {
  --alert-bg: rgba(14, 165, 233, 0.15);
  --alert-border-color: rgba(14, 165, 233, 0.3);
  --alert-color: rgb(110.4, 201, 241.8);
}

.alert-blue {
  --alert-color: rgb(35.4, 78, 147.6);
  --alert-bg: rgb(215.8, 230, 253.2);
  --alert-border-color: rgb(166.8, 198.75, 250.95);
  --alert-link-color: rgb(15.668852459, 34.5245901639, 65.331147541);
  --alert-link-hover-color: rgb(5.8032786885, 12.7868852459, 24.1967213115);
}
[data-color-theme=dark] .alert-blue {
  --alert-bg: rgba(59, 130, 246, 0.15);
  --alert-border-color: rgba(59, 130, 246, 0.3);
  --alert-color: rgb(137.4, 180, 249.6);
}

.alert-indigo {
  --alert-color: rgb(59.4, 61.2, 144.6);
  --alert-bg: rgb(223.8, 224.4, 252.2);
  --alert-border-color: rgb(184.8, 186.15, 248.7);
  --alert-link-color: rgb(29.7, 30.6, 72.3);
  --alert-link-hover-color: rgb(14.85, 15.3, 36.15);
}
[data-color-theme=dark] .alert-indigo {
  --alert-bg: rgba(99, 102, 241, 0.15);
  --alert-border-color: rgba(99, 102, 241, 0.3);
  --alert-color: rgb(161.4, 163.2, 246.6);
}

.alert-violet {
  --alert-color: rgb(83.4, 55.2, 147.6);
  --alert-bg: rgb(231.8, 222.4, 253.2);
  --alert-border-color: rgb(202.8, 181.65, 250.95);
  --alert-link-color: rgb(41.4532544379, 27.4366863905, 73.3633136095);
  --alert-link-hover-color: rgb(20.4798816568, 13.5550295858, 36.2449704142);
}
[data-color-theme=dark] .alert-violet {
  --alert-bg: rgba(139, 92, 246, 0.15);
  --alert-border-color: rgba(139, 92, 246, 0.3);
  --alert-color: rgb(185.4, 157.2, 249.6);
}

.alert-purple {
  --alert-color: rgb(100.8, 51, 148.2);
  --alert-bg: rgb(237.6, 221, 253.4);
  --alert-border-color: rgb(215.85, 178.5, 251.4);
  --alert-link-color: rgb(49.1855421687, 24.8855421687, 72.3144578313);
  --alert-link-hover-color: rgb(23.378313253, 11.828313253, 34.371686747);
}
[data-color-theme=dark] .alert-purple {
  --alert-bg: rgba(168, 85, 247, 0.15);
  --alert-border-color: rgba(168, 85, 247, 0.3);
  --alert-color: rgb(202.8, 153, 250.2);
}

.alert-pink {
  --alert-color: rgb(150.6, 3.6, 76.8);
  --alert-bg: rgb(254.2, 205.2, 229.6);
  --alert-border-color: rgb(253.2, 142.95, 197.85);
  --alert-link-color: rgb(50.9813229572, 1.2186770428, 25.9984435798);
  --alert-link-hover-color: rgb(1.1719844358, 0.0280155642, 0.5976653696);
}
[data-color-theme=dark] .alert-pink {
  --alert-bg: rgba(251, 6, 128, 0.15);
  --alert-border-color: rgba(251, 6, 128, 0.3);
  --alert-color: rgb(252.6, 105.6, 178.8);
}

.alert-rose {
  --alert-color: rgb(146.4, 28.8, 48);
  --alert-bg: rgb(252.8, 213.6, 220);
  --alert-border-color: rgb(250.05, 161.85, 176.25);
  --alert-link-color: rgb(61.1671232877, 12.0328767123, 20.0547945205);
  --alert-link-hover-color: rgb(18.5506849315, 3.6493150685, 6.0821917808);
}
[data-color-theme=dark] .alert-rose {
  --alert-bg: rgba(244, 48, 80, 0.15);
  --alert-border-color: rgba(244, 48, 80, 0.3);
  --alert-color: rgb(248.4, 130.8, 150);
}

/***

====================================================================
	Clients Two
====================================================================

***/
.clients-two {
  position: relative;
}

.clients-two.style-two {
  padding: 100px 0px 100px;
}

.clients-two .auto-container {
  position: relative;
  max-width: 1380px;
}

.clients-two .column {
  position: relative;
}

.clients-two .column:nth-child(1) .client-image,
.clients-two .column:nth-child(3) .client-image,
.clients-two .column:nth-child(6) .client-image,
.clients-two .column:nth-child(8) .client-image {
  background-color: #f0f2f2;
}

.clients-two .client-image {
  position: relative;
  text-align: center;
}

.clients-two .client-image img {
  position: relative;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.clients-two .client-image img:hover {
  opacity: 0.8;
}

/***

====================================================================
	Skill One
====================================================================

***/
.skill-one {
  position: relative;
  overflow: hidden;
}

.skill-one_title-column {
  position: relative;
  margin-bottom: 30px;
}

.skill-one_title-outer {
  position: relative;
  padding: 120px 30px 80px 0px;
}

.skill-one_gallery-column {
  position: relative;
}

.skill-one_gallery-outer {
  position: relative;
  padding-left: 30px;
  overflow: hidden;
  height: 910px;
}

.skill-one_gallery-outer .column-inner {
  display: flex;
  flex-direction: column;
}

.skill-one_gallery-outer .image {
  position: relative;
  margin-bottom: 25px;
}

.skill-one_gallery-outer .image img {
  position: relative;
  width: 100%;
  display: block;
}

.skill-one_bg {
  background-attachment: fixed;
  background-size: cover;
}

.skill-one_bg:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0.9;
  background-color: var(--black-color);
}

/* Skills Section */
.default-skills {
  position: relative;
}

.default-skill-item {
  position: relative;
  margin-bottom: 30px;
}

.default-skill-item:last-child {
  margin-bottom: 0px;
}

.default-skill-title {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: #DDDDDD;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.default-skill-bar {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 0px;
}

.default-skill-bar:before {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  right: 0px;
  height: 4px;
  border-radius: 0px;
  background-color: #dddddd;
}

.default-bar-inner {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 0px;
}

.default-bar {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 8px;
  width: 0px;
  border-radius: 0px;
  background-color: var(--primary);
  -webkit-transition: all 2000ms ease;
  -ms-transition: all 2000ms ease;
  -o-transition: all 2000ms ease;
  -moz-transition: all 2000ms ease;
  transition: all 2000ms ease;
}

.default-bar:before {
  position: absolute;
  content: "";
  right: 0px;
  top: -6px;
  width: 5px;
  height: 22px;
  transform: rotate(10deg);
  background-color: var(--primary);
}

.default-count-box {
  position: absolute;
  right: 0px;
  top: 0px;
  font-weight: 600;
  font-size: 16px;
  color: #DDDDDD;
}

/* Skills Section */
.default-skills {
  position: relative;
}

.default-skill-item {
  position: relative;
  margin-bottom: 30px;
}

.default-skill-item:last-child {
  margin-bottom: 0px;
}

.default-skill-title {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: #DDDDDD;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.default-skill-bar {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 0px;
}

.default-skill-bar:before {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  right: 0px;
  height: 4px;
  border-radius: 0px;
  background-color: #dddddd;
}

.default-bar-inner {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 0px;
}

.default-bar {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 8px;
  width: 0px;
  border-radius: 0px;
  background-color: var(--primary);
  -webkit-transition: all 2000ms ease;
  -ms-transition: all 2000ms ease;
  -o-transition: all 2000ms ease;
  -moz-transition: all 2000ms ease;
  transition: all 2000ms ease;
}

.default-bar:before {
  position: absolute;
  content: "";
  right: 0px;
  top: -6px;
  width: 5px;
  height: 22px;
  transform: rotate(10deg);
  background-color: var(--primary);
}

.default-count-box {
  position: absolute;
  right: 0px;
  top: 0px;
  font-weight: 600;
  font-size: 16px;
  color: #DDDDDD;
}

.progress-line {
  width: 0;
  transition: width 1.2s ease;
}

.progress-line.is-visible {
  width: var(--progress-width);
}

/*** 

====================================================================
	Slider Three
====================================================================

***/
.slider-three {
  position: relative;
  background-color: var(--black);
}

.slider-three .swiper-slide {
  position: relative;
  overflow: hidden;
  padding: 200px 0px 400px;
}

.slider-three_image {
  position: absolute;
  width: 50%;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  opacity: 0;
  overflow: hidden;
  border-radius: 0px;
  background-size: cover;
  background-position: center center;
  clip-path: polygon(0 0, 40% 0, 40% 100%, 0% 100%);
  -webkit-transition: all 1000ms linear;
  -moz-transition: all 1000ms linear;
  -ms-transition: all 1000ms linear;
  -o-transition: all 1000ms linear;
  transition: all 1000ms linear;
}

.slider-three_image:before {
  position: absolute;
  content: "";
  left: -1px;
  top: 0px;
  bottom: 0px;
  width: 100px;
  background-image: linear-gradient(to right, #000000, rgba(255, 255, 255, 0));
}

.slider-three .swiper-slide-active .slider-three_image {
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.slider-three_content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.slider-three_content-inner {
  position: relative;
}

.slider-three_heading {
  font-family: "Outfit", sans-serif !important;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
  text-transform: uppercase;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-three_heading span {
  color: transparent;
  font-weight: 800;
  color: var(--primary);
}

.slider-three .swiper-slide-active .slider-three_heading {
  -webkit-transition-delay: 800ms;
  -moz-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  transition-delay: 800ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-three_text {
  margin-top: 40px;
  font-size: 15px;
  max-width: 400px;
  line-height: 30px;
  margin-bottom: 40px;
  margin-right: 120px;
  color: var(--white-color);
  /* text-transform: capitalize; */
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-three .swiper-slide-active .slider-three_text {
  -webkit-transition-delay: 800ms;
  -moz-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  transition-delay: 800ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider-three .slider-three_button {
  position: relative;
  gap: 5px;
  display: inline-block;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: 1.3s cubic-bezier(0.5, 0.5, 0, 1);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.slider-three .swiper-slide-active .slider-three_button {
  -webkit-transition-delay: 800ms;
  -moz-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  transition-delay: 800ms;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Slider Socials Box */
.slider-three_socials {
  position: absolute;
  right: 5px;
  bottom: -15px;
  z-index: 1;
  padding: 25px 30px;
  transform-origin: 48% -122%;
  transform: rotate(-90deg);
  border-radius: 0px 50px 50px 0px;
  background-color: rgba(var(--white-color-rgb), 0.05);
}

.slider-three_socials a {
  position: relative;
  font-size: 14px;
  margin: 0px 15px;
  text-transform: capitalize;
  color: var(--white);
}

.slider-three_socials a::before {
  position: absolute;
  content: "-";
  right: -20px;
  font-size: 24px;
  color: var(--white);
}

.slider-three_socials a:hover {
  color: var(--primary);
}

.slider-three_socials a:last-child::before {
  display: none;
}

.hero-sequence {
  position: absolute;
  width: 50%;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  overflow: hidden;
  border-radius: 0;
  clip-path: polygon(0 0, 40% 0, 40% 100%, 0% 100%);
  -webkit-transition: all 1000ms linear;
  -moz-transition: all 1000ms linear;
  -ms-transition: all 1000ms linear;
  -o-transition: all 1000ms linear;
  transition: all 1000ms linear;
}

.hero-sequence::before {
  position: absolute;
  content: "";
  left: -1px;
  top: 0;
  bottom: 0;
  width: 100px;
  background-image: linear-gradient(to right, #000000, rgba(255, 255, 255, 0));
  z-index: 2;
  pointer-events: none;
}

.slider-three .swiper-slide-active .hero-sequence {
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-sequence__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  user-select: none;
  pointer-events: none;
}

/***

====================================================================
    Services Five
====================================================================

***/
.services-five {
  position: relative;
  padding: 120px 0 100px;
}

.services-five .auto-container {
  position: relative;
  max-width: 1380px;
}

.services-five .content-column {
  position: relative;
}

.services-five_outer {
  position: relative;
  padding-left: 30px;
}

.service-block_five {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.service-block_five-icon {
  position: absolute;
  left: 0;
  top: 6px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-two);
  transition: all 0.5s ease;
}

.service-block_five-icon i {
  font-family: var(--font-awesome);
  font-size: 70px;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
}

.service-block_five:hover .service-block_five-icon {
  color: var(--main-color);
  transform: rotateY(180deg);
}

.service-block_five-inner {
  position: relative;
  margin-left: 120px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(var(--color-three-rgb), 0.1);
}

.service-block_five-heading {
  position: relative;
  font-weight: 700;
  color: var(--color-two);
}

.service-block_five-heading a {
  position: relative;
  color: var(--color-two);
  text-decoration: none;
}

.service-block_five-heading span {
  position: relative;
  display: block;
  margin-top: 10px;
  max-width: 400px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--color-three);
}

.service-block_five-inner:hover .service-block_five-heading a {
  color: var(--color-two);
}

.service-block_five-text {
  position: relative;
  max-width: 600px;
  color: var(--color-three);
  font-size: var(--font-15);
}

.service-block_five-button {
  position: relative;
}

.service-block_five-button .arrow {
  position: relative;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: var(--color-two);
  background-color: var(--main-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-block_five-button .arrow i {
  font-family: var(--font-awesome);
  font-size: 24px;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
}

.service-block_five-inner:hover .arrow {
  color: var(--white-color);
  background-color: var(--color-two);
}

/* =========================================================
   CSS3 PANELS
========================================================= */
.cspanel {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.css3panels-container {
  overflow: hidden;
  position: relative;
  z-index: 0;
  min-height: 150px;
  margin-left: -62px;
  margin-right: -62px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

/* Panels */
.css3panel {
  float: left;
  position: relative;
  z-index: 0;
  min-height: 150px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  /* Chrome Hacks */
  -webkit-backface-visibility: hidden;
}

.css3panel:hover {
  z-index: 1;
}

.css3panel:hover .css3panel-inner {
  box-shadow: 0 0 0 3px #FFF, 0 0 50px 20px rgba(0, 0, 0, 0.5);
}

.css3panels--resize .css3panel {
  will-change: flex-grow;
  -webkit-transition: -webkit-box-flex 0.2s ease-out;
  -webkit-transition: -webkit-flex-grow 0.2s ease-out;
  transition: -webkit-box-flex 0.2s ease-out;
  transition: -ms-flex-positive 0.2s ease-out;
  transition: flex-grow 0.2s ease-out;
}

.css3panels--resize .css3panel-inner {
  will-change: box-shadow;
  -webkit-transition: box-shadow 0.2s ease-out;
  -webkit-transition: box-shadow 0.2s ease-out;
  transition: box-shadow 0.2s ease-out;
}

.css3panels--resize .css3panel:hover {
  -webkit-box-flex: 1.3;
  -webkit-flex-grow: 1.3;
  -ms-flex-positive: 1.3;
  flex-grow: 1.3;
}

/* Panel width sizes */
.no-flexbox .css3panels-container[data-panels="1"] .css3panel {
  width: 100%;
  float: none;
}

.no-flexbox .css3panels-container[data-panels="2"] .css3panel {
  width: 50%;
}

.no-flexbox .css3panels-container[data-panels="3"] .css3panel {
  width: 33.3333%;
}

.no-flexbox .css3panels-container[data-panels="4"] .css3panel {
  width: 25%;
}

.no-flexbox .css3panels-container[data-panels="5"] .css3panel {
  width: 20%;
}

.no-flexbox .css3panels-container[data-panels="6"] .css3panel {
  width: 16.6666%;
}

/* Hover resize */
.no-flexbox .css3panels-container.css3panels--resize[data-panels="2"]:hover .css3panel {
  width: 40%;
}

.no-flexbox .css3panels-container.css3panels--resize[data-panels="2"]:hover .css3panel:hover {
  width: 60%;
}

.no-flexbox .css3panels-container.css3panels--resize[data-panels="3"]:hover .css3panel {
  width: 30%;
}

.no-flexbox .css3panels-container.css3panels--resize[data-panels="3"]:hover .css3panel:hover {
  width: 40%;
}

.no-flexbox .css3panels-container.css3panels--resize[data-panels="4"]:hover .css3panel {
  width: 22%;
}

.no-flexbox .css3panels-container.css3panels--resize[data-panels="4"]:hover .css3panel:hover {
  width: 34%;
}

.no-flexbox .css3panels-container.css3panels--resize[data-panels="5"]:hover .css3panel {
  width: 16%;
}

.no-flexbox .css3panels-container.css3panels--resize[data-panels="5"]:hover .css3panel:hover {
  width: 36%;
}

.no-flexbox .css3panels-container.css3panels--resize[data-panels="6"]:hover .css3panel {
  width: 15%;
}

.no-flexbox .css3panels-container.css3panels--resize[data-panels="6"]:hover .css3panel:hover {
  width: 25%;
}

/* Inner panel */
.css3panel-inner {
  position: relative;
  -webkit-transform: skewX(-10deg);
  -ms-transform: skewX(-10deg);
  transform: skewX(-10deg);
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition: box-shadow 0.2s ease-out;
  transition: box-shadow 0.2s ease-out;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.7);
}

/* Image */
.css3panel-mainimage-wrapper {
  position: relative;
  margin-left: -60px;
  margin-right: -60px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: skewX(10deg);
  -ms-transform: skewX(10deg);
  transform: skewX(10deg);
  -webkit-backface-visibility: hidden;
}

.css3panel-mainimage {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-backface-visibility: hidden;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

/* Image overlay */
.css3p-overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}

.css3panel:hover .css3p-overlay {
  opacity: 0;
}

.css3p-overlay--gradient {
  opacity: 0.5;
  top: 50%;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgb(0, 0, 0)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}

/* Image animations */
.css3panel-mainimage.anim--grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}

.css3panel:hover .css3panel-mainimage.anim--grayscale {
  opacity: 0;
}

.css3panel-mainimage.anim--blur {
  -webkit-filter: blur(9px);
  filter: blur(9px);
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}

.css3panel:hover .css3panel-mainimage.anim--blur {
  opacity: 0;
}

.css3panel-mainimage.anim--grayscale.anim--blur {
  -webkit-filter: grayscale(100%) blur(9px);
  filter: grayscale(100%) blur(9px);
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}

.css3panel:hover .css3panel-mainimage.anim--grayscale.anim--blur {
  opacity: 0;
}

.css3panel-caption {
  position: absolute;
  bottom: 90px;
  color: #FFFFFF;
  z-index: 1;
  width: 100%;
  padding: 0 50px;
  text-align: right;
}

.css3panel:first-child .css3panel-caption {
  padding-left: 80px;
}

.css3panel:last-child .css3panel-caption {
  padding-right: 80px;
}

.css3panel-caption.css3caption--middle {
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.css3panel-title {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Fading in Caption */
.cssp-capt-fadein .css3panel-title,
.cssp-capt-fadein .css3panel-text,
.cssp-capt-fadein .css3panel-btn-area {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.15s ease-out, visibility 0.15s ease-out;
  transition: opacity 0.15s ease-out, visibility 0.15s ease-out;
}

.cssp-capt-fadein .css3panel:hover .css3panel-title,
.cssp-capt-fadein .css3panel:hover .css3panel-text,
.cssp-capt-fadein .css3panel:hover .css3panel-btn-area {
  opacity: 1;
  visibility: visible;
}

/* Fading Out Caption */
.cssp-capt-fadeout .css3panel-title,
.cssp-capt-fadeout .css3panel-text,
.cssp-capt-fadeout .css3panel-btn-area {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.15s ease-out, visibility 0.15s ease-out;
  transition: opacity 0.15s ease-out, visibility 0.15s ease-out;
}

.cssp-capt-fadeout .css3panel:hover .css3panel-title,
.cssp-capt-fadeout .css3panel:hover .css3panel-text {
  opacity: 0;
  visibility: hidden;
}

/* Slide in Caption */
.cssp-capt-slidein .css3panel-title,
.cssp-capt-slidein .css3panel-text,
.cssp-capt-slidein .css3panel-btn-area {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(200px);
  -ms-transform: translateX(200px);
  transform: translateX(200px);
  -webkit-transition: opacity 0.15s ease-out, visibility 0.15s ease-out, -webkit-transform 0.15s ease-out;
  transition: opacity 0.15s ease-out, visibility 0.15s ease-out, transform 0.15s ease-out;
}

.cssp-capt-slidein .css3panel:hover .css3panel-title,
.cssp-capt-slidein .css3panel:hover .css3panel-text,
.cssp-capt-slidein .css3panel:hover .css3panel-btn-area {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

/* Slide Out Caption */
.cssp-capt-slideout .css3panel-title,
.cssp-capt-slideout .css3panel-text,
.cssp-capt-slideout .css3panel-btn-area {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 0.15s ease-out, visibility 0.15s ease-out, -webkit-transform 0.15s ease-out;
  transition: opacity 0.15s ease-out, visibility 0.15s ease-out, transform 0.15s ease-out;
}

.cssp-capt-slideout .css3panel:hover .css3panel-title,
.cssp-capt-slideout .css3panel:hover .css3panel-text {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(200px);
  -ms-transform: translateX(200px);
  transform: translateX(200px);
}

.cssp-capt-slideout .css3panel:hover .css3panel-btn-area {
  -webkit-transform: translateY(40px) translateX(-10px);
  -ms-transform: translateY(40px) translateX(-10px);
  transform: translateY(40px) translateX(-10px);
  -webkit-transition-duration: 0.3s !important;
  transition-duration: 0.3s !important;
  -webkit-transition-delay: 0.1s !important;
  transition-delay: 0.1s !important;
}

.cssp-capt-slideout .css3panel:hover .css3p-overlay {
  opacity: 0;
}

/* Delay individually */
.cssp-capt-animated .css3panel-title {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.cssp-capt-animated .css3panel-text {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.cssp-capt-animated .css3panel-btn-area {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.cssp-capt-animated .css3panel:hover .css3panel-btn-area {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.cssp-capt-animated .css3p-overlay {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

/* Css Title */
.css3panel-title {
  position: relative;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 600;
  color: #FFF;
  float: right;
  margin: 0;
}

.css3panel-title.title-size-bigger {
  font-size: 70px;
  line-height: 1.1;
  text-shadow: 1px 1px 50px rgba(0, 0, 0, 0.4);
  letter-spacing: -2px;
}

.css3panel:last-child .css3panel-title {
  margin-right: 10px;
}

/* Panel text*/
.css3panel-text {
  font-size: 1rem;
  color: #fff;
  font-weight: 300;
  margin-top: 20px;
  max-width: 380px;
  margin-right: 20px;
  line-height: 1.6;
  clear: both;
  float: right;
}

/* Dark colors */
.cp-theme--dark .css3panel-title:not(.captiontitle--wbg):not(.captiontitle--dbg),
.cp-theme--dark .css3panel-text {
  color: #252525;
}

/* Title presets */
.captiontitle--wbg { /* color:#181818; */ }

.captiontitle--wbg,
.captiontitle--dbg {
  padding: 13px 0px 13px 45px;
}

.captiontitle--wbg:before,
.captiontitle--dbg:before {
  content: "";
  position: absolute;
  height: 100%;
  border-radius: 4px;
  padding-right: 35px;
  display: block;
  right: -35px;
  bottom: 0;
  left: 0;
  top: 0;
  z-index: -1;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: skew(-10deg) translate3d(0, 0, 0);
  -ms-transform: skew(-10deg) translate3d(0, 0, 0);
  transform: skew(-12deg) translate3d(0, 0, 0);
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 80%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.45)));
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 80%);
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 80%);
  background: -ms-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 80%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 80%);
}

.captiontitle--wbg:before {
  background: rgba(255, 255, 255, 0.9);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0.25) 40%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, rgba(255, 255, 255, 0.25)), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.25) 40%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0.25) 40%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0.25) 40%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.25) 40%, rgba(255, 255, 255, 0) 100%);
}

/* Btn area */
.css3panel-btn-area {
  clear: both;
  float: right;
  margin-top: 30px;
  margin-right: 20px;
}

.css3panel-btn-area .btn {
  margin-left: 20px;
  margin-bottom: 10px;
}

@media (max-width: 1440px) {
  .css3panel-caption {
    padding-left: 50px;
  }
  .css3panel:first-child,
  .css3panel:last-child {
    -webkit-box-flex: 1.1;
    -webkit-flex-grow: 1.1;
    -ms-flex-positive: 1.1;
    flex-grow: 1.1;
  }
  .css3panel .css3panel-title {
    font-size: 18px;
    margin-right: 30px;
  }
  .css3panel .css3panel-text {
    font-size: 13px;
    margin-right: 10px;
  }
  .css3panel .css3panel-btn-area {
    margin-right: 10px;
  }
  .css3panel .css3panel-btn-area .btn {
    margin-bottom: 10px;
    display: block;
  }
  .css3panel .css3panel-title.title-size-bigger {
    font-size: 30px;
  }
}
/* Fixes CSS3 Panels */
@media (min-width: 992px) and (max-width: 1200px) {
  .css3panel .css3panel-caption {
    padding-right: 30px;
  }
  .css3panels-container.css3panels--resize:hover .css3panel .css3panel-caption {
    width: 130%;
    margin-left: -30%;
  }
  .css3panels-container.css3panels--resize:hover .css3panel:hover .css3panel-caption { /*width: 100%; margin-left: 0%;*/ }
  .css3panel .css3panel-title,
  .css3panel .css3panel-title.title-size-bigger {
    font-size: 18px;
    margin-right: 30px;
  }
  .css3panel .css3panel-text {
    font-size: 13px;
    margin-right: 30px;
  }
  .css3panel .css3panel-btn-area {
    margin-right: 35px;
  }
  .css3panel .css3panel-btn-area .btn {
    margin-bottom: 10px;
  }
  .css3panel:first-child {
    -webkit-box-flex: 1.3;
    -webkit-flex-grow: 1.3;
    -ms-flex-positive: 1.3;
    flex-grow: 1.3;
  }
  .css3panels--resize .css3panel:hover {
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
  .css3panel:first-child .css3panel-caption {
    padding-left: 70px;
  }
  .css3panel:last-child .css3panel-caption {
    padding-right: 60px;
  }
  .css3panel-btn-area .btn {
    font-size: 12px;
    margin-left: 0;
  }
  .css3panel-btn-area .btn:last-child {
    margin-left: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .css3panel .css3panel-caption {
    padding-right: 25px;
  }
  .css3panels-container.css3panels--resize:hover .css3panel .css3panel-caption { /*width: 130%; margin-left: -30%;*/ }
  .css3panels-container.css3panels--resize:hover .css3panel:hover .css3panel-caption { /*width: 100%; margin-left: 0%;*/ }
  .css3panel .css3panel-title,
  .css3panel .css3panel-title.title-size-bigger {
    font-size: 16px;
    margin-right: 20px;
  }
  .css3panel .css3panel-text {
    font-size: 13px;
    margin-right: 30px;
    display: none;
  }
  .css3panel .css3panel-btn-area {
    margin-right: 35px;
    margin-top: 50px;
  }
  .css3panel .css3panel-btn-area .btn {
    margin-bottom: 10px;
  }
  .css3panel:first-child {
    flex-grow: 1.3;
  }
  .css3panels--resize .css3panel:hover {
    -webkit-box-flex: 2.2;
    -webkit-flex-grow: 2.2;
    -ms-flex-positive: 2.2;
    flex-grow: 2.2;
  }
  .css3panel:first-child .css3panel-caption {
    padding-left: 50px;
  }
  .css3panel:last-child .css3panel-caption {
    padding-right: 50px;
  }
  .css3panel:last-child .css3panel-title {
    margin-right: 30px;
  }
  .css3panel-btn-area .btn {
    font-size: 12px;
    margin-left: 0;
  }
  .css3panel-btn-area .btn:last-child {
    margin-left: 10px;
  }
}
@media (max-width: 767px) {
  .css3panels-container {
    margin-left: 0;
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .css3panel {
    float: left;
    overflow: hidden;
    position: relative;
    z-index: 0;
    box-shadow: 0 0 0 3px #fff;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .zn_pb_wrapper .kl-slideshow-css3panels:first-child .css3panel:first-child {
    padding-top: 150px;
    padding-bottom: 0;
    box-sizing: content-box;
    width: 100%;
  }
  .zn_pb_wrapper .kl-slideshow-css3panels:first-child .css3panel:first-child .css3panel-inner {
    top: 0;
  }
  .zn_pb_wrapper .kl-slideshow-css3panels:first-child .css3panel:first-child .css3panel-caption {
    margin-top: 150px;
  }
  .css3panel:first-child,
  .css3panel:last-child {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .css3panels--resize .css3panel:first-child:hover,
  .css3panels--resize .css3panel:last-child:hover,
  .css3panels--resize .css3panel:hover {
    -webkit-box-flex: 1.5;
    -webkit-flex-grow: 1.5;
    -ms-flex-positive: 1.5;
    flex-grow: 1.5;
  }
  .css3panel-inner {
    position: absolute;
    margin-left: 0;
    margin-right: 0;
    min-height: 150px;
    -webkit-transform: skewX(0);
    -ms-transform: skewX(0);
    transform: skewX(0);
    width: 100%;
    height: 100% !important;
  }
  .css3panel-mainimage-wrapper {
    -webkit-transform: skewX(0);
    -ms-transform: skewX(0);
    transform: skewX(0);
    height: 100% !important;
  }
  .css3panel-caption {
    padding-left: 20px;
    padding-right: 20px;
    bottom: auto;
    top: 20px;
  }
  .css3panel-title,
  .css3panel .css3panel-title.title-size-bigger {
    font-size: 18px;
    max-width: 70%;
  }
  .captiontitle--wbg,
  .captiontitle--dbg {
    padding: 10px 0 10px 25px;
  }
  .css3panel-text {
    font-size: 14px;
    max-width: 70%;
    margin-right: 0;
  }
  .css3panel-btn-area {
    clear: none;
    float: left;
    max-width: 30%;
    position: absolute;
    top: 0;
    left: 0;
    text-align: left;
    margin-top: 5px;
    margin-right: 0;
  }
  .css3panel-btn-area .btn:first-child {
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .css3panel:first-child {
    padding-top: 0;
    padding-bottom: 0;
    box-sizing: border-box;
    width: 100%;
  }
  .css3panel:first-child .css3panel-inner {
    top: auto;
  }
  .css3panel:first-child .css3panel-caption {
    margin-top: 0;
  }
  .css3panel-text {
    display: none;
  }
  .css3panel-btn-area {
    clear: right;
    float: right;
    max-width: 100%;
    position: relative;
    top: 0;
    left: 0;
    text-align: left;
    margin-right: 0;
    margin-top: 20px;
  }
  .css3panel-btn-area .btn:first-child { /* margin-bottom:0; */ }
}
/* No skew style */
.no-skew .css3panel-inner {
  transform: none;
}

/* =========================================================
   HERO SEQUENCE SCROLL
   komplett eigenständig / tokenbasiert
========================================================= */
.hero-seq-scroll {
  --hero-bg: var(--black);
  --hero-accent: var(--primary);
  --hero-text: var(--white);
  --hero-copy: color-mix(in srgb, var(--white) 72%, transparent);
  --hero-media-width: 50%;
  --hero-media-fade: 120px;
  --hero-content-width: 52%;
  --hero-copy-width: 26rem;
  --hero-pt: 200px;
  --hero-pb: 400px;
  --hero-heading-size: clamp(4.75rem, 6.2vw, 6.875rem);
  --hero-heading-line: 0.95;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--hero-bg);
  padding: var(--hero-pt) 0 var(--hero-pb);
}

.hero-seq-scroll__media {
  position: absolute;
  inset: 0 0 0 auto;
  width: var(--hero-media-width);
  z-index: 1;
  overflow: hidden;
}

.hero-seq-scroll__media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -1px;
  width: var(--hero-media-fade);
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to right, var(--hero-bg) 0%, transparent 100%);
}

.hero-seq-scroll__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-seq-scroll .auto-container {
  position: relative;
  z-index: 3;
}

.hero-seq-scroll__content {
  position: relative;
  width: min(100%, var(--hero-content-width));
  color: var(--hero-text);
  overflow: visible;
}

.hero-seq-scroll__heading {
  margin: 0;
  color: var(--hero-text);
  font-family: var(--font-heading, var(--font-sans-serif));
  font-weight: 700;
  text-transform: uppercase;
  line-height: var(--hero-heading-line);
  font-size: var(--hero-heading-size);
  letter-spacing: -0.02em;
  max-width: 8ch;
  position: relative;
  z-index: 3;
}

.hero-seq-scroll__heading span {
  color: var(--hero-accent);
  font-weight: 800;
}

.hero-seq-scroll__bottom {
  position: relative;
  margin-top: 2.9rem;
  min-height: 12rem;
  overflow: visible;
}

.hero-seq-scroll__button {
  position: relative;
  z-index: 3;
}

.hero-seq-scroll__text {
  position: absolute;
  left: 18.75rem;
  top: 0.35rem;
  z-index: 4;
  width: clamp(23rem, 27vw, 31rem);
  max-width: none;
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--hero-copy);
}

/* =========================================================
   1240
========================================================= */
@media only screen and (max-width: 1240px) {
  .hero-seq-scroll {
    --hero-pt: 180px;
    --hero-pb: 280px;
    --hero-heading-size: clamp(3.8rem, 5.8vw, 4.75rem);
    --hero-content-width: 54%;
    --hero-copy-width: 22rem;
  }
  .hero-seq-scroll__bottom {
    margin-top: 3rem;
    min-height: 12rem;
  }
  .hero-seq-scroll__text {
    left: 14rem;
    top: 1rem;
  }
}
/* =========================================================
   991
   Bild bleibt rechts / Text darf drüber
========================================================= */
@media only screen and (max-width: 991px) {
  .hero-seq-scroll {
    --hero-pt: 165px;
    --hero-pb: 140px;
    --hero-media-width: 50%;
    --hero-media-fade: 80px;
    --hero-content-width: 58%;
    --hero-heading-size: clamp(3.4rem, 8vw, 4.4rem);
    min-height: 100vh;
  }
  .hero-seq-scroll__content {
    width: min(100%, var(--hero-content-width));
  }
  .hero-seq-scroll__heading {
    max-width: 7.5ch;
  }
  .hero-seq-scroll__bottom {
    margin-top: 4rem;
    min-height: 16rem;
  }
  .hero-seq-scroll__button {
    margin-top: 0;
  }
  .hero-seq-scroll__text {
    left: 0;
    top: 7.5rem;
    width: min(26rem, 78vw);
    max-width: none;
    font-size: 1rem;
    line-height: 1.65;
  }
}
/* =========================================================
   820
========================================================= */
@media only screen and (max-width: 820px) {
  .hero-seq-scroll {
    --hero-pt: 150px;
    --hero-pb: 120px;
    --hero-media-width: 48%;
    --hero-content-width: 60%;
    --hero-heading-size: clamp(3.1rem, 8.4vw, 4rem);
    --hero-media-fade: 64px;
  }
  .hero-seq-scroll__bottom {
    margin-top: 4.25rem;
    min-height: 17rem;
  }
  .hero-seq-scroll__text {
    top: 8rem;
    width: min(25rem, 82vw);
  }
}
/* =========================================================
   599
========================================================= */
@media only screen and (max-width: 599px) {
  .hero-seq-scroll {
    --hero-pt: 138px;
    --hero-pb: 90px;
    --hero-media-width: 56%;
    --hero-content-width: 100%;
    --hero-heading-size: clamp(3.2rem, 11vw, 4.2rem);
    --hero-media-fade: 42px;
    min-height: 100svh;
  }
  .hero-seq-scroll__media {
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 56%;
  }
  .hero-seq-scroll__content {
    width: 100%;
    max-width: 100%;
  }
  .hero-seq-scroll__heading {
    max-width: 6.8ch;
    margin-bottom: 0;
  }
  .hero-seq-scroll__bottom {
    position: relative;
    margin-top: 8.5rem;
    min-height: 18rem;
  }
  .hero-seq-scroll__button {
    position: relative;
    z-index: 3;
  }
  .hero-seq-scroll__text {
    position: absolute;
    left: 0;
    right: 0;
    top: 9.25rem;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-right: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.55;
  }
  .hero-seq-scroll .slider-three_socials {
    display: none;
  }
}
.six-caps-regular {
  font-family: "Six Caps", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.monsterhero-one-page {
  margin: 0;
  padding: 210px 0 120px;
}

.monsterhero-one-page__tittle h1, .monsterhero-one-page__tittle .h1 {
  font-family: "Six Caps", serif;
  font-size: 23.5vw;
  font-weight: 400;
  line-height: 0.93;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  overflow: visible;
  white-space: nowrap;
  display: inline-flex;
  gap: 24px;
}

.monsterhero-one-page__tittle h1 span, .monsterhero-one-page__tittle .h1 span {
  display: inline-block;
  transform-origin: bottom center;
}

.monsterhero-one-page__text p {
  font-size: 26px;
  line-height: 40px;
  color: #AAAAAA;
  max-width: 775px;
  margin: 60px auto 0;
}

.gfx-mega-image {
  display: none;
}

.gfx-mega {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.gfx-mega .gfx-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/630;
}
.gfx-mega .gfx-slides .gfx-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}
.gfx-mega .gfx-slides .gfx-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.gfx-mega .gfx-hero-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.gfx-mega .gfx-hero-layer .gfx-hero {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gfx-mega .gfx-hero-layer .gfx-hero h2, .gfx-mega .gfx-hero-layer .gfx-hero .h2, .gfx-mega .gfx-hero-layer .gfx-hero h3, .gfx-mega .gfx-hero-layer .gfx-hero .h3 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 0.5rem;
  line-height: 1;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}
.gfx-mega .gfx-hero-layer .gfx-hero p {
  font-size: clamp(0.875rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.gfx-mega .gfx-layer-0a {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 3;
  transition: opacity 0.35s ease;
}
.gfx-mega .gfx-layer-0a .gfx-thumb {
  flex: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.gfx-mega .gfx-layer-0a .gfx-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-width: none;
  object-fit: none;
  transition: filter 0.35s ease;
}
.gfx-mega .gfx-layer-0b {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 4;
}
.gfx-mega .gfx-layer-0b .gfx-zone {
  flex: 1;
  height: 100%;
  cursor: pointer;
  position: relative;
  background: transparent;
  transition: background 0.35s ease;
}
.gfx-mega .gfx-layer-0b .gfx-zone .gfx-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: #fff;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gfx-mega .gfx-layer-0b .gfx-zone .gfx-panel h3, .gfx-mega .gfx-layer-0b .gfx-zone .gfx-panel .h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-weight: 700;
  margin: 0 0 0.25rem;
}
.gfx-mega .gfx-layer-0b .gfx-zone .gfx-panel p {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  margin: 0 0 0.75rem;
  opacity: 0.9;
  line-height: 1.4;
}
.gfx-mega .gfx-layer-0b .gfx-zone .gfx-panel .btn {
  pointer-events: all;
}
.gfx-mega .gfx-layer-0b .gfx-zone .gfx-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  color: #fff;
  pointer-events: none;
}
.gfx-mega .gfx-layer-0b .gfx-zone .gfx-caption h2, .gfx-mega .gfx-layer-0b .gfx-zone .gfx-caption .h2, .gfx-mega .gfx-layer-0b .gfx-zone .gfx-caption h3, .gfx-mega .gfx-layer-0b .gfx-zone .gfx-caption .h3 {
  font-family: var(--font-heading);
  font-size: clamp(0.875rem, 1.5vw, 1.25rem);
  font-weight: 700;
  margin: 0 0 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.gfx-mega .gfx-layer-0b .gfx-zone .gfx-caption p {
  font-size: clamp(0.7rem, 0.9vw, 0.8rem);
  margin: 0;
  opacity: 0.8;
}
.gfx-mega .gfx-layer-0b:has([data-zone]:hover) ~ .gfx-layer-0a {
  opacity: 0;
}
.gfx-mega .gfx-layer-0b:has([data-zone="1"]:hover) ~ .gfx-slides .gfx-slide:nth-child(1) {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="1"]:hover) ~ .gfx-hero-layer .gfx-hero:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
}
.gfx-mega .gfx-layer-0b:has([data-zone="1"]:hover) [data-zone="1"] {
  background: var(--overlay);
}
.gfx-mega .gfx-layer-0b:has([data-zone="1"]:hover) [data-zone="1"] .gfx-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.gfx-mega .gfx-layer-0b:has([data-zone="1"]:hover) [data-zone="1"] .gfx-caption {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="2"]:hover) ~ .gfx-slides .gfx-slide:nth-child(2) {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="2"]:hover) ~ .gfx-hero-layer .gfx-hero:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
}
.gfx-mega .gfx-layer-0b:has([data-zone="2"]:hover) [data-zone="2"] {
  background: var(--overlay);
}
.gfx-mega .gfx-layer-0b:has([data-zone="2"]:hover) [data-zone="2"] .gfx-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.gfx-mega .gfx-layer-0b:has([data-zone="2"]:hover) [data-zone="2"] .gfx-caption {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="3"]:hover) ~ .gfx-slides .gfx-slide:nth-child(3) {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="3"]:hover) ~ .gfx-hero-layer .gfx-hero:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
}
.gfx-mega .gfx-layer-0b:has([data-zone="3"]:hover) [data-zone="3"] {
  background: var(--overlay);
}
.gfx-mega .gfx-layer-0b:has([data-zone="3"]:hover) [data-zone="3"] .gfx-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.gfx-mega .gfx-layer-0b:has([data-zone="3"]:hover) [data-zone="3"] .gfx-caption {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="4"]:hover) ~ .gfx-slides .gfx-slide:nth-child(4) {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="4"]:hover) ~ .gfx-hero-layer .gfx-hero:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
}
.gfx-mega .gfx-layer-0b:has([data-zone="4"]:hover) [data-zone="4"] {
  background: var(--overlay);
}
.gfx-mega .gfx-layer-0b:has([data-zone="4"]:hover) [data-zone="4"] .gfx-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.gfx-mega .gfx-layer-0b:has([data-zone="4"]:hover) [data-zone="4"] .gfx-caption {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="5"]:hover) ~ .gfx-slides .gfx-slide:nth-child(5) {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="5"]:hover) ~ .gfx-hero-layer .gfx-hero:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
}
.gfx-mega .gfx-layer-0b:has([data-zone="5"]:hover) [data-zone="5"] {
  background: var(--overlay);
}
.gfx-mega .gfx-layer-0b:has([data-zone="5"]:hover) [data-zone="5"] .gfx-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.gfx-mega .gfx-layer-0b:has([data-zone="5"]:hover) [data-zone="5"] .gfx-caption {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="6"]:hover) ~ .gfx-slides .gfx-slide:nth-child(6) {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="6"]:hover) ~ .gfx-hero-layer .gfx-hero:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
}
.gfx-mega .gfx-layer-0b:has([data-zone="6"]:hover) [data-zone="6"] {
  background: var(--overlay);
}
.gfx-mega .gfx-layer-0b:has([data-zone="6"]:hover) [data-zone="6"] .gfx-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.gfx-mega .gfx-layer-0b:has([data-zone="6"]:hover) [data-zone="6"] .gfx-caption {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="7"]:hover) ~ .gfx-slides .gfx-slide:nth-child(7) {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="7"]:hover) ~ .gfx-hero-layer .gfx-hero:nth-child(7) {
  opacity: 1;
  transform: translateY(0);
}
.gfx-mega .gfx-layer-0b:has([data-zone="7"]:hover) [data-zone="7"] {
  background: var(--overlay);
}
.gfx-mega .gfx-layer-0b:has([data-zone="7"]:hover) [data-zone="7"] .gfx-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.gfx-mega .gfx-layer-0b:has([data-zone="7"]:hover) [data-zone="7"] .gfx-caption {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="8"]:hover) ~ .gfx-slides .gfx-slide:nth-child(8) {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="8"]:hover) ~ .gfx-hero-layer .gfx-hero:nth-child(8) {
  opacity: 1;
  transform: translateY(0);
}
.gfx-mega .gfx-layer-0b:has([data-zone="8"]:hover) [data-zone="8"] {
  background: var(--overlay);
}
.gfx-mega .gfx-layer-0b:has([data-zone="8"]:hover) [data-zone="8"] .gfx-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.gfx-mega .gfx-layer-0b:has([data-zone="8"]:hover) [data-zone="8"] .gfx-caption {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="9"]:hover) ~ .gfx-slides .gfx-slide:nth-child(9) {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="9"]:hover) ~ .gfx-hero-layer .gfx-hero:nth-child(9) {
  opacity: 1;
  transform: translateY(0);
}
.gfx-mega .gfx-layer-0b:has([data-zone="9"]:hover) [data-zone="9"] {
  background: var(--overlay);
}
.gfx-mega .gfx-layer-0b:has([data-zone="9"]:hover) [data-zone="9"] .gfx-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.gfx-mega .gfx-layer-0b:has([data-zone="9"]:hover) [data-zone="9"] .gfx-caption {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="10"]:hover) ~ .gfx-slides .gfx-slide:nth-child(10) {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="10"]:hover) ~ .gfx-hero-layer .gfx-hero:nth-child(10) {
  opacity: 1;
  transform: translateY(0);
}
.gfx-mega .gfx-layer-0b:has([data-zone="10"]:hover) [data-zone="10"] {
  background: var(--overlay);
}
.gfx-mega .gfx-layer-0b:has([data-zone="10"]:hover) [data-zone="10"] .gfx-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.gfx-mega .gfx-layer-0b:has([data-zone="10"]:hover) [data-zone="10"] .gfx-caption {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="11"]:hover) ~ .gfx-slides .gfx-slide:nth-child(11) {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="11"]:hover) ~ .gfx-hero-layer .gfx-hero:nth-child(11) {
  opacity: 1;
  transform: translateY(0);
}
.gfx-mega .gfx-layer-0b:has([data-zone="11"]:hover) [data-zone="11"] {
  background: var(--overlay);
}
.gfx-mega .gfx-layer-0b:has([data-zone="11"]:hover) [data-zone="11"] .gfx-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.gfx-mega .gfx-layer-0b:has([data-zone="11"]:hover) [data-zone="11"] .gfx-caption {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="12"]:hover) ~ .gfx-slides .gfx-slide:nth-child(12) {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="12"]:hover) ~ .gfx-hero-layer .gfx-hero:nth-child(12) {
  opacity: 1;
  transform: translateY(0);
}
.gfx-mega .gfx-layer-0b:has([data-zone="12"]:hover) [data-zone="12"] {
  background: var(--overlay);
}
.gfx-mega .gfx-layer-0b:has([data-zone="12"]:hover) [data-zone="12"] .gfx-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.gfx-mega .gfx-layer-0b:has([data-zone="12"]:hover) [data-zone="12"] .gfx-caption {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="13"]:hover) ~ .gfx-slides .gfx-slide:nth-child(13) {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="13"]:hover) ~ .gfx-hero-layer .gfx-hero:nth-child(13) {
  opacity: 1;
  transform: translateY(0);
}
.gfx-mega .gfx-layer-0b:has([data-zone="13"]:hover) [data-zone="13"] {
  background: var(--overlay);
}
.gfx-mega .gfx-layer-0b:has([data-zone="13"]:hover) [data-zone="13"] .gfx-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.gfx-mega .gfx-layer-0b:has([data-zone="13"]:hover) [data-zone="13"] .gfx-caption {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="14"]:hover) ~ .gfx-slides .gfx-slide:nth-child(14) {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="14"]:hover) ~ .gfx-hero-layer .gfx-hero:nth-child(14) {
  opacity: 1;
  transform: translateY(0);
}
.gfx-mega .gfx-layer-0b:has([data-zone="14"]:hover) [data-zone="14"] {
  background: var(--overlay);
}
.gfx-mega .gfx-layer-0b:has([data-zone="14"]:hover) [data-zone="14"] .gfx-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.gfx-mega .gfx-layer-0b:has([data-zone="14"]:hover) [data-zone="14"] .gfx-caption {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="15"]:hover) ~ .gfx-slides .gfx-slide:nth-child(15) {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="15"]:hover) ~ .gfx-hero-layer .gfx-hero:nth-child(15) {
  opacity: 1;
  transform: translateY(0);
}
.gfx-mega .gfx-layer-0b:has([data-zone="15"]:hover) [data-zone="15"] {
  background: var(--overlay);
}
.gfx-mega .gfx-layer-0b:has([data-zone="15"]:hover) [data-zone="15"] .gfx-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.gfx-mega .gfx-layer-0b:has([data-zone="15"]:hover) [data-zone="15"] .gfx-caption {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="16"]:hover) ~ .gfx-slides .gfx-slide:nth-child(16) {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="16"]:hover) ~ .gfx-hero-layer .gfx-hero:nth-child(16) {
  opacity: 1;
  transform: translateY(0);
}
.gfx-mega .gfx-layer-0b:has([data-zone="16"]:hover) [data-zone="16"] {
  background: var(--overlay);
}
.gfx-mega .gfx-layer-0b:has([data-zone="16"]:hover) [data-zone="16"] .gfx-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.gfx-mega .gfx-layer-0b:has([data-zone="16"]:hover) [data-zone="16"] .gfx-caption {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="17"]:hover) ~ .gfx-slides .gfx-slide:nth-child(17) {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="17"]:hover) ~ .gfx-hero-layer .gfx-hero:nth-child(17) {
  opacity: 1;
  transform: translateY(0);
}
.gfx-mega .gfx-layer-0b:has([data-zone="17"]:hover) [data-zone="17"] {
  background: var(--overlay);
}
.gfx-mega .gfx-layer-0b:has([data-zone="17"]:hover) [data-zone="17"] .gfx-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.gfx-mega .gfx-layer-0b:has([data-zone="17"]:hover) [data-zone="17"] .gfx-caption {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="18"]:hover) ~ .gfx-slides .gfx-slide:nth-child(18) {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="18"]:hover) ~ .gfx-hero-layer .gfx-hero:nth-child(18) {
  opacity: 1;
  transform: translateY(0);
}
.gfx-mega .gfx-layer-0b:has([data-zone="18"]:hover) [data-zone="18"] {
  background: var(--overlay);
}
.gfx-mega .gfx-layer-0b:has([data-zone="18"]:hover) [data-zone="18"] .gfx-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.gfx-mega .gfx-layer-0b:has([data-zone="18"]:hover) [data-zone="18"] .gfx-caption {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="19"]:hover) ~ .gfx-slides .gfx-slide:nth-child(19) {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="19"]:hover) ~ .gfx-hero-layer .gfx-hero:nth-child(19) {
  opacity: 1;
  transform: translateY(0);
}
.gfx-mega .gfx-layer-0b:has([data-zone="19"]:hover) [data-zone="19"] {
  background: var(--overlay);
}
.gfx-mega .gfx-layer-0b:has([data-zone="19"]:hover) [data-zone="19"] .gfx-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.gfx-mega .gfx-layer-0b:has([data-zone="19"]:hover) [data-zone="19"] .gfx-caption {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="20"]:hover) ~ .gfx-slides .gfx-slide:nth-child(20) {
  opacity: 1;
}
.gfx-mega .gfx-layer-0b:has([data-zone="20"]:hover) ~ .gfx-hero-layer .gfx-hero:nth-child(20) {
  opacity: 1;
  transform: translateY(0);
}
.gfx-mega .gfx-layer-0b:has([data-zone="20"]:hover) [data-zone="20"] {
  background: var(--overlay);
}
.gfx-mega .gfx-layer-0b:has([data-zone="20"]:hover) [data-zone="20"] .gfx-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.gfx-mega .gfx-layer-0b:has([data-zone="20"]:hover) [data-zone="20"] .gfx-caption {
  opacity: 1;
}

.gfx-mega.gfx-mega-with-lines .gfx-layer-0b .gfx-zone {
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}
.gfx-mega.gfx-mega-with-lines .gfx-layer-0b .gfx-zone:last-child {
  border-right: none;
}

.gfx-mega.gfx-mega-overlay-1 .gfx-layer-0b:has([data-zone="1"]:hover) [data-zone="1"] {
  background: rgba(0, 0, 0, calc(8 / 100));
}
.gfx-mega.gfx-mega-overlay-1 .gfx-layer-0b:has([data-zone="2"]:hover) [data-zone="2"] {
  background: rgba(0, 0, 0, calc(8 / 100));
}
.gfx-mega.gfx-mega-overlay-1 .gfx-layer-0b:has([data-zone="3"]:hover) [data-zone="3"] {
  background: rgba(0, 0, 0, calc(8 / 100));
}
.gfx-mega.gfx-mega-overlay-1 .gfx-layer-0b:has([data-zone="4"]:hover) [data-zone="4"] {
  background: rgba(0, 0, 0, calc(8 / 100));
}
.gfx-mega.gfx-mega-overlay-1 .gfx-layer-0b:has([data-zone="5"]:hover) [data-zone="5"] {
  background: rgba(0, 0, 0, calc(8 / 100));
}
.gfx-mega.gfx-mega-overlay-1 .gfx-layer-0b:has([data-zone="6"]:hover) [data-zone="6"] {
  background: rgba(0, 0, 0, calc(8 / 100));
}
.gfx-mega.gfx-mega-overlay-1 .gfx-layer-0b:has([data-zone="7"]:hover) [data-zone="7"] {
  background: rgba(0, 0, 0, calc(8 / 100));
}
.gfx-mega.gfx-mega-overlay-1 .gfx-layer-0b:has([data-zone="8"]:hover) [data-zone="8"] {
  background: rgba(0, 0, 0, calc(8 / 100));
}
.gfx-mega.gfx-mega-overlay-1 .gfx-layer-0b:has([data-zone="9"]:hover) [data-zone="9"] {
  background: rgba(0, 0, 0, calc(8 / 100));
}
.gfx-mega.gfx-mega-overlay-1 .gfx-layer-0b:has([data-zone="10"]:hover) [data-zone="10"] {
  background: rgba(0, 0, 0, calc(8 / 100));
}
.gfx-mega.gfx-mega-overlay-1 .gfx-layer-0b:has([data-zone="11"]:hover) [data-zone="11"] {
  background: rgba(0, 0, 0, calc(8 / 100));
}
.gfx-mega.gfx-mega-overlay-1 .gfx-layer-0b:has([data-zone="12"]:hover) [data-zone="12"] {
  background: rgba(0, 0, 0, calc(8 / 100));
}
.gfx-mega.gfx-mega-overlay-1 .gfx-layer-0b:has([data-zone="13"]:hover) [data-zone="13"] {
  background: rgba(0, 0, 0, calc(8 / 100));
}
.gfx-mega.gfx-mega-overlay-1 .gfx-layer-0b:has([data-zone="14"]:hover) [data-zone="14"] {
  background: rgba(0, 0, 0, calc(8 / 100));
}
.gfx-mega.gfx-mega-overlay-1 .gfx-layer-0b:has([data-zone="15"]:hover) [data-zone="15"] {
  background: rgba(0, 0, 0, calc(8 / 100));
}
.gfx-mega.gfx-mega-overlay-1 .gfx-layer-0b:has([data-zone="16"]:hover) [data-zone="16"] {
  background: rgba(0, 0, 0, calc(8 / 100));
}
.gfx-mega.gfx-mega-overlay-1 .gfx-layer-0b:has([data-zone="17"]:hover) [data-zone="17"] {
  background: rgba(0, 0, 0, calc(8 / 100));
}
.gfx-mega.gfx-mega-overlay-1 .gfx-layer-0b:has([data-zone="18"]:hover) [data-zone="18"] {
  background: rgba(0, 0, 0, calc(8 / 100));
}
.gfx-mega.gfx-mega-overlay-1 .gfx-layer-0b:has([data-zone="19"]:hover) [data-zone="19"] {
  background: rgba(0, 0, 0, calc(8 / 100));
}
.gfx-mega.gfx-mega-overlay-1 .gfx-layer-0b:has([data-zone="20"]:hover) [data-zone="20"] {
  background: rgba(0, 0, 0, calc(8 / 100));
}

.gfx-mega.gfx-mega-overlay-2 .gfx-layer-0b:has([data-zone="1"]:hover) [data-zone="1"] {
  background: rgba(0, 0, 0, calc(16 / 100));
}
.gfx-mega.gfx-mega-overlay-2 .gfx-layer-0b:has([data-zone="2"]:hover) [data-zone="2"] {
  background: rgba(0, 0, 0, calc(16 / 100));
}
.gfx-mega.gfx-mega-overlay-2 .gfx-layer-0b:has([data-zone="3"]:hover) [data-zone="3"] {
  background: rgba(0, 0, 0, calc(16 / 100));
}
.gfx-mega.gfx-mega-overlay-2 .gfx-layer-0b:has([data-zone="4"]:hover) [data-zone="4"] {
  background: rgba(0, 0, 0, calc(16 / 100));
}
.gfx-mega.gfx-mega-overlay-2 .gfx-layer-0b:has([data-zone="5"]:hover) [data-zone="5"] {
  background: rgba(0, 0, 0, calc(16 / 100));
}
.gfx-mega.gfx-mega-overlay-2 .gfx-layer-0b:has([data-zone="6"]:hover) [data-zone="6"] {
  background: rgba(0, 0, 0, calc(16 / 100));
}
.gfx-mega.gfx-mega-overlay-2 .gfx-layer-0b:has([data-zone="7"]:hover) [data-zone="7"] {
  background: rgba(0, 0, 0, calc(16 / 100));
}
.gfx-mega.gfx-mega-overlay-2 .gfx-layer-0b:has([data-zone="8"]:hover) [data-zone="8"] {
  background: rgba(0, 0, 0, calc(16 / 100));
}
.gfx-mega.gfx-mega-overlay-2 .gfx-layer-0b:has([data-zone="9"]:hover) [data-zone="9"] {
  background: rgba(0, 0, 0, calc(16 / 100));
}
.gfx-mega.gfx-mega-overlay-2 .gfx-layer-0b:has([data-zone="10"]:hover) [data-zone="10"] {
  background: rgba(0, 0, 0, calc(16 / 100));
}
.gfx-mega.gfx-mega-overlay-2 .gfx-layer-0b:has([data-zone="11"]:hover) [data-zone="11"] {
  background: rgba(0, 0, 0, calc(16 / 100));
}
.gfx-mega.gfx-mega-overlay-2 .gfx-layer-0b:has([data-zone="12"]:hover) [data-zone="12"] {
  background: rgba(0, 0, 0, calc(16 / 100));
}
.gfx-mega.gfx-mega-overlay-2 .gfx-layer-0b:has([data-zone="13"]:hover) [data-zone="13"] {
  background: rgba(0, 0, 0, calc(16 / 100));
}
.gfx-mega.gfx-mega-overlay-2 .gfx-layer-0b:has([data-zone="14"]:hover) [data-zone="14"] {
  background: rgba(0, 0, 0, calc(16 / 100));
}
.gfx-mega.gfx-mega-overlay-2 .gfx-layer-0b:has([data-zone="15"]:hover) [data-zone="15"] {
  background: rgba(0, 0, 0, calc(16 / 100));
}
.gfx-mega.gfx-mega-overlay-2 .gfx-layer-0b:has([data-zone="16"]:hover) [data-zone="16"] {
  background: rgba(0, 0, 0, calc(16 / 100));
}
.gfx-mega.gfx-mega-overlay-2 .gfx-layer-0b:has([data-zone="17"]:hover) [data-zone="17"] {
  background: rgba(0, 0, 0, calc(16 / 100));
}
.gfx-mega.gfx-mega-overlay-2 .gfx-layer-0b:has([data-zone="18"]:hover) [data-zone="18"] {
  background: rgba(0, 0, 0, calc(16 / 100));
}
.gfx-mega.gfx-mega-overlay-2 .gfx-layer-0b:has([data-zone="19"]:hover) [data-zone="19"] {
  background: rgba(0, 0, 0, calc(16 / 100));
}
.gfx-mega.gfx-mega-overlay-2 .gfx-layer-0b:has([data-zone="20"]:hover) [data-zone="20"] {
  background: rgba(0, 0, 0, calc(16 / 100));
}

.gfx-mega.gfx-mega-overlay-3 .gfx-layer-0b:has([data-zone="1"]:hover) [data-zone="1"] {
  background: rgba(0, 0, 0, calc(24 / 100));
}
.gfx-mega.gfx-mega-overlay-3 .gfx-layer-0b:has([data-zone="2"]:hover) [data-zone="2"] {
  background: rgba(0, 0, 0, calc(24 / 100));
}
.gfx-mega.gfx-mega-overlay-3 .gfx-layer-0b:has([data-zone="3"]:hover) [data-zone="3"] {
  background: rgba(0, 0, 0, calc(24 / 100));
}
.gfx-mega.gfx-mega-overlay-3 .gfx-layer-0b:has([data-zone="4"]:hover) [data-zone="4"] {
  background: rgba(0, 0, 0, calc(24 / 100));
}
.gfx-mega.gfx-mega-overlay-3 .gfx-layer-0b:has([data-zone="5"]:hover) [data-zone="5"] {
  background: rgba(0, 0, 0, calc(24 / 100));
}
.gfx-mega.gfx-mega-overlay-3 .gfx-layer-0b:has([data-zone="6"]:hover) [data-zone="6"] {
  background: rgba(0, 0, 0, calc(24 / 100));
}
.gfx-mega.gfx-mega-overlay-3 .gfx-layer-0b:has([data-zone="7"]:hover) [data-zone="7"] {
  background: rgba(0, 0, 0, calc(24 / 100));
}
.gfx-mega.gfx-mega-overlay-3 .gfx-layer-0b:has([data-zone="8"]:hover) [data-zone="8"] {
  background: rgba(0, 0, 0, calc(24 / 100));
}
.gfx-mega.gfx-mega-overlay-3 .gfx-layer-0b:has([data-zone="9"]:hover) [data-zone="9"] {
  background: rgba(0, 0, 0, calc(24 / 100));
}
.gfx-mega.gfx-mega-overlay-3 .gfx-layer-0b:has([data-zone="10"]:hover) [data-zone="10"] {
  background: rgba(0, 0, 0, calc(24 / 100));
}
.gfx-mega.gfx-mega-overlay-3 .gfx-layer-0b:has([data-zone="11"]:hover) [data-zone="11"] {
  background: rgba(0, 0, 0, calc(24 / 100));
}
.gfx-mega.gfx-mega-overlay-3 .gfx-layer-0b:has([data-zone="12"]:hover) [data-zone="12"] {
  background: rgba(0, 0, 0, calc(24 / 100));
}
.gfx-mega.gfx-mega-overlay-3 .gfx-layer-0b:has([data-zone="13"]:hover) [data-zone="13"] {
  background: rgba(0, 0, 0, calc(24 / 100));
}
.gfx-mega.gfx-mega-overlay-3 .gfx-layer-0b:has([data-zone="14"]:hover) [data-zone="14"] {
  background: rgba(0, 0, 0, calc(24 / 100));
}
.gfx-mega.gfx-mega-overlay-3 .gfx-layer-0b:has([data-zone="15"]:hover) [data-zone="15"] {
  background: rgba(0, 0, 0, calc(24 / 100));
}
.gfx-mega.gfx-mega-overlay-3 .gfx-layer-0b:has([data-zone="16"]:hover) [data-zone="16"] {
  background: rgba(0, 0, 0, calc(24 / 100));
}
.gfx-mega.gfx-mega-overlay-3 .gfx-layer-0b:has([data-zone="17"]:hover) [data-zone="17"] {
  background: rgba(0, 0, 0, calc(24 / 100));
}
.gfx-mega.gfx-mega-overlay-3 .gfx-layer-0b:has([data-zone="18"]:hover) [data-zone="18"] {
  background: rgba(0, 0, 0, calc(24 / 100));
}
.gfx-mega.gfx-mega-overlay-3 .gfx-layer-0b:has([data-zone="19"]:hover) [data-zone="19"] {
  background: rgba(0, 0, 0, calc(24 / 100));
}
.gfx-mega.gfx-mega-overlay-3 .gfx-layer-0b:has([data-zone="20"]:hover) [data-zone="20"] {
  background: rgba(0, 0, 0, calc(24 / 100));
}

.gfx-mega.gfx-mega-overlay-4 .gfx-layer-0b:has([data-zone="1"]:hover) [data-zone="1"] {
  background: rgba(0, 0, 0, calc(32 / 100));
}
.gfx-mega.gfx-mega-overlay-4 .gfx-layer-0b:has([data-zone="2"]:hover) [data-zone="2"] {
  background: rgba(0, 0, 0, calc(32 / 100));
}
.gfx-mega.gfx-mega-overlay-4 .gfx-layer-0b:has([data-zone="3"]:hover) [data-zone="3"] {
  background: rgba(0, 0, 0, calc(32 / 100));
}
.gfx-mega.gfx-mega-overlay-4 .gfx-layer-0b:has([data-zone="4"]:hover) [data-zone="4"] {
  background: rgba(0, 0, 0, calc(32 / 100));
}
.gfx-mega.gfx-mega-overlay-4 .gfx-layer-0b:has([data-zone="5"]:hover) [data-zone="5"] {
  background: rgba(0, 0, 0, calc(32 / 100));
}
.gfx-mega.gfx-mega-overlay-4 .gfx-layer-0b:has([data-zone="6"]:hover) [data-zone="6"] {
  background: rgba(0, 0, 0, calc(32 / 100));
}
.gfx-mega.gfx-mega-overlay-4 .gfx-layer-0b:has([data-zone="7"]:hover) [data-zone="7"] {
  background: rgba(0, 0, 0, calc(32 / 100));
}
.gfx-mega.gfx-mega-overlay-4 .gfx-layer-0b:has([data-zone="8"]:hover) [data-zone="8"] {
  background: rgba(0, 0, 0, calc(32 / 100));
}
.gfx-mega.gfx-mega-overlay-4 .gfx-layer-0b:has([data-zone="9"]:hover) [data-zone="9"] {
  background: rgba(0, 0, 0, calc(32 / 100));
}
.gfx-mega.gfx-mega-overlay-4 .gfx-layer-0b:has([data-zone="10"]:hover) [data-zone="10"] {
  background: rgba(0, 0, 0, calc(32 / 100));
}
.gfx-mega.gfx-mega-overlay-4 .gfx-layer-0b:has([data-zone="11"]:hover) [data-zone="11"] {
  background: rgba(0, 0, 0, calc(32 / 100));
}
.gfx-mega.gfx-mega-overlay-4 .gfx-layer-0b:has([data-zone="12"]:hover) [data-zone="12"] {
  background: rgba(0, 0, 0, calc(32 / 100));
}
.gfx-mega.gfx-mega-overlay-4 .gfx-layer-0b:has([data-zone="13"]:hover) [data-zone="13"] {
  background: rgba(0, 0, 0, calc(32 / 100));
}
.gfx-mega.gfx-mega-overlay-4 .gfx-layer-0b:has([data-zone="14"]:hover) [data-zone="14"] {
  background: rgba(0, 0, 0, calc(32 / 100));
}
.gfx-mega.gfx-mega-overlay-4 .gfx-layer-0b:has([data-zone="15"]:hover) [data-zone="15"] {
  background: rgba(0, 0, 0, calc(32 / 100));
}
.gfx-mega.gfx-mega-overlay-4 .gfx-layer-0b:has([data-zone="16"]:hover) [data-zone="16"] {
  background: rgba(0, 0, 0, calc(32 / 100));
}
.gfx-mega.gfx-mega-overlay-4 .gfx-layer-0b:has([data-zone="17"]:hover) [data-zone="17"] {
  background: rgba(0, 0, 0, calc(32 / 100));
}
.gfx-mega.gfx-mega-overlay-4 .gfx-layer-0b:has([data-zone="18"]:hover) [data-zone="18"] {
  background: rgba(0, 0, 0, calc(32 / 100));
}
.gfx-mega.gfx-mega-overlay-4 .gfx-layer-0b:has([data-zone="19"]:hover) [data-zone="19"] {
  background: rgba(0, 0, 0, calc(32 / 100));
}
.gfx-mega.gfx-mega-overlay-4 .gfx-layer-0b:has([data-zone="20"]:hover) [data-zone="20"] {
  background: rgba(0, 0, 0, calc(32 / 100));
}

.gfx-mega.gfx-mega-overlay-5 .gfx-layer-0b:has([data-zone="1"]:hover) [data-zone="1"] {
  background: rgba(0, 0, 0, calc(40 / 100));
}
.gfx-mega.gfx-mega-overlay-5 .gfx-layer-0b:has([data-zone="2"]:hover) [data-zone="2"] {
  background: rgba(0, 0, 0, calc(40 / 100));
}
.gfx-mega.gfx-mega-overlay-5 .gfx-layer-0b:has([data-zone="3"]:hover) [data-zone="3"] {
  background: rgba(0, 0, 0, calc(40 / 100));
}
.gfx-mega.gfx-mega-overlay-5 .gfx-layer-0b:has([data-zone="4"]:hover) [data-zone="4"] {
  background: rgba(0, 0, 0, calc(40 / 100));
}
.gfx-mega.gfx-mega-overlay-5 .gfx-layer-0b:has([data-zone="5"]:hover) [data-zone="5"] {
  background: rgba(0, 0, 0, calc(40 / 100));
}
.gfx-mega.gfx-mega-overlay-5 .gfx-layer-0b:has([data-zone="6"]:hover) [data-zone="6"] {
  background: rgba(0, 0, 0, calc(40 / 100));
}
.gfx-mega.gfx-mega-overlay-5 .gfx-layer-0b:has([data-zone="7"]:hover) [data-zone="7"] {
  background: rgba(0, 0, 0, calc(40 / 100));
}
.gfx-mega.gfx-mega-overlay-5 .gfx-layer-0b:has([data-zone="8"]:hover) [data-zone="8"] {
  background: rgba(0, 0, 0, calc(40 / 100));
}
.gfx-mega.gfx-mega-overlay-5 .gfx-layer-0b:has([data-zone="9"]:hover) [data-zone="9"] {
  background: rgba(0, 0, 0, calc(40 / 100));
}
.gfx-mega.gfx-mega-overlay-5 .gfx-layer-0b:has([data-zone="10"]:hover) [data-zone="10"] {
  background: rgba(0, 0, 0, calc(40 / 100));
}
.gfx-mega.gfx-mega-overlay-5 .gfx-layer-0b:has([data-zone="11"]:hover) [data-zone="11"] {
  background: rgba(0, 0, 0, calc(40 / 100));
}
.gfx-mega.gfx-mega-overlay-5 .gfx-layer-0b:has([data-zone="12"]:hover) [data-zone="12"] {
  background: rgba(0, 0, 0, calc(40 / 100));
}
.gfx-mega.gfx-mega-overlay-5 .gfx-layer-0b:has([data-zone="13"]:hover) [data-zone="13"] {
  background: rgba(0, 0, 0, calc(40 / 100));
}
.gfx-mega.gfx-mega-overlay-5 .gfx-layer-0b:has([data-zone="14"]:hover) [data-zone="14"] {
  background: rgba(0, 0, 0, calc(40 / 100));
}
.gfx-mega.gfx-mega-overlay-5 .gfx-layer-0b:has([data-zone="15"]:hover) [data-zone="15"] {
  background: rgba(0, 0, 0, calc(40 / 100));
}
.gfx-mega.gfx-mega-overlay-5 .gfx-layer-0b:has([data-zone="16"]:hover) [data-zone="16"] {
  background: rgba(0, 0, 0, calc(40 / 100));
}
.gfx-mega.gfx-mega-overlay-5 .gfx-layer-0b:has([data-zone="17"]:hover) [data-zone="17"] {
  background: rgba(0, 0, 0, calc(40 / 100));
}
.gfx-mega.gfx-mega-overlay-5 .gfx-layer-0b:has([data-zone="18"]:hover) [data-zone="18"] {
  background: rgba(0, 0, 0, calc(40 / 100));
}
.gfx-mega.gfx-mega-overlay-5 .gfx-layer-0b:has([data-zone="19"]:hover) [data-zone="19"] {
  background: rgba(0, 0, 0, calc(40 / 100));
}
.gfx-mega.gfx-mega-overlay-5 .gfx-layer-0b:has([data-zone="20"]:hover) [data-zone="20"] {
  background: rgba(0, 0, 0, calc(40 / 100));
}

.gfx-mega.gfx-mega-overlay-6 .gfx-layer-0b:has([data-zone="1"]:hover) [data-zone="1"] {
  background: rgba(0, 0, 0, calc(48 / 100));
}
.gfx-mega.gfx-mega-overlay-6 .gfx-layer-0b:has([data-zone="2"]:hover) [data-zone="2"] {
  background: rgba(0, 0, 0, calc(48 / 100));
}
.gfx-mega.gfx-mega-overlay-6 .gfx-layer-0b:has([data-zone="3"]:hover) [data-zone="3"] {
  background: rgba(0, 0, 0, calc(48 / 100));
}
.gfx-mega.gfx-mega-overlay-6 .gfx-layer-0b:has([data-zone="4"]:hover) [data-zone="4"] {
  background: rgba(0, 0, 0, calc(48 / 100));
}
.gfx-mega.gfx-mega-overlay-6 .gfx-layer-0b:has([data-zone="5"]:hover) [data-zone="5"] {
  background: rgba(0, 0, 0, calc(48 / 100));
}
.gfx-mega.gfx-mega-overlay-6 .gfx-layer-0b:has([data-zone="6"]:hover) [data-zone="6"] {
  background: rgba(0, 0, 0, calc(48 / 100));
}
.gfx-mega.gfx-mega-overlay-6 .gfx-layer-0b:has([data-zone="7"]:hover) [data-zone="7"] {
  background: rgba(0, 0, 0, calc(48 / 100));
}
.gfx-mega.gfx-mega-overlay-6 .gfx-layer-0b:has([data-zone="8"]:hover) [data-zone="8"] {
  background: rgba(0, 0, 0, calc(48 / 100));
}
.gfx-mega.gfx-mega-overlay-6 .gfx-layer-0b:has([data-zone="9"]:hover) [data-zone="9"] {
  background: rgba(0, 0, 0, calc(48 / 100));
}
.gfx-mega.gfx-mega-overlay-6 .gfx-layer-0b:has([data-zone="10"]:hover) [data-zone="10"] {
  background: rgba(0, 0, 0, calc(48 / 100));
}
.gfx-mega.gfx-mega-overlay-6 .gfx-layer-0b:has([data-zone="11"]:hover) [data-zone="11"] {
  background: rgba(0, 0, 0, calc(48 / 100));
}
.gfx-mega.gfx-mega-overlay-6 .gfx-layer-0b:has([data-zone="12"]:hover) [data-zone="12"] {
  background: rgba(0, 0, 0, calc(48 / 100));
}
.gfx-mega.gfx-mega-overlay-6 .gfx-layer-0b:has([data-zone="13"]:hover) [data-zone="13"] {
  background: rgba(0, 0, 0, calc(48 / 100));
}
.gfx-mega.gfx-mega-overlay-6 .gfx-layer-0b:has([data-zone="14"]:hover) [data-zone="14"] {
  background: rgba(0, 0, 0, calc(48 / 100));
}
.gfx-mega.gfx-mega-overlay-6 .gfx-layer-0b:has([data-zone="15"]:hover) [data-zone="15"] {
  background: rgba(0, 0, 0, calc(48 / 100));
}
.gfx-mega.gfx-mega-overlay-6 .gfx-layer-0b:has([data-zone="16"]:hover) [data-zone="16"] {
  background: rgba(0, 0, 0, calc(48 / 100));
}
.gfx-mega.gfx-mega-overlay-6 .gfx-layer-0b:has([data-zone="17"]:hover) [data-zone="17"] {
  background: rgba(0, 0, 0, calc(48 / 100));
}
.gfx-mega.gfx-mega-overlay-6 .gfx-layer-0b:has([data-zone="18"]:hover) [data-zone="18"] {
  background: rgba(0, 0, 0, calc(48 / 100));
}
.gfx-mega.gfx-mega-overlay-6 .gfx-layer-0b:has([data-zone="19"]:hover) [data-zone="19"] {
  background: rgba(0, 0, 0, calc(48 / 100));
}
.gfx-mega.gfx-mega-overlay-6 .gfx-layer-0b:has([data-zone="20"]:hover) [data-zone="20"] {
  background: rgba(0, 0, 0, calc(48 / 100));
}

.gfx-mega.gfx-mega-overlay-7 .gfx-layer-0b:has([data-zone="1"]:hover) [data-zone="1"] {
  background: rgba(0, 0, 0, calc(56 / 100));
}
.gfx-mega.gfx-mega-overlay-7 .gfx-layer-0b:has([data-zone="2"]:hover) [data-zone="2"] {
  background: rgba(0, 0, 0, calc(56 / 100));
}
.gfx-mega.gfx-mega-overlay-7 .gfx-layer-0b:has([data-zone="3"]:hover) [data-zone="3"] {
  background: rgba(0, 0, 0, calc(56 / 100));
}
.gfx-mega.gfx-mega-overlay-7 .gfx-layer-0b:has([data-zone="4"]:hover) [data-zone="4"] {
  background: rgba(0, 0, 0, calc(56 / 100));
}
.gfx-mega.gfx-mega-overlay-7 .gfx-layer-0b:has([data-zone="5"]:hover) [data-zone="5"] {
  background: rgba(0, 0, 0, calc(56 / 100));
}
.gfx-mega.gfx-mega-overlay-7 .gfx-layer-0b:has([data-zone="6"]:hover) [data-zone="6"] {
  background: rgba(0, 0, 0, calc(56 / 100));
}
.gfx-mega.gfx-mega-overlay-7 .gfx-layer-0b:has([data-zone="7"]:hover) [data-zone="7"] {
  background: rgba(0, 0, 0, calc(56 / 100));
}
.gfx-mega.gfx-mega-overlay-7 .gfx-layer-0b:has([data-zone="8"]:hover) [data-zone="8"] {
  background: rgba(0, 0, 0, calc(56 / 100));
}
.gfx-mega.gfx-mega-overlay-7 .gfx-layer-0b:has([data-zone="9"]:hover) [data-zone="9"] {
  background: rgba(0, 0, 0, calc(56 / 100));
}
.gfx-mega.gfx-mega-overlay-7 .gfx-layer-0b:has([data-zone="10"]:hover) [data-zone="10"] {
  background: rgba(0, 0, 0, calc(56 / 100));
}
.gfx-mega.gfx-mega-overlay-7 .gfx-layer-0b:has([data-zone="11"]:hover) [data-zone="11"] {
  background: rgba(0, 0, 0, calc(56 / 100));
}
.gfx-mega.gfx-mega-overlay-7 .gfx-layer-0b:has([data-zone="12"]:hover) [data-zone="12"] {
  background: rgba(0, 0, 0, calc(56 / 100));
}
.gfx-mega.gfx-mega-overlay-7 .gfx-layer-0b:has([data-zone="13"]:hover) [data-zone="13"] {
  background: rgba(0, 0, 0, calc(56 / 100));
}
.gfx-mega.gfx-mega-overlay-7 .gfx-layer-0b:has([data-zone="14"]:hover) [data-zone="14"] {
  background: rgba(0, 0, 0, calc(56 / 100));
}
.gfx-mega.gfx-mega-overlay-7 .gfx-layer-0b:has([data-zone="15"]:hover) [data-zone="15"] {
  background: rgba(0, 0, 0, calc(56 / 100));
}
.gfx-mega.gfx-mega-overlay-7 .gfx-layer-0b:has([data-zone="16"]:hover) [data-zone="16"] {
  background: rgba(0, 0, 0, calc(56 / 100));
}
.gfx-mega.gfx-mega-overlay-7 .gfx-layer-0b:has([data-zone="17"]:hover) [data-zone="17"] {
  background: rgba(0, 0, 0, calc(56 / 100));
}
.gfx-mega.gfx-mega-overlay-7 .gfx-layer-0b:has([data-zone="18"]:hover) [data-zone="18"] {
  background: rgba(0, 0, 0, calc(56 / 100));
}
.gfx-mega.gfx-mega-overlay-7 .gfx-layer-0b:has([data-zone="19"]:hover) [data-zone="19"] {
  background: rgba(0, 0, 0, calc(56 / 100));
}
.gfx-mega.gfx-mega-overlay-7 .gfx-layer-0b:has([data-zone="20"]:hover) [data-zone="20"] {
  background: rgba(0, 0, 0, calc(56 / 100));
}

.gfx-mega.gfx-mega-overlay-8 .gfx-layer-0b:has([data-zone="1"]:hover) [data-zone="1"] {
  background: rgba(0, 0, 0, calc(64 / 100));
}
.gfx-mega.gfx-mega-overlay-8 .gfx-layer-0b:has([data-zone="2"]:hover) [data-zone="2"] {
  background: rgba(0, 0, 0, calc(64 / 100));
}
.gfx-mega.gfx-mega-overlay-8 .gfx-layer-0b:has([data-zone="3"]:hover) [data-zone="3"] {
  background: rgba(0, 0, 0, calc(64 / 100));
}
.gfx-mega.gfx-mega-overlay-8 .gfx-layer-0b:has([data-zone="4"]:hover) [data-zone="4"] {
  background: rgba(0, 0, 0, calc(64 / 100));
}
.gfx-mega.gfx-mega-overlay-8 .gfx-layer-0b:has([data-zone="5"]:hover) [data-zone="5"] {
  background: rgba(0, 0, 0, calc(64 / 100));
}
.gfx-mega.gfx-mega-overlay-8 .gfx-layer-0b:has([data-zone="6"]:hover) [data-zone="6"] {
  background: rgba(0, 0, 0, calc(64 / 100));
}
.gfx-mega.gfx-mega-overlay-8 .gfx-layer-0b:has([data-zone="7"]:hover) [data-zone="7"] {
  background: rgba(0, 0, 0, calc(64 / 100));
}
.gfx-mega.gfx-mega-overlay-8 .gfx-layer-0b:has([data-zone="8"]:hover) [data-zone="8"] {
  background: rgba(0, 0, 0, calc(64 / 100));
}
.gfx-mega.gfx-mega-overlay-8 .gfx-layer-0b:has([data-zone="9"]:hover) [data-zone="9"] {
  background: rgba(0, 0, 0, calc(64 / 100));
}
.gfx-mega.gfx-mega-overlay-8 .gfx-layer-0b:has([data-zone="10"]:hover) [data-zone="10"] {
  background: rgba(0, 0, 0, calc(64 / 100));
}
.gfx-mega.gfx-mega-overlay-8 .gfx-layer-0b:has([data-zone="11"]:hover) [data-zone="11"] {
  background: rgba(0, 0, 0, calc(64 / 100));
}
.gfx-mega.gfx-mega-overlay-8 .gfx-layer-0b:has([data-zone="12"]:hover) [data-zone="12"] {
  background: rgba(0, 0, 0, calc(64 / 100));
}
.gfx-mega.gfx-mega-overlay-8 .gfx-layer-0b:has([data-zone="13"]:hover) [data-zone="13"] {
  background: rgba(0, 0, 0, calc(64 / 100));
}
.gfx-mega.gfx-mega-overlay-8 .gfx-layer-0b:has([data-zone="14"]:hover) [data-zone="14"] {
  background: rgba(0, 0, 0, calc(64 / 100));
}
.gfx-mega.gfx-mega-overlay-8 .gfx-layer-0b:has([data-zone="15"]:hover) [data-zone="15"] {
  background: rgba(0, 0, 0, calc(64 / 100));
}
.gfx-mega.gfx-mega-overlay-8 .gfx-layer-0b:has([data-zone="16"]:hover) [data-zone="16"] {
  background: rgba(0, 0, 0, calc(64 / 100));
}
.gfx-mega.gfx-mega-overlay-8 .gfx-layer-0b:has([data-zone="17"]:hover) [data-zone="17"] {
  background: rgba(0, 0, 0, calc(64 / 100));
}
.gfx-mega.gfx-mega-overlay-8 .gfx-layer-0b:has([data-zone="18"]:hover) [data-zone="18"] {
  background: rgba(0, 0, 0, calc(64 / 100));
}
.gfx-mega.gfx-mega-overlay-8 .gfx-layer-0b:has([data-zone="19"]:hover) [data-zone="19"] {
  background: rgba(0, 0, 0, calc(64 / 100));
}
.gfx-mega.gfx-mega-overlay-8 .gfx-layer-0b:has([data-zone="20"]:hover) [data-zone="20"] {
  background: rgba(0, 0, 0, calc(64 / 100));
}

.gfx-mega.gfx-mega-overlay-9 .gfx-layer-0b:has([data-zone="1"]:hover) [data-zone="1"] {
  background: rgba(0, 0, 0, calc(72 / 100));
}
.gfx-mega.gfx-mega-overlay-9 .gfx-layer-0b:has([data-zone="2"]:hover) [data-zone="2"] {
  background: rgba(0, 0, 0, calc(72 / 100));
}
.gfx-mega.gfx-mega-overlay-9 .gfx-layer-0b:has([data-zone="3"]:hover) [data-zone="3"] {
  background: rgba(0, 0, 0, calc(72 / 100));
}
.gfx-mega.gfx-mega-overlay-9 .gfx-layer-0b:has([data-zone="4"]:hover) [data-zone="4"] {
  background: rgba(0, 0, 0, calc(72 / 100));
}
.gfx-mega.gfx-mega-overlay-9 .gfx-layer-0b:has([data-zone="5"]:hover) [data-zone="5"] {
  background: rgba(0, 0, 0, calc(72 / 100));
}
.gfx-mega.gfx-mega-overlay-9 .gfx-layer-0b:has([data-zone="6"]:hover) [data-zone="6"] {
  background: rgba(0, 0, 0, calc(72 / 100));
}
.gfx-mega.gfx-mega-overlay-9 .gfx-layer-0b:has([data-zone="7"]:hover) [data-zone="7"] {
  background: rgba(0, 0, 0, calc(72 / 100));
}
.gfx-mega.gfx-mega-overlay-9 .gfx-layer-0b:has([data-zone="8"]:hover) [data-zone="8"] {
  background: rgba(0, 0, 0, calc(72 / 100));
}
.gfx-mega.gfx-mega-overlay-9 .gfx-layer-0b:has([data-zone="9"]:hover) [data-zone="9"] {
  background: rgba(0, 0, 0, calc(72 / 100));
}
.gfx-mega.gfx-mega-overlay-9 .gfx-layer-0b:has([data-zone="10"]:hover) [data-zone="10"] {
  background: rgba(0, 0, 0, calc(72 / 100));
}
.gfx-mega.gfx-mega-overlay-9 .gfx-layer-0b:has([data-zone="11"]:hover) [data-zone="11"] {
  background: rgba(0, 0, 0, calc(72 / 100));
}
.gfx-mega.gfx-mega-overlay-9 .gfx-layer-0b:has([data-zone="12"]:hover) [data-zone="12"] {
  background: rgba(0, 0, 0, calc(72 / 100));
}
.gfx-mega.gfx-mega-overlay-9 .gfx-layer-0b:has([data-zone="13"]:hover) [data-zone="13"] {
  background: rgba(0, 0, 0, calc(72 / 100));
}
.gfx-mega.gfx-mega-overlay-9 .gfx-layer-0b:has([data-zone="14"]:hover) [data-zone="14"] {
  background: rgba(0, 0, 0, calc(72 / 100));
}
.gfx-mega.gfx-mega-overlay-9 .gfx-layer-0b:has([data-zone="15"]:hover) [data-zone="15"] {
  background: rgba(0, 0, 0, calc(72 / 100));
}
.gfx-mega.gfx-mega-overlay-9 .gfx-layer-0b:has([data-zone="16"]:hover) [data-zone="16"] {
  background: rgba(0, 0, 0, calc(72 / 100));
}
.gfx-mega.gfx-mega-overlay-9 .gfx-layer-0b:has([data-zone="17"]:hover) [data-zone="17"] {
  background: rgba(0, 0, 0, calc(72 / 100));
}
.gfx-mega.gfx-mega-overlay-9 .gfx-layer-0b:has([data-zone="18"]:hover) [data-zone="18"] {
  background: rgba(0, 0, 0, calc(72 / 100));
}
.gfx-mega.gfx-mega-overlay-9 .gfx-layer-0b:has([data-zone="19"]:hover) [data-zone="19"] {
  background: rgba(0, 0, 0, calc(72 / 100));
}
.gfx-mega.gfx-mega-overlay-9 .gfx-layer-0b:has([data-zone="20"]:hover) [data-zone="20"] {
  background: rgba(0, 0, 0, calc(72 / 100));
}

.gfx-mega.gfx-mega-overlay-10 .gfx-layer-0b:has([data-zone="1"]:hover) [data-zone="1"] {
  background: rgba(0, 0, 0, calc(80 / 100));
}
.gfx-mega.gfx-mega-overlay-10 .gfx-layer-0b:has([data-zone="2"]:hover) [data-zone="2"] {
  background: rgba(0, 0, 0, calc(80 / 100));
}
.gfx-mega.gfx-mega-overlay-10 .gfx-layer-0b:has([data-zone="3"]:hover) [data-zone="3"] {
  background: rgba(0, 0, 0, calc(80 / 100));
}
.gfx-mega.gfx-mega-overlay-10 .gfx-layer-0b:has([data-zone="4"]:hover) [data-zone="4"] {
  background: rgba(0, 0, 0, calc(80 / 100));
}
.gfx-mega.gfx-mega-overlay-10 .gfx-layer-0b:has([data-zone="5"]:hover) [data-zone="5"] {
  background: rgba(0, 0, 0, calc(80 / 100));
}
.gfx-mega.gfx-mega-overlay-10 .gfx-layer-0b:has([data-zone="6"]:hover) [data-zone="6"] {
  background: rgba(0, 0, 0, calc(80 / 100));
}
.gfx-mega.gfx-mega-overlay-10 .gfx-layer-0b:has([data-zone="7"]:hover) [data-zone="7"] {
  background: rgba(0, 0, 0, calc(80 / 100));
}
.gfx-mega.gfx-mega-overlay-10 .gfx-layer-0b:has([data-zone="8"]:hover) [data-zone="8"] {
  background: rgba(0, 0, 0, calc(80 / 100));
}
.gfx-mega.gfx-mega-overlay-10 .gfx-layer-0b:has([data-zone="9"]:hover) [data-zone="9"] {
  background: rgba(0, 0, 0, calc(80 / 100));
}
.gfx-mega.gfx-mega-overlay-10 .gfx-layer-0b:has([data-zone="10"]:hover) [data-zone="10"] {
  background: rgba(0, 0, 0, calc(80 / 100));
}
.gfx-mega.gfx-mega-overlay-10 .gfx-layer-0b:has([data-zone="11"]:hover) [data-zone="11"] {
  background: rgba(0, 0, 0, calc(80 / 100));
}
.gfx-mega.gfx-mega-overlay-10 .gfx-layer-0b:has([data-zone="12"]:hover) [data-zone="12"] {
  background: rgba(0, 0, 0, calc(80 / 100));
}
.gfx-mega.gfx-mega-overlay-10 .gfx-layer-0b:has([data-zone="13"]:hover) [data-zone="13"] {
  background: rgba(0, 0, 0, calc(80 / 100));
}
.gfx-mega.gfx-mega-overlay-10 .gfx-layer-0b:has([data-zone="14"]:hover) [data-zone="14"] {
  background: rgba(0, 0, 0, calc(80 / 100));
}
.gfx-mega.gfx-mega-overlay-10 .gfx-layer-0b:has([data-zone="15"]:hover) [data-zone="15"] {
  background: rgba(0, 0, 0, calc(80 / 100));
}
.gfx-mega.gfx-mega-overlay-10 .gfx-layer-0b:has([data-zone="16"]:hover) [data-zone="16"] {
  background: rgba(0, 0, 0, calc(80 / 100));
}
.gfx-mega.gfx-mega-overlay-10 .gfx-layer-0b:has([data-zone="17"]:hover) [data-zone="17"] {
  background: rgba(0, 0, 0, calc(80 / 100));
}
.gfx-mega.gfx-mega-overlay-10 .gfx-layer-0b:has([data-zone="18"]:hover) [data-zone="18"] {
  background: rgba(0, 0, 0, calc(80 / 100));
}
.gfx-mega.gfx-mega-overlay-10 .gfx-layer-0b:has([data-zone="19"]:hover) [data-zone="19"] {
  background: rgba(0, 0, 0, calc(80 / 100));
}
.gfx-mega.gfx-mega-overlay-10 .gfx-layer-0b:has([data-zone="20"]:hover) [data-zone="20"] {
  background: rgba(0, 0, 0, calc(80 / 100));
}

.gfx-mega.gfx-mega-grayscale .gfx-layer-0a .gfx-thumb {
  filter: grayscale(100%);
  transition: filter 0.35s ease;
}

.gfx-mega.gfx-mega-grayscale-reverse .gfx-slides .gfx-slide img {
  filter: grayscale(100%);
  transition: filter 0.35s ease;
}

.gfx-mega.gfx-mega-fade-top,
.gfx-mega.gfx-mega-fade-bottom {
  --gfx-fade-color: 0, 0, 0;
  --gfx-fade-opacity: 0.85;
  --gfx-fade-height: 30%;
}

.gfx-mega.gfx-mega-fade-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--gfx-fade-height);
  background: linear-gradient(to bottom, rgba(var(--gfx-fade-color), var(--gfx-fade-opacity)) 0%, rgba(var(--gfx-fade-color), 0) 100%);
  z-index: 30;
  pointer-events: none;
}

.gfx-mega.gfx-mega-fade-bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--gfx-fade-height);
  background: linear-gradient(to top, rgba(var(--gfx-fade-color), var(--gfx-fade-opacity)) 0%, rgba(var(--gfx-fade-color), 0) 100%);
  z-index: 30;
  pointer-events: none;
}

.gfx-mega.gfx-mega-blur .gfx-layer-0a .gfx-thumb {
  filter: blur(2px);
  transition: filter 0.35s ease;
}

.gfx-mega.gfx-mega-grayscale.gfx-mega-blur .gfx-layer-0a .gfx-thumb {
  filter: grayscale(100%) blur(2px);
  transition: filter 0.35s ease;
}

.gfx-mega.gfx-mega-zoom-hover .gfx-slides .gfx-slide img {
  transition: transform 0.35s ease;
}
.gfx-mega.gfx-mega-zoom-hover .gfx-layer-0b:has([data-zone="1"]:hover) ~ .gfx-slides .gfx-slide:nth-child(1) img {
  transform: scale(1.04);
}
.gfx-mega.gfx-mega-zoom-hover .gfx-layer-0b:has([data-zone="2"]:hover) ~ .gfx-slides .gfx-slide:nth-child(2) img {
  transform: scale(1.04);
}
.gfx-mega.gfx-mega-zoom-hover .gfx-layer-0b:has([data-zone="3"]:hover) ~ .gfx-slides .gfx-slide:nth-child(3) img {
  transform: scale(1.04);
}
.gfx-mega.gfx-mega-zoom-hover .gfx-layer-0b:has([data-zone="4"]:hover) ~ .gfx-slides .gfx-slide:nth-child(4) img {
  transform: scale(1.04);
}
.gfx-mega.gfx-mega-zoom-hover .gfx-layer-0b:has([data-zone="5"]:hover) ~ .gfx-slides .gfx-slide:nth-child(5) img {
  transform: scale(1.04);
}
.gfx-mega.gfx-mega-zoom-hover .gfx-layer-0b:has([data-zone="6"]:hover) ~ .gfx-slides .gfx-slide:nth-child(6) img {
  transform: scale(1.04);
}
.gfx-mega.gfx-mega-zoom-hover .gfx-layer-0b:has([data-zone="7"]:hover) ~ .gfx-slides .gfx-slide:nth-child(7) img {
  transform: scale(1.04);
}
.gfx-mega.gfx-mega-zoom-hover .gfx-layer-0b:has([data-zone="8"]:hover) ~ .gfx-slides .gfx-slide:nth-child(8) img {
  transform: scale(1.04);
}
.gfx-mega.gfx-mega-zoom-hover .gfx-layer-0b:has([data-zone="9"]:hover) ~ .gfx-slides .gfx-slide:nth-child(9) img {
  transform: scale(1.04);
}
.gfx-mega.gfx-mega-zoom-hover .gfx-layer-0b:has([data-zone="10"]:hover) ~ .gfx-slides .gfx-slide:nth-child(10) img {
  transform: scale(1.04);
}
.gfx-mega.gfx-mega-zoom-hover .gfx-layer-0b:has([data-zone="11"]:hover) ~ .gfx-slides .gfx-slide:nth-child(11) img {
  transform: scale(1.04);
}
.gfx-mega.gfx-mega-zoom-hover .gfx-layer-0b:has([data-zone="12"]:hover) ~ .gfx-slides .gfx-slide:nth-child(12) img {
  transform: scale(1.04);
}
.gfx-mega.gfx-mega-zoom-hover .gfx-layer-0b:has([data-zone="13"]:hover) ~ .gfx-slides .gfx-slide:nth-child(13) img {
  transform: scale(1.04);
}
.gfx-mega.gfx-mega-zoom-hover .gfx-layer-0b:has([data-zone="14"]:hover) ~ .gfx-slides .gfx-slide:nth-child(14) img {
  transform: scale(1.04);
}
.gfx-mega.gfx-mega-zoom-hover .gfx-layer-0b:has([data-zone="15"]:hover) ~ .gfx-slides .gfx-slide:nth-child(15) img {
  transform: scale(1.04);
}
.gfx-mega.gfx-mega-zoom-hover .gfx-layer-0b:has([data-zone="16"]:hover) ~ .gfx-slides .gfx-slide:nth-child(16) img {
  transform: scale(1.04);
}
.gfx-mega.gfx-mega-zoom-hover .gfx-layer-0b:has([data-zone="17"]:hover) ~ .gfx-slides .gfx-slide:nth-child(17) img {
  transform: scale(1.04);
}
.gfx-mega.gfx-mega-zoom-hover .gfx-layer-0b:has([data-zone="18"]:hover) ~ .gfx-slides .gfx-slide:nth-child(18) img {
  transform: scale(1.04);
}
.gfx-mega.gfx-mega-zoom-hover .gfx-layer-0b:has([data-zone="19"]:hover) ~ .gfx-slides .gfx-slide:nth-child(19) img {
  transform: scale(1.04);
}
.gfx-mega.gfx-mega-zoom-hover .gfx-layer-0b:has([data-zone="20"]:hover) ~ .gfx-slides .gfx-slide:nth-child(20) img {
  transform: scale(1.04);
}

.gfx-mega.gfx-mega-caption-always .gfx-layer-0b .gfx-zone .gfx-caption {
  opacity: 1;
}

.gfx-mega.gfx-mega-caption-hover .gfx-layer-0b .gfx-zone .gfx-caption {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gfx-mega.gfx-mega-panel-btn-full .gfx-panel .btn {
  display: block;
  width: 100%;
  text-align: center;
}

.gfx-mega.gfx-mega-slant-plus-5 .gfx-layer-0a,
.gfx-mega.gfx-mega-slant-plus-5 .gfx-layer-0b {
  display: flex;
  overflow: hidden;
}
.gfx-mega.gfx-mega-slant-plus-5 .gfx-layer-0a .gfx-thumb,
.gfx-mega.gfx-mega-slant-plus-5 .gfx-layer-0b .gfx-zone {
  transform: skewX(-5deg);
  margin-left: -10px;
  margin-right: -10px;
  overflow: hidden;
  flex: 1;
}

.gfx-mega.gfx-mega-slant-minus-5 .gfx-layer-0a,
.gfx-mega.gfx-mega-slant-minus-5 .gfx-layer-0b {
  display: flex;
  overflow: hidden;
}
.gfx-mega.gfx-mega-slant-minus-5 .gfx-layer-0a .gfx-thumb,
.gfx-mega.gfx-mega-slant-minus-5 .gfx-layer-0b .gfx-zone {
  transform: skewX(5deg);
  margin-left: -10px;
  margin-right: -10px;
  overflow: hidden;
  flex: 1;
}

.gfx-mega.gfx-mega-slant-plus-10 .gfx-layer-0a,
.gfx-mega.gfx-mega-slant-plus-10 .gfx-layer-0b {
  display: flex;
  overflow: hidden;
}
.gfx-mega.gfx-mega-slant-plus-10 .gfx-layer-0a .gfx-thumb,
.gfx-mega.gfx-mega-slant-plus-10 .gfx-layer-0b .gfx-zone {
  transform: skewX(-10deg);
  margin-left: -20px;
  margin-right: -20px;
  overflow: hidden;
  flex: 1;
}

.gfx-mega.gfx-mega-slant-minus-10 .gfx-layer-0a,
.gfx-mega.gfx-mega-slant-minus-10 .gfx-layer-0b {
  display: flex;
  overflow: hidden;
}
.gfx-mega.gfx-mega-slant-minus-10 .gfx-layer-0a .gfx-thumb,
.gfx-mega.gfx-mega-slant-minus-10 .gfx-layer-0b .gfx-zone {
  transform: skewX(10deg);
  margin-left: -20px;
  margin-right: -20px;
  overflow: hidden;
  flex: 1;
}

.gfx-mega.gfx-mega-slant-plus-15 .gfx-layer-0a,
.gfx-mega.gfx-mega-slant-plus-15 .gfx-layer-0b {
  display: flex;
  overflow: hidden;
}
.gfx-mega.gfx-mega-slant-plus-15 .gfx-layer-0a .gfx-thumb,
.gfx-mega.gfx-mega-slant-plus-15 .gfx-layer-0b .gfx-zone {
  transform: skewX(-15deg);
  margin-left: -30px;
  margin-right: -30px;
  overflow: hidden;
  flex: 1;
}

.gfx-mega.gfx-mega-slant-minus-15 .gfx-layer-0a,
.gfx-mega.gfx-mega-slant-minus-15 .gfx-layer-0b {
  display: flex;
  overflow: hidden;
}
.gfx-mega.gfx-mega-slant-minus-15 .gfx-layer-0a .gfx-thumb,
.gfx-mega.gfx-mega-slant-minus-15 .gfx-layer-0b .gfx-zone {
  transform: skewX(15deg);
  margin-left: -30px;
  margin-right: -30px;
  overflow: hidden;
  flex: 1;
}

.gfx-mega.gfx-mega-slant-plus-20 .gfx-layer-0a,
.gfx-mega.gfx-mega-slant-plus-20 .gfx-layer-0b {
  display: flex;
  overflow: hidden;
}
.gfx-mega.gfx-mega-slant-plus-20 .gfx-layer-0a .gfx-thumb,
.gfx-mega.gfx-mega-slant-plus-20 .gfx-layer-0b .gfx-zone {
  transform: skewX(-20deg);
  margin-left: -40px;
  margin-right: -40px;
  overflow: hidden;
  flex: 1;
}

.gfx-mega.gfx-mega-slant-minus-20 .gfx-layer-0a,
.gfx-mega.gfx-mega-slant-minus-20 .gfx-layer-0b {
  display: flex;
  overflow: hidden;
}
.gfx-mega.gfx-mega-slant-minus-20 .gfx-layer-0a .gfx-thumb,
.gfx-mega.gfx-mega-slant-minus-20 .gfx-layer-0b .gfx-zone {
  transform: skewX(20deg);
  margin-left: -40px;
  margin-right: -40px;
  overflow: hidden;
  flex: 1;
}

.gfx-mega.gfx-mega-slant-plus-25 .gfx-layer-0a,
.gfx-mega.gfx-mega-slant-plus-25 .gfx-layer-0b {
  display: flex;
  overflow: hidden;
}
.gfx-mega.gfx-mega-slant-plus-25 .gfx-layer-0a .gfx-thumb,
.gfx-mega.gfx-mega-slant-plus-25 .gfx-layer-0b .gfx-zone {
  transform: skewX(-25deg);
  margin-left: -50px;
  margin-right: -50px;
  overflow: hidden;
  flex: 1;
}

.gfx-mega.gfx-mega-slant-minus-25 .gfx-layer-0a,
.gfx-mega.gfx-mega-slant-minus-25 .gfx-layer-0b {
  display: flex;
  overflow: hidden;
}
.gfx-mega.gfx-mega-slant-minus-25 .gfx-layer-0a .gfx-thumb,
.gfx-mega.gfx-mega-slant-minus-25 .gfx-layer-0b .gfx-zone {
  transform: skewX(25deg);
  margin-left: -50px;
  margin-right: -50px;
  overflow: hidden;
  flex: 1;
}

.gfx-mega.gfx-mega-slant-plus-30 .gfx-layer-0a,
.gfx-mega.gfx-mega-slant-plus-30 .gfx-layer-0b {
  display: flex;
  overflow: hidden;
}
.gfx-mega.gfx-mega-slant-plus-30 .gfx-layer-0a .gfx-thumb,
.gfx-mega.gfx-mega-slant-plus-30 .gfx-layer-0b .gfx-zone {
  transform: skewX(-30deg);
  margin-left: -60px;
  margin-right: -60px;
  overflow: hidden;
  flex: 1;
}

.gfx-mega.gfx-mega-slant-minus-30 .gfx-layer-0a,
.gfx-mega.gfx-mega-slant-minus-30 .gfx-layer-0b {
  display: flex;
  overflow: hidden;
}
.gfx-mega.gfx-mega-slant-minus-30 .gfx-layer-0a .gfx-thumb,
.gfx-mega.gfx-mega-slant-minus-30 .gfx-layer-0b .gfx-zone {
  transform: skewX(30deg);
  margin-left: -60px;
  margin-right: -60px;
  overflow: hidden;
  flex: 1;
}

.icon-featured {
  display: inline-block;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 2.3em;
  line-height: 110px;
  margin: 15px;
  background-color: var(--primary);
}
.icon-featured::after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: "";
  box-sizing: content-box;
}
.icon-featured.icon-featured-lg {
  width: 180px !important;
  height: 180px !important;
  line-height: 180px !important;
}

.featured-box {
  background: var(--white);
  box-sizing: border-box;
  border-bottom: 1px solid #DFDFDF;
  border-left: 1px solid #ECECEC;
  border-right: 1px solid #ECECEC;
  border-radius: calc(var(--border-radius) * 2);
  box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.05);
  margin: 20px auto;
  min-height: 100px;
  position: relative;
  text-align: center;
  z-index: 1;
}
.featured-box h4, .featured-box .h4 {
  font-size: 1.3em;
  font-weight: 400;
  letter-spacing: -0.7px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.featured-box .box-content {
  border-radius: calc(var(--border-radius) * 2);
  border-top: 4px solid rgba(0, 0, 0, 0.06);
  padding: 1.8rem;
  position: relative;
}
.featured-box .box-content:not(.box-content-border-0) {
  top: -1px;
  border-top-width: 4px;
}
.featured-box .box-content.box-content-border-0 {
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-bottom: 0 !important;
}
.featured-box .box-content.box-content-border-bottom {
  top: 1px;
}
.featured-box .box-content-border-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-bottom: 4px solid rgba(0, 0, 0, 0.06);
}

.featured-box.border-radius {
  border-radius: calc(var(--border-radius) * 2) !important;
}
.featured-box.border-radius.box-shadow-1::before {
  border-radius: calc(var(--border-radius) * 2) !important;
}

.featured-box-text-left {
  text-align: left;
}

.featured-boxes .featured-box {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.featured-boxes-flat .featured-box {
  box-shadow: none;
  margin: 10px 0;
}
.featured-boxes-flat .featured-box .box-content {
  background: var(--white);
  margin-top: 65px;
}
.featured-boxes-flat .featured-box .icon-featured {
  display: inline-block;
  font-size: 2em;
  height: 90px;
  line-height: 90px;
  padding: 0;
  width: 90px;
  margin: -100px 0 -15px;
  position: relative;
  top: -40px;
}

.featured-boxes-style-2 .featured-box {
  background: none;
  border: 0;
  margin: 10px 0;
  box-shadow: none;
}
.featured-boxes-style-2 .featured-box .box-content {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.featured-boxes-style-2 .featured-box .icon-featured {
  display: inline-block;
  font-size: 1.8em;
  height: 75px;
  line-height: 75px;
  padding: 0;
  width: 75px;
  margin-top: 0;
}

.featured-boxes-style-3 .featured-box {
  margin: 10px 0;
}
.featured-boxes-style-3 .featured-box .icon-featured {
  display: inline-block;
  font-size: 1.8em;
  height: 75px;
  line-height: 75px;
  padding: 0;
  width: 75px;
  margin-top: -37px;
  top: -37px;
  background: var(--white);
  border: 2px solid rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.06);
}
.featured-boxes-style-3:not(.featured-boxes-flat) .featured-box {
  background: none;
  border: 0;
  box-shadow: none;
}
.featured-boxes-style-3:not(.featured-boxes-flat) .featured-box .box-content {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.featured-boxes-style-4 .featured-box {
  background: none;
  border: 0;
  margin: 10px 0;
  box-shadow: none;
}
.featured-boxes-style-4 .featured-box .box-content {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.featured-boxes-style-4 .featured-box .icon-featured {
  display: inline-block;
  font-size: 35px;
  height: 45px;
  line-height: 45px;
  padding: 0;
  width: 45px;
  margin-top: 0;
  margin-bottom: 10px;
  background: transparent;
  color: rgba(0, 0, 0, 0.06);
  border-radius: 0;
}

.featured-boxes-style-5 .featured-box,
.featured-boxes-style-6 .featured-box,
.featured-boxes-style-7 .featured-box,
.featured-boxes-style-9 .featured-box {
  background: none;
  border: 0;
  box-shadow: none;
  margin: 10px 0;
}
.featured-boxes-style-5 .featured-box .box-content,
.featured-boxes-style-6 .featured-box .box-content,
.featured-boxes-style-7 .featured-box .box-content,
.featured-boxes-style-9 .featured-box .box-content {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.featured-boxes-style-5 .featured-box .box-content h4, .featured-boxes-style-5 .featured-box .box-content .h4,
.featured-boxes-style-6 .featured-box .box-content h4,
.featured-boxes-style-6 .featured-box .box-content .h4,
.featured-boxes-style-7 .featured-box .box-content h4,
.featured-boxes-style-7 .featured-box .box-content .h4,
.featured-boxes-style-9 .featured-box .box-content h4,
.featured-boxes-style-9 .featured-box .box-content .h4 {
  color: var(--gray-600);
}
.featured-boxes-style-5 .featured-box .icon-featured,
.featured-boxes-style-6 .featured-box .icon-featured,
.featured-boxes-style-7 .featured-box .icon-featured,
.featured-boxes-style-9 .featured-box .icon-featured {
  display: inline-block;
  font-size: 2em;
  height: 75px;
  padding: 0;
  width: 75px;
  margin-top: 0;
  margin-bottom: 10px;
  background: var(--white);
  border: 1px solid #dfdfdf;
  color: var(--text);
  line-height: 73px;
}

.featured-boxes-style-6 .featured-box .icon-featured {
  border: 1px solid #cecece;
  color: var(--text);
}
.featured-boxes-style-6 .featured-box .icon-featured::after {
  border: 5px solid var(--gray-100);
  border-radius: 50%;
  box-sizing: content-box;
  content: "";
  display: block;
  height: 100%;
  left: -6px;
  padding: 1px;
  position: absolute;
  top: -6px;
  width: 100%;
}

.featured-boxes-style-7 .featured-box .icon-featured {
  border: 1px solid #dfdfdf;
  color: var(--text);
}

.featured-boxes-style-8 .featured-box .icon-featured {
  display: inline-block;
  font-size: 2em;
  height: 75px;
  padding: 0;
  width: 75px;
  margin: -15px -15px 0 0;
  background: var(--white);
  line-height: 75px;
  border: 0;
  color: var(--text);
}
.featured-boxes-style-8 .featured-box .icon-featured::after {
  display: none;
}

.featured-boxes-style-9 .featured-box .icon-featured {
  background: var(--white);
  box-shadow: 0px 0px 32px -7px rgba(0, 0, 0, 0.1);
  border: 0;
  width: 100px;
  height: 100px;
  line-height: 100px;
  transition-duration: 0.4s;
}

.featured-boxes-modern-style-1 .featured-box {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  height: auto !important;
  margin: 0 !important;
}
.featured-boxes-modern-style-1 .featured-box .featured-box-background {
  position: absolute;
  inset: 0;
  transition: cubic-bezier(0.39, 0.66, 0.42, 0.99) all 2s;
  transform: scale(1);
}
.featured-boxes-modern-style-1 .featured-box .box-content {
  padding: 4rem;
  border: none;
  z-index: 3;
}
.featured-boxes-modern-style-1 .featured-box .box-content .icon-featured {
  color: var(--white);
  background: transparent;
  width: auto;
  height: auto;
  line-height: 1.4;
  font-size: 2.9rem;
  margin: 0 0 1rem;
}
.featured-boxes-modern-style-1 .featured-box .box-content h2, .featured-boxes-modern-style-1 .featured-box .box-content .h2 {
  color: var(--white);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 0.7rem;
}
.featured-boxes-modern-style-1 .featured-box .box-content p {
  color: #999;
  margin-bottom: 1.6rem;
}
.featured-boxes-modern-style-1 .featured-box:hover .featured-box-background {
  transform: scale(1.1);
}
@media (max-width: 575px) {
  .featured-boxes-modern-style-1 .featured-box .box-content {
    padding: 2rem 1.5rem;
  }
}

.featured-boxes-modern-style-2 .featured-box {
  position: relative;
  background: linear-gradient(135deg, #6c6ef1 0%, #e2498e 100%);
  border-radius: 0;
  margin: 0 !important;
  overflow: hidden;
}
.featured-boxes-modern-style-2 .featured-box::before {
  content: "";
  position: absolute;
  inset: 8px;
  background: var(--white);
}
.featured-boxes-modern-style-2 .featured-box .box-content {
  padding: 4rem;
  border: none;
}
.featured-boxes-modern-style-2 .featured-box .box-content .icon-featured {
  color: var(--white);
  background: transparent;
  width: auto;
  height: auto;
  line-height: 1.4;
  font-size: 2.9rem;
  margin: 0 0 1rem;
}
.featured-boxes-modern-style-2 .featured-box .box-content h2, .featured-boxes-modern-style-2 .featured-box .box-content .h2 {
  color: var(--dark);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 0.7rem;
}
.featured-boxes-modern-style-2 .featured-box .box-content p {
  color: #999;
  margin-bottom: 1.6rem;
}
@media (max-width: 575px) {
  .featured-boxes-modern-style-2 .featured-box .box-content {
    padding: 2rem 1.5rem;
  }
}

.featured-boxes-modern-style-2-hover-only .featured-box::before {
  inset: 1px;
  transition: cubic-bezier(0.39, 0.66, 0.42, 0.99) all 200ms;
}
.featured-boxes-modern-style-2-hover-only:not(:hover) .featured-box {
  background: rgba(0, 0, 0, 0.06) !important;
  box-shadow: none;
  border: 0;
}
.featured-boxes-modern-style-2-hover-only:not(:hover) .featured-box-no-borders {
  background: none !important;
}
.featured-boxes-modern-style-2-hover-only:not(:hover) .featured-box-box-shadow {
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.1);
}
.featured-boxes-modern-style-2-hover-only:hover .featured-box::before {
  inset: 8px;
}

.featured-boxes-modern-style-primary .featured-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--quaternary) 100%);
}

.featured-boxes-modern-style-secondary .featured-box {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--quaternary) 100%);
}

.featured-boxes-modern-style-tertiary .featured-box {
  background: linear-gradient(135deg, var(--tertiary) 0%, var(--quaternary) 100%);
}

.featured-boxes-full .featured-box-full {
  text-align: center;
  padding: 55px;
}
.featured-boxes-full .featured-box-full i, .featured-boxes-full .featured-box-full .icons, .featured-boxes-full .featured-box-full h1, .featured-boxes-full .featured-box-full .h1, .featured-boxes-full .featured-box-full h2, .featured-boxes-full .featured-box-full .h2, .featured-boxes-full .featured-box-full h3, .featured-boxes-full .featured-box-full .h3, .featured-boxes-full .featured-box-full h4, .featured-boxes-full .featured-box-full .h4, .featured-boxes-full .featured-box-full h5, .featured-boxes-full .featured-box-full .h5, .featured-boxes-full .featured-box-full h6, .featured-boxes-full .featured-box-full .h6, .featured-boxes-full .featured-box-full p, .featured-boxes-full .featured-box-full a {
  padding: 0;
  margin: 0;
}
.featured-boxes-full .featured-box-full:not(.featured-box-full-light) i, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) .icons, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) h1, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) .h1, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) h2, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) .h2, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) h3, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) .h3, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) h4, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) .h4, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) h5, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) .h5, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) h6, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) .h6, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) p, .featured-boxes-full .featured-box-full:not(.featured-box-full-light) a {
  color: var(--white);
}
.featured-boxes-full .featured-box-full i, .featured-boxes-full .featured-box-full .icons {
  font-size: 3.9em;
  margin-bottom: 15px;
}
.featured-boxes-full .featured-box-full p {
  padding-top: 12px;
  opacity: 0.8;
}
.featured-boxes-full .featured-box-full.featured-box-full-light {
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.featured-boxes-full .featured-box-full.featured-box-full-light:not(:last-child) {
  border-right: 0;
}
.featured-boxes-full .featured-box-full.featured-box-full-light:first-child {
  border-left: 0;
}

.featured-box-primary .icon-featured {
  background-color: #eaff48;
  color: var(--on-primary, #fff);
}
.featured-box-primary h4, .featured-box-primary .h4 {
  color: #eaff48;
}
.featured-box-primary .box-content {
  border-top-color: #eaff48;
}
.featured-box-primary .box-content-border-bottom {
  border-bottom-color: #eaff48;
}

.featured-boxes-style-3 .featured-box.featured-box-primary .icon-featured {
  border-color: #eaff48;
  color: #eaff48;
}

.featured-boxes-style-4 .featured-box.featured-box-primary .icon-featured {
  color: #eaff48;
}

.featured-boxes-style-5 .featured-box.featured-box-primary .icon-featured,
.featured-boxes-style-6 .featured-box.featured-box-primary .icon-featured,
.featured-boxes-style-8 .featured-box.featured-box-primary .icon-featured {
  color: #eaff48;
}

.featured-box-effect-2.featured-box-primary .icon-featured::after {
  box-shadow: 0 0 0 3px #eaff48;
}

.featured-box-effect-3.featured-box-primary .icon-featured::after {
  box-shadow: 0 0 0 10px #eaff48;
}
.featured-box-effect-3.featured-box-primary:hover .icon-featured {
  background: #eaff48 !important;
}

.featured-boxes-full .featured-box-full-primary {
  background-color: #eaff48;
  color: var(--on-primary, #fff);
}

.featured-box-secondary .icon-featured {
  background-color: #c67416;
  color: var(--on-secondary, #fff);
}
.featured-box-secondary h4, .featured-box-secondary .h4 {
  color: #c67416;
}
.featured-box-secondary .box-content {
  border-top-color: #c67416;
}
.featured-box-secondary .box-content-border-bottom {
  border-bottom-color: #c67416;
}

.featured-boxes-style-3 .featured-box.featured-box-secondary .icon-featured {
  border-color: #c67416;
  color: #c67416;
}

.featured-boxes-style-4 .featured-box.featured-box-secondary .icon-featured {
  color: #c67416;
}

.featured-boxes-style-5 .featured-box.featured-box-secondary .icon-featured,
.featured-boxes-style-6 .featured-box.featured-box-secondary .icon-featured,
.featured-boxes-style-8 .featured-box.featured-box-secondary .icon-featured {
  color: #c67416;
}

.featured-box-effect-2.featured-box-secondary .icon-featured::after {
  box-shadow: 0 0 0 3px #c67416;
}

.featured-box-effect-3.featured-box-secondary .icon-featured::after {
  box-shadow: 0 0 0 10px #c67416;
}
.featured-box-effect-3.featured-box-secondary:hover .icon-featured {
  background: #c67416 !important;
}

.featured-boxes-full .featured-box-full-secondary {
  background-color: #c67416;
  color: var(--on-secondary, #fff);
}

.featured-box-tertiary .icon-featured {
  background-color: #10b981;
  color: var(--on-tertiary, #fff);
}
.featured-box-tertiary h4, .featured-box-tertiary .h4 {
  color: #10b981;
}
.featured-box-tertiary .box-content {
  border-top-color: #10b981;
}
.featured-box-tertiary .box-content-border-bottom {
  border-bottom-color: #10b981;
}

.featured-boxes-style-3 .featured-box.featured-box-tertiary .icon-featured {
  border-color: #10b981;
  color: #10b981;
}

.featured-boxes-style-4 .featured-box.featured-box-tertiary .icon-featured {
  color: #10b981;
}

.featured-boxes-style-5 .featured-box.featured-box-tertiary .icon-featured,
.featured-boxes-style-6 .featured-box.featured-box-tertiary .icon-featured,
.featured-boxes-style-8 .featured-box.featured-box-tertiary .icon-featured {
  color: #10b981;
}

.featured-box-effect-2.featured-box-tertiary .icon-featured::after {
  box-shadow: 0 0 0 3px #10b981;
}

.featured-box-effect-3.featured-box-tertiary .icon-featured::after {
  box-shadow: 0 0 0 10px #10b981;
}
.featured-box-effect-3.featured-box-tertiary:hover .icon-featured {
  background: #10b981 !important;
}

.featured-boxes-full .featured-box-full-tertiary {
  background-color: #10b981;
  color: var(--on-tertiary, #fff);
}

.featured-box-quaternary .icon-featured {
  background-color: #780752;
  color: var(--on-quaternary, #fff);
}
.featured-box-quaternary h4, .featured-box-quaternary .h4 {
  color: #780752;
}
.featured-box-quaternary .box-content {
  border-top-color: #780752;
}
.featured-box-quaternary .box-content-border-bottom {
  border-bottom-color: #780752;
}

.featured-boxes-style-3 .featured-box.featured-box-quaternary .icon-featured {
  border-color: #780752;
  color: #780752;
}

.featured-boxes-style-4 .featured-box.featured-box-quaternary .icon-featured {
  color: #780752;
}

.featured-boxes-style-5 .featured-box.featured-box-quaternary .icon-featured,
.featured-boxes-style-6 .featured-box.featured-box-quaternary .icon-featured,
.featured-boxes-style-8 .featured-box.featured-box-quaternary .icon-featured {
  color: #780752;
}

.featured-box-effect-2.featured-box-quaternary .icon-featured::after {
  box-shadow: 0 0 0 3px #780752;
}

.featured-box-effect-3.featured-box-quaternary .icon-featured::after {
  box-shadow: 0 0 0 10px #780752;
}
.featured-box-effect-3.featured-box-quaternary:hover .icon-featured {
  background: #780752 !important;
}

.featured-boxes-full .featured-box-full-quaternary {
  background-color: #780752;
  color: var(--on-quaternary, #fff);
}

.featured-box-success .icon-featured {
  background-color: #7ece25;
  color: var(--on-success, #fff);
}
.featured-box-success h4, .featured-box-success .h4 {
  color: #7ece25;
}
.featured-box-success .box-content {
  border-top-color: #7ece25;
}
.featured-box-success .box-content-border-bottom {
  border-bottom-color: #7ece25;
}

.featured-boxes-style-3 .featured-box.featured-box-success .icon-featured {
  border-color: #7ece25;
  color: #7ece25;
}

.featured-boxes-style-4 .featured-box.featured-box-success .icon-featured {
  color: #7ece25;
}

.featured-boxes-style-5 .featured-box.featured-box-success .icon-featured,
.featured-boxes-style-6 .featured-box.featured-box-success .icon-featured,
.featured-boxes-style-8 .featured-box.featured-box-success .icon-featured {
  color: #7ece25;
}

.featured-box-effect-2.featured-box-success .icon-featured::after {
  box-shadow: 0 0 0 3px #7ece25;
}

.featured-box-effect-3.featured-box-success .icon-featured::after {
  box-shadow: 0 0 0 10px #7ece25;
}
.featured-box-effect-3.featured-box-success:hover .icon-featured {
  background: #7ece25 !important;
}

.featured-boxes-full .featured-box-full-success {
  background-color: #7ece25;
  color: var(--on-success, #fff);
}

.featured-box-info .icon-featured {
  background-color: #0ea5e9;
  color: var(--on-info, #fff);
}
.featured-box-info h4, .featured-box-info .h4 {
  color: #0ea5e9;
}
.featured-box-info .box-content {
  border-top-color: #0ea5e9;
}
.featured-box-info .box-content-border-bottom {
  border-bottom-color: #0ea5e9;
}

.featured-boxes-style-3 .featured-box.featured-box-info .icon-featured {
  border-color: #0ea5e9;
  color: #0ea5e9;
}

.featured-boxes-style-4 .featured-box.featured-box-info .icon-featured {
  color: #0ea5e9;
}

.featured-boxes-style-5 .featured-box.featured-box-info .icon-featured,
.featured-boxes-style-6 .featured-box.featured-box-info .icon-featured,
.featured-boxes-style-8 .featured-box.featured-box-info .icon-featured {
  color: #0ea5e9;
}

.featured-box-effect-2.featured-box-info .icon-featured::after {
  box-shadow: 0 0 0 3px #0ea5e9;
}

.featured-box-effect-3.featured-box-info .icon-featured::after {
  box-shadow: 0 0 0 10px #0ea5e9;
}
.featured-box-effect-3.featured-box-info:hover .icon-featured {
  background: #0ea5e9 !important;
}

.featured-boxes-full .featured-box-full-info {
  background-color: #0ea5e9;
  color: var(--on-info, #fff);
}

.featured-box-warning .icon-featured {
  background-color: #ffc107;
  color: var(--on-warning, #fff);
}
.featured-box-warning h4, .featured-box-warning .h4 {
  color: #ffc107;
}
.featured-box-warning .box-content {
  border-top-color: #ffc107;
}
.featured-box-warning .box-content-border-bottom {
  border-bottom-color: #ffc107;
}

.featured-boxes-style-3 .featured-box.featured-box-warning .icon-featured {
  border-color: #ffc107;
  color: #ffc107;
}

.featured-boxes-style-4 .featured-box.featured-box-warning .icon-featured {
  color: #ffc107;
}

.featured-boxes-style-5 .featured-box.featured-box-warning .icon-featured,
.featured-boxes-style-6 .featured-box.featured-box-warning .icon-featured,
.featured-boxes-style-8 .featured-box.featured-box-warning .icon-featured {
  color: #ffc107;
}

.featured-box-effect-2.featured-box-warning .icon-featured::after {
  box-shadow: 0 0 0 3px #ffc107;
}

.featured-box-effect-3.featured-box-warning .icon-featured::after {
  box-shadow: 0 0 0 10px #ffc107;
}
.featured-box-effect-3.featured-box-warning:hover .icon-featured {
  background: #ffc107 !important;
}

.featured-boxes-full .featured-box-full-warning {
  background-color: #ffc107;
  color: var(--on-warning, #fff);
}

.featured-box-danger .icon-featured {
  background-color: #dc3545;
  color: var(--on-danger, #fff);
}
.featured-box-danger h4, .featured-box-danger .h4 {
  color: #dc3545;
}
.featured-box-danger .box-content {
  border-top-color: #dc3545;
}
.featured-box-danger .box-content-border-bottom {
  border-bottom-color: #dc3545;
}

.featured-boxes-style-3 .featured-box.featured-box-danger .icon-featured {
  border-color: #dc3545;
  color: #dc3545;
}

.featured-boxes-style-4 .featured-box.featured-box-danger .icon-featured {
  color: #dc3545;
}

.featured-boxes-style-5 .featured-box.featured-box-danger .icon-featured,
.featured-boxes-style-6 .featured-box.featured-box-danger .icon-featured,
.featured-boxes-style-8 .featured-box.featured-box-danger .icon-featured {
  color: #dc3545;
}

.featured-box-effect-2.featured-box-danger .icon-featured::after {
  box-shadow: 0 0 0 3px #dc3545;
}

.featured-box-effect-3.featured-box-danger .icon-featured::after {
  box-shadow: 0 0 0 10px #dc3545;
}
.featured-box-effect-3.featured-box-danger:hover .icon-featured {
  background: #dc3545 !important;
}

.featured-boxes-full .featured-box-full-danger {
  background-color: #dc3545;
  color: var(--on-danger, #fff);
}

.featured-box-light .icon-featured {
  background-color: #f8f9fa;
  color: var(--on-light, #fff);
}
.featured-box-light h4, .featured-box-light .h4 {
  color: #f8f9fa;
}
.featured-box-light .box-content {
  border-top-color: #f8f9fa;
}
.featured-box-light .box-content-border-bottom {
  border-bottom-color: #f8f9fa;
}

.featured-boxes-style-3 .featured-box.featured-box-light .icon-featured {
  border-color: #f8f9fa;
  color: #f8f9fa;
}

.featured-boxes-style-4 .featured-box.featured-box-light .icon-featured {
  color: #f8f9fa;
}

.featured-boxes-style-5 .featured-box.featured-box-light .icon-featured,
.featured-boxes-style-6 .featured-box.featured-box-light .icon-featured,
.featured-boxes-style-8 .featured-box.featured-box-light .icon-featured {
  color: #f8f9fa;
}

.featured-box-effect-2.featured-box-light .icon-featured::after {
  box-shadow: 0 0 0 3px #f8f9fa;
}

.featured-box-effect-3.featured-box-light .icon-featured::after {
  box-shadow: 0 0 0 10px #f8f9fa;
}
.featured-box-effect-3.featured-box-light:hover .icon-featured {
  background: #f8f9fa !important;
}

.featured-boxes-full .featured-box-full-light {
  background-color: #f8f9fa;
  color: var(--on-light, #fff);
}

.featured-box-dark .icon-featured {
  background-color: #191a1c;
  color: var(--on-dark, #fff);
}
.featured-box-dark h4, .featured-box-dark .h4 {
  color: #191a1c;
}
.featured-box-dark .box-content {
  border-top-color: #191a1c;
}
.featured-box-dark .box-content-border-bottom {
  border-bottom-color: #191a1c;
}

.featured-boxes-style-3 .featured-box.featured-box-dark .icon-featured {
  border-color: #191a1c;
  color: #191a1c;
}

.featured-boxes-style-4 .featured-box.featured-box-dark .icon-featured {
  color: #191a1c;
}

.featured-boxes-style-5 .featured-box.featured-box-dark .icon-featured,
.featured-boxes-style-6 .featured-box.featured-box-dark .icon-featured,
.featured-boxes-style-8 .featured-box.featured-box-dark .icon-featured {
  color: #191a1c;
}

.featured-box-effect-2.featured-box-dark .icon-featured::after {
  box-shadow: 0 0 0 3px #191a1c;
}

.featured-box-effect-3.featured-box-dark .icon-featured::after {
  box-shadow: 0 0 0 10px #191a1c;
}
.featured-box-effect-3.featured-box-dark:hover .icon-featured {
  background: #191a1c !important;
}

.featured-boxes-full .featured-box-full-dark {
  background-color: #191a1c;
  color: var(--on-dark, #fff);
}

.feature-box {
  display: flex;
}
.feature-box .feature-box-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 0 auto;
  background: var(--primary);
  border-radius: 100%;
  color: var(--on-primary);
  font-size: 1rem;
  position: relative;
  top: 7px;
  text-align: center;
  padding: 0.8em;
  width: 2.7em;
  height: 2.7em;
}
.feature-box .feature-box-info {
  flex: 1 1 100%;
  padding-left: 15px;
}
.feature-box.align-items-center .feature-box-icon {
  top: 0;
}
.feature-box .feature-box-icon-lg {
  width: 3.7em !important;
  height: 3.7em !important;
}
.feature-box .feature-box-icon-xl {
  width: 4.5em !important;
  height: 4.5em !important;
}

.feature-box.feature-box-style-2 h4, .feature-box.feature-box-style-2 .h4 {
  color: var(--dark);
}
.feature-box.feature-box-style-2 .feature-box-icon {
  background: transparent;
  top: -3px;
  font-size: 1.7em;
  color: var(--primary);
}
.feature-box.feature-box-style-2.align-items-center .feature-box-icon {
  top: 0;
}

.feature-box.feature-box-style-3 h4, .feature-box.feature-box-style-3 .h4 {
  color: var(--dark);
}
.feature-box.feature-box-style-3 .feature-box-icon {
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
}

.feature-box.feature-box-style-4 {
  flex-wrap: wrap;
}
.feature-box.feature-box-style-4 h4, .feature-box.feature-box-style-4 .h4 {
  color: var(--dark);
}
.feature-box.feature-box-style-4 .feature-box-icon {
  flex-basis: 100%;
  justify-content: flex-start;
  background: transparent;
  padding: 0 0 1.2rem 0;
  font-size: 2.35em;
  color: var(--primary);
  width: auto;
  height: auto;
}
.feature-box.feature-box-style-4 .feature-box-info {
  clear: both;
  padding-left: 0;
}

.feature-box.feature-box-style-5 h4, .feature-box.feature-box-style-5 .h4 {
  color: var(--dark);
}
.feature-box.feature-box-style-5 .feature-box-icon {
  background: transparent;
  top: 0;
  padding: 1em 1.4em;
  min-width: 5em;
  font-size: 2.75em;
  color: var(--primary);
}

.feature-box.feature-box-style-6 h4, .feature-box.feature-box-style-6 .h4 {
  color: var(--dark);
}
.feature-box.feature-box-style-6 .feature-box-icon {
  border: 1px solid #cecece;
  background: transparent;
  color: #a9a9a9;
  position: relative;
}
.feature-box.feature-box-style-6 .feature-box-icon::after {
  border: 3px solid var(--gray-100);
  border-radius: 50%;
  box-sizing: content-box;
  content: "";
  display: block;
  height: 100%;
  left: -4px;
  padding: 1px;
  position: absolute;
  top: -4px;
  width: 100%;
}

.feature-box-primary .feature-box-icon {
  background-color: #eaff48;
  color: var(--on-primary, #fff);
}

.feature-box-primary.feature-box-style-2 .feature-box-icon {
  background: transparent;
  color: #eaff48;
}

.feature-box-primary.feature-box-style-3 .feature-box-icon {
  border-color: #eaff48;
  color: #eaff48;
  background: transparent;
}

.feature-box-primary.feature-box-style-4 .feature-box-icon {
  color: #eaff48;
}

.feature-box-primary.feature-box-style-5 .feature-box-icon {
  color: #eaff48;
}

.feature-box-primary.feature-box-style-6 .feature-box-icon {
  color: #eaff48;
}

.feature-box-secondary .feature-box-icon {
  background-color: #c67416;
  color: var(--on-secondary, #fff);
}

.feature-box-secondary.feature-box-style-2 .feature-box-icon {
  background: transparent;
  color: #c67416;
}

.feature-box-secondary.feature-box-style-3 .feature-box-icon {
  border-color: #c67416;
  color: #c67416;
  background: transparent;
}

.feature-box-secondary.feature-box-style-4 .feature-box-icon {
  color: #c67416;
}

.feature-box-secondary.feature-box-style-5 .feature-box-icon {
  color: #c67416;
}

.feature-box-secondary.feature-box-style-6 .feature-box-icon {
  color: #c67416;
}

.feature-box-tertiary .feature-box-icon {
  background-color: #10b981;
  color: var(--on-tertiary, #fff);
}

.feature-box-tertiary.feature-box-style-2 .feature-box-icon {
  background: transparent;
  color: #10b981;
}

.feature-box-tertiary.feature-box-style-3 .feature-box-icon {
  border-color: #10b981;
  color: #10b981;
  background: transparent;
}

.feature-box-tertiary.feature-box-style-4 .feature-box-icon {
  color: #10b981;
}

.feature-box-tertiary.feature-box-style-5 .feature-box-icon {
  color: #10b981;
}

.feature-box-tertiary.feature-box-style-6 .feature-box-icon {
  color: #10b981;
}

.feature-box-quaternary .feature-box-icon {
  background-color: #780752;
  color: var(--on-quaternary, #fff);
}

.feature-box-quaternary.feature-box-style-2 .feature-box-icon {
  background: transparent;
  color: #780752;
}

.feature-box-quaternary.feature-box-style-3 .feature-box-icon {
  border-color: #780752;
  color: #780752;
  background: transparent;
}

.feature-box-quaternary.feature-box-style-4 .feature-box-icon {
  color: #780752;
}

.feature-box-quaternary.feature-box-style-5 .feature-box-icon {
  color: #780752;
}

.feature-box-quaternary.feature-box-style-6 .feature-box-icon {
  color: #780752;
}

.feature-box-success .feature-box-icon {
  background-color: #7ece25;
  color: var(--on-success, #fff);
}

.feature-box-success.feature-box-style-2 .feature-box-icon {
  background: transparent;
  color: #7ece25;
}

.feature-box-success.feature-box-style-3 .feature-box-icon {
  border-color: #7ece25;
  color: #7ece25;
  background: transparent;
}

.feature-box-success.feature-box-style-4 .feature-box-icon {
  color: #7ece25;
}

.feature-box-success.feature-box-style-5 .feature-box-icon {
  color: #7ece25;
}

.feature-box-success.feature-box-style-6 .feature-box-icon {
  color: #7ece25;
}

.feature-box-info .feature-box-icon {
  background-color: #0ea5e9;
  color: var(--on-info, #fff);
}

.feature-box-info.feature-box-style-2 .feature-box-icon {
  background: transparent;
  color: #0ea5e9;
}

.feature-box-info.feature-box-style-3 .feature-box-icon {
  border-color: #0ea5e9;
  color: #0ea5e9;
  background: transparent;
}

.feature-box-info.feature-box-style-4 .feature-box-icon {
  color: #0ea5e9;
}

.feature-box-info.feature-box-style-5 .feature-box-icon {
  color: #0ea5e9;
}

.feature-box-info.feature-box-style-6 .feature-box-icon {
  color: #0ea5e9;
}

.feature-box-warning .feature-box-icon {
  background-color: #ffc107;
  color: var(--on-warning, #fff);
}

.feature-box-warning.feature-box-style-2 .feature-box-icon {
  background: transparent;
  color: #ffc107;
}

.feature-box-warning.feature-box-style-3 .feature-box-icon {
  border-color: #ffc107;
  color: #ffc107;
  background: transparent;
}

.feature-box-warning.feature-box-style-4 .feature-box-icon {
  color: #ffc107;
}

.feature-box-warning.feature-box-style-5 .feature-box-icon {
  color: #ffc107;
}

.feature-box-warning.feature-box-style-6 .feature-box-icon {
  color: #ffc107;
}

.feature-box-danger .feature-box-icon {
  background-color: #dc3545;
  color: var(--on-danger, #fff);
}

.feature-box-danger.feature-box-style-2 .feature-box-icon {
  background: transparent;
  color: #dc3545;
}

.feature-box-danger.feature-box-style-3 .feature-box-icon {
  border-color: #dc3545;
  color: #dc3545;
  background: transparent;
}

.feature-box-danger.feature-box-style-4 .feature-box-icon {
  color: #dc3545;
}

.feature-box-danger.feature-box-style-5 .feature-box-icon {
  color: #dc3545;
}

.feature-box-danger.feature-box-style-6 .feature-box-icon {
  color: #dc3545;
}

.feature-box-light .feature-box-icon {
  background-color: #f8f9fa;
  color: var(--on-light, #fff);
}

.feature-box-light.feature-box-style-2 .feature-box-icon {
  background: transparent;
  color: #f8f9fa;
}

.feature-box-light.feature-box-style-3 .feature-box-icon {
  border-color: #f8f9fa;
  color: #f8f9fa;
  background: transparent;
}

.feature-box-light.feature-box-style-4 .feature-box-icon {
  color: #f8f9fa;
}

.feature-box-light.feature-box-style-5 .feature-box-icon {
  color: #f8f9fa;
}

.feature-box-light.feature-box-style-6 .feature-box-icon {
  color: #f8f9fa;
}

.feature-box-dark .feature-box-icon {
  background-color: #191a1c;
  color: var(--on-dark, #fff);
}

.feature-box-dark.feature-box-style-2 .feature-box-icon {
  background: transparent;
  color: #191a1c;
}

.feature-box-dark.feature-box-style-3 .feature-box-icon {
  border-color: #191a1c;
  color: #191a1c;
  background: transparent;
}

.feature-box-dark.feature-box-style-4 .feature-box-icon {
  color: #191a1c;
}

.feature-box-dark.feature-box-style-5 .feature-box-icon {
  color: #191a1c;
}

.feature-box-dark.feature-box-style-6 .feature-box-icon {
  color: #191a1c;
}

.feature-box.reverse-allres {
  text-align: right;
  flex-direction: row-reverse;
}
.feature-box.reverse-allres .feature-box-info {
  padding-right: 15px;
  padding-left: 0;
}
.feature-box.reverse-allres.feature-box-style-4 .feature-box-icon {
  justify-content: flex-end;
}
.feature-box.reverse-allres.feature-box-style-4 .feature-box-info {
  padding-right: 0;
}

@media (min-width: 992px) {
  .feature-box.reverse {
    text-align: right;
    flex-direction: row-reverse;
  }
  .feature-box.reverse .feature-box-info {
    padding-right: 15px;
    padding-left: 0;
  }
  .feature-box.reverse.feature-box-style-4 .feature-box-icon {
    justify-content: flex-end;
  }
  .feature-box.reverse.feature-box-style-4 .feature-box-info {
    padding-right: 0;
  }
}
.featured-box-effect-1 .icon-featured::after {
  top: -7px;
  left: -7px;
  padding: 7px;
  box-shadow: 0 0 0 3px #fff;
  transition: transform 0.2s, opacity 0.2s;
  transform: scale(1);
  opacity: 0;
}
.featured-box-effect-1:hover .icon-featured::after {
  transform: scale(0.8);
  opacity: 1;
}

.featured-box-effect-2 .icon-featured::after {
  top: -7px;
  left: -7px;
  padding: 7px;
  box-shadow: 0 0 0 3px #fff;
  transition: transform 0.2s, opacity 0.2s;
  transform: scale(0.8);
  opacity: 0;
}
.featured-box-effect-2:hover .icon-featured::after {
  transform: scale(0.95);
  opacity: 1;
}

.featured-box-effect-3 .icon-featured::after {
  top: 0;
  left: 0;
  box-shadow: 0 0 0 10px #fff;
  transition: transform 0.2s, opacity 0.2s;
  transform: scale(0.9);
  opacity: 0;
}
.featured-box-effect-3:hover .icon-featured {
  color: var(--white) !important;
}
.featured-box-effect-3:hover .icon-featured::after {
  transform: scale(1);
  opacity: 0.8;
}

.featured-box-effect-4 .icon-featured {
  transition: transform 0.2s;
  transform: scale(1);
}
.featured-box-effect-4:hover .icon-featured {
  transform: scale(1.15);
}

.featured-box-effect-5 .icon-featured {
  overflow: hidden;
  transition: all 0.3s;
}
.featured-box-effect-5:hover .icon-featured {
  animation: toRightFromLeft 0.3s forwards;
}

@keyframes toRightFromLeft {
  49% {
    transform: translate(100%);
  }
  50% {
    opacity: 0;
    transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
.featured-box-effect-6 .icon-featured::after {
  transition: all 0.2s, transform 0.2s;
}
.featured-box-effect-6:hover .box-content .icon-featured::after {
  transform: scale(1.1);
}

.featured-box-effect-7 .icon-featured::after {
  opacity: 0;
  box-shadow: 3px 3px #d5d5d5;
  transform: rotate(-90deg);
  transition: opacity 0.2s, transform 0.2s;
  left: 0;
  top: -1px;
}
.featured-box-effect-7 .icon-featured::before {
  transform: scale(0.8);
  opacity: 0.7;
  transition: transform 0.2s, opacity 0.2s;
}
.featured-box-effect-7:hover .icon-featured::after {
  opacity: 1;
  transform: rotate(0deg);
}
.featured-box-effect-7:hover .icon-featured::before {
  transform: scale(1);
  opacity: 1;
}

.scene {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.scene--xs {
  min-height: 200px;
}

.scene--sm {
  min-height: 60vh;
}

.scene--md {
  min-height: 80vh;
}

.scene--lg {
  min-height: 100vh;
}

.scene--xl {
  min-height: 120vh;
}

.scene--auto {
  min-height: auto;
}

.scene-hero {
  min-height: 100vh;
}

.scene-hero-sm {
  min-height: 60vh;
}

.scene-hero-md {
  min-height: 80vh;
}

.scene__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.scene__bg img,
.scene__bg video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.scene__bg[data-parallax] {
  top: -25%;
  bottom: -25%;
}

.scene__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: var(--overlay, rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.scene > .auto-container,
.scene > .container,
.scene > .container-fluid,
.scene > .container-sm,
.scene > .container-md,
.scene > .container-lg,
.scene > .container-xl,
.scene > .container-xxl {
  position: relative;
  z-index: 2;
}

.scene--has-iconbar {
  overflow: visible;
  margin-bottom: var(--iconbar-height, 90px);
}

.scene__iconbar {
  position: absolute;
  bottom: calc(-1 * var(--iconbar-height, 90px));
  left: 0;
  right: 0;
  z-index: 3;
  height: var(--iconbar-height, 90px);
}

.scene--has-overflow {
  overflow: visible;
}

.scene__overflow-media {
  position: relative;
}
.scene__overflow-media[data-overflow~=top] {
  margin-top: var(--overflow-amount, -80px);
}
.scene__overflow-media[data-overflow~=bottom] {
  margin-bottom: var(--overflow-amount, -80px);
}
.scene__overflow-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

[data-bg-gradient=primary-dark] {
  background: linear-gradient(135deg, #eaff48 0%, #191a1c 100%);
}

[data-bg-gradient=warm] {
  background: linear-gradient(135deg, #ce19f8 0%, #300f7a 100%);
}

[data-bg-gradient=cool] {
  background: linear-gradient(160deg, #0575e6 0%, #021b79 100%);
}

[data-bg-gradient=soft] {
  background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

[data-bg-gradient=dark] {
  background: linear-gradient(180deg, #2a2b2e 0%, #191a1c 100%);
}

@media only screen and (max-width: 991px) {
  .scene-hero {
    min-height: 100svh;
  }
  .scene-hero-sm {
    min-height: 60svh;
  }
  .scene-hero-md {
    min-height: 80svh;
  }
  .scene--lg {
    min-height: 100svh;
  }
}
.scene-panels {
  display: flex;
  width: 100%;
  overflow: hidden;
  height: var(--panels-height, 70vh);
}

.scene-panels[data-panels-layout="2col"] {
  --panels-cols: 2;
}

.scene-panels[data-panels-layout="3col"] {
  --panels-cols: 3;
}

.scene-panels[data-panels-layout="4col"] {
  --panels-cols: 4;
}

.scene-panels[data-panels-layout="5col"] {
  --panels-cols: 5;
}

.scene-panels[data-panels-layout="2x2"] {
  flex-wrap: wrap;
  height: var(--panels-height, 80vh);
}
.scene-panels[data-panels-layout="2x2"] .scene-panel {
  width: 50%;
  height: 50%;
}

.scene-panels[data-panels-layout=featured] .scene-panel:first-child {
  flex: 2;
}
.scene-panels[data-panels-layout=featured] .scene-panel:not(:first-child) {
  flex: 1;
}

.scene-panels[data-panels-layout=mosaic] {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: var(--panels-height, 80vh);
}
.scene-panels[data-panels-layout=mosaic] .scene-panel:first-child {
  grid-row: 1/3;
}

.scene-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.scene-panel img {
  position: absolute;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scene-panel[data-panel=expand]:hover {
  flex: 3;
}

.scene-panel[data-panel=panorama] img {
  top: 0;
}
.scene-panel[data-panel=panorama]:hover {
  flex: 3;
}

.scene-panel[data-panel=zoom] img {
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.scene-panel[data-panel=zoom]:hover img {
  transform: scale(1.08);
}
.scene-panel[data-panel=zoom] .scene-panel__overlay {
  opacity: 1;
}
.scene-panel[data-panel=zoom]:hover .scene-panel__info {
  opacity: 1;
  transform: translateY(0);
}

.scene-panel[data-panel=reveal] img {
  width: 100%;
}
.scene-panel[data-panel=reveal] .scene-panel__overlay {
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scene-panel[data-panel=reveal]:hover .scene-panel__overlay {
  transform: translateY(0);
}

.scene-panel[data-panel=flip] {
  perspective: 1000px;
}
.scene-panel[data-panel=flip] .scene-panel__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.scene-panel[data-panel=flip]:hover .scene-panel__inner {
  transform: rotateY(180deg);
}
.scene-panel[data-panel=flip] .scene-panel__front,
.scene-panel[data-panel=flip] .scene-panel__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
}
.scene-panel[data-panel=flip] .scene-panel__front img,
.scene-panel[data-panel=flip] .scene-panel__back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scene-panel[data-panel=flip] .scene-panel__back {
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--white);
}

.scene-panel__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  z-index: 3;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.scene-panel__title {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.scene-panel__type {
  display: block;
  font-size: 0.8rem;
  color: var(--primary);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.scene-panel__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 991px) {
  .scene-panels {
    height: var(--panels-height-mobile, 50vh);
  }
  .scene-panels[data-panels-layout="2x2"] {
    height: 60vw;
  }
  .scene-panels[data-panels-layout=mosaic] {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .scene-panels[data-panels-layout=mosaic] .scene-panel:first-child {
    grid-column: 1/3;
    grid-row: auto;
  }
}
@media only screen and (max-width: 599px) {
  .scene-panels[data-panels-layout="2x2"] {
    grid-template-columns: 1fr 1fr;
    height: 80vw;
  }
}
.scene__divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
  pointer-events: none;
  height: var(--divider-height, 80px);
}
.scene__divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.scene__divider--bottom {
  bottom: -1px;
}

.scene__divider--top {
  top: -1px;
  transform: scaleY(-1);
}

.scene__divider--top.scene__divider--flip-x {
  transform: scale(-1, -1);
}

.scene__divider--flip-x {
  transform: scaleX(-1);
}

.scene__divider--flip-y {
  transform: scaleY(-1);
}

.scene__divider--flip-xy {
  transform: scale(-1, -1);
}

.scene__divider--xs {
  --divider-height: 40px;
}

.scene__divider--sm {
  --divider-height: 60px;
}

.scene__divider--md {
  --divider-height: 80px;
}

.scene__divider--lg {
  --divider-height: 120px;
}

.scene__divider--xl {
  --divider-height: 180px;
}

.scene__divider--xxl {
  --divider-height: 240px;
}

.scene__divider--flat {
  --divider-amplitude: 15;
}

.scene__divider--gentle {
  --divider-amplitude: 30;
}

.scene__divider--medium {
  --divider-amplitude: 50;
}

.scene__divider--deep {
  --divider-amplitude: 80;
}

.scene__divider--dramatic {
  --divider-amplitude: 120;
}

@media (max-width: 991px) {
  .scene__divider--lg {
    --divider-height: 80px;
  }
  .scene__divider--xl {
    --divider-height: 100px;
  }
  .scene__divider--xxl {
    --divider-height: 140px;
  }
  .scene__divider--dramatic {
    --divider-amplitude: 60;
  }
  .scene__divider--deep {
    --divider-amplitude: 50;
  }
}
@media (max-width: 599px) {
  .scene__divider--xl {
    --divider-height: 60px;
  }
  .scene__divider--xxl {
    --divider-height: 80px;
  }
}
.scene[class*=cta-bubble] {
  margin-bottom: var(--cta-zapfen-height, 2rem);
  overflow: visible;
  position: relative;
}

.cta-shadow {
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
}

.cta__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 0;
}

.cta__text {
  flex: 1;
  min-width: 0;
}

.cta__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
}

.cta__desc {
  margin: 0;
  font-size: var(--body-font-size-lg, 1.125rem);
  opacity: 0.85;
}

.cta__actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 767px) {
  .cta__body {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 0 2.5rem;
  }
  .cta__actions {
    width: 100%;
  }
  .cta__actions .btn {
    flex: 1;
    text-align: center;
  }
}
.cta-bubble-one {
  min-height: var(--cta-one-min-height, 160px);
}
.cta-bubble-two {
  min-height: var(--cta-two-min-height, 140px);
}
.cta-bubble-two::after {
  content: "";
  position: absolute;
  bottom: calc(-1 * var(--cta-zapfen-height, 1.75rem));
  left: var(--cta-zapfen-left, 3rem);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: var(--cta-zapfen-height, 1.75rem) var(--cta-zapfen-width, 1.25rem) 0 0;
  border-color: transparent;
}
.cta-bubble-two.cta--flip::after {
  left: auto;
  right: var(--cta-zapfen-left, 3rem);
  border-width: var(--cta-zapfen-height, 1.75rem) 0 0 var(--cta-zapfen-width, 1.25rem);
}

.cta-bubble-two.bg-primary::after {
  border-top-color: #eaff48;
}

.cta-bubble-two.cta--flip.bg-primary::after {
  border-top-color: transparent;
  border-left-color: #eaff48;
}

.cta-bubble-two.bg-secondary::after {
  border-top-color: #c67416;
}

.cta-bubble-two.cta--flip.bg-secondary::after {
  border-top-color: transparent;
  border-left-color: #c67416;
}

.cta-bubble-two.bg-tertiary::after {
  border-top-color: #10b981;
}

.cta-bubble-two.cta--flip.bg-tertiary::after {
  border-top-color: transparent;
  border-left-color: #10b981;
}

.cta-bubble-two.bg-quaternary::after {
  border-top-color: #780752;
}

.cta-bubble-two.cta--flip.bg-quaternary::after {
  border-top-color: transparent;
  border-left-color: #780752;
}

.cta-bubble-two.bg-success::after {
  border-top-color: #7ece25;
}

.cta-bubble-two.cta--flip.bg-success::after {
  border-top-color: transparent;
  border-left-color: #7ece25;
}

.cta-bubble-two.bg-info::after {
  border-top-color: #0ea5e9;
}

.cta-bubble-two.cta--flip.bg-info::after {
  border-top-color: transparent;
  border-left-color: #0ea5e9;
}

.cta-bubble-two.bg-warning::after {
  border-top-color: #ffc107;
}

.cta-bubble-two.cta--flip.bg-warning::after {
  border-top-color: transparent;
  border-left-color: #ffc107;
}

.cta-bubble-two.bg-danger::after {
  border-top-color: #dc3545;
}

.cta-bubble-two.cta--flip.bg-danger::after {
  border-top-color: transparent;
  border-left-color: #dc3545;
}

.cta-bubble-two.bg-light::after {
  border-top-color: #f8f9fa;
}

.cta-bubble-two.cta--flip.bg-light::after {
  border-top-color: transparent;
  border-left-color: #f8f9fa;
}

.cta-bubble-two.bg-dark::after {
  border-top-color: #191a1c;
}

.cta-bubble-two.cta--flip.bg-dark::after {
  border-top-color: transparent;
  border-left-color: #191a1c;
}

:root {
  --cta-zapfen-height: 1.75rem;
  --cta-zapfen-width: 1.25rem;
  --cta-zapfen-left: 3rem;
  --cta-one-min-height: 160px;
  --cta-two-min-height: 140px;
}

/*# sourceMappingURL=style.css.map */
