@charset "UTF-8";@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap");

/*
// Unit conversion
.element {
  padding: rem(24px);        // 1.5rem
  margin: px(2rem);          // 32px
}

// Color manipulation
.card {
  background: tint($primary-blue, 90%);
  border-color: shade($primary-blue, 20%);
  color: contrast-color($primary-blue);
}

// Responsive font size
.heading {
  font-size: fluid-font-size(1.5rem, 3rem);
}

// Spacing
.container {
  padding: spacing(2);           // 2rem
  margin-bottom: spacing-scale(5); // 1.5rem
}

// Shadow
.card {
  box-shadow: shadow(0, 4px, 8px, 0, black, 0.1);
}

// Z-index
.modal {
  z-index: z-index('modal');
}

// Grid width
.column {
  width: grid-width(6, 12, 1rem);
}

// Modular scale typography
h1 { font-size: modular-scale(4); }
h2 { font-size: modular-scale(3); }
h3 { font-size: modular-scale(2); }
*/
/* 
// Mobile-first approach (recommended)
.element {
  font-size: 14px;

  @include screen-md {
    font-size: 16px;
  }

  @include screen-lg {
    font-size: 18px;
  }
}

// Desktop-first approach
.element {
  font-size: 18px;

  @include screen-max-lg {
    font-size: 16px;
  }

  @include screen-max-md {
    font-size: 14px;
  }
}

// Range queries
.sidebar {
  @include screen-md-only {
    width: 200px;
  }
}

// Device-specific
.mobile-menu {
  @include mobile {
    display: block;
  }

  @include desktop {
    display: none;
  }
}

// Touch-aware
.button {
  padding: 0.5rem 1rem;

  @include touch {
    padding: 0.75rem 1.25rem; // Larger touch targets
  }
}

// Reduced motion
.animated {
  @include motion-safe {
    animation: slide-in 0.3s ease;
  }

  @include motion-reduce {
    animation: none;
  }
}
*/
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: #0f172a;
}
/* Headings - use the secondary/display font for stronger visual hierarchy
   Increase the base sizes to make headings more prominent across the site.
   Mobile-first sizes are slightly larger than before; they scale up on md/lg.
*/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; /* use the 'display' font for headings */
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #0f172a;
}
/* Per-heading vertical rhythm: larger headings get more breathing room */
h1, .h1 {
  margin-bottom: 3rem;
}
h2, .h2 {
  margin-bottom: 2rem;
}
h3, .h3 {
  margin-bottom: 1.5rem;
}
h4, .h4 {
  margin-bottom: 1rem;
}
h5, .h5 {
  margin-bottom: 0.5rem;
}
h6, .h6 {
  margin-bottom: 0.5rem;
}
h1, .h1 {
  /* stronger hero/title presence */
  font-size: 3rem; /* 48px */
  font-weight: 600;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 3.75rem; /* 60px */
  }
}
@media (min-width: 992px) {
  h1, .h1 {
    font-size: 3.75rem;
  }
}
h2, .h2 {
  font-size: 2.25rem; /* 36px */
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 3rem; /* 48px */
  }
}
h3, .h3 {
  font-size: 1.875rem; /* 30px */
  font-weight: 500;
}
@media (min-width: 768px) {
  h3, .h3 {
    font-size: 2.25rem; /* 36px */
  }
}
h4, .h4 {
  font-size: 1.5rem; /* 24px */
  font-weight: 500;
}
@media (min-width: 768px) {
  h4, .h4 {
    font-size: 1.875rem; /* 30px */
  }
}
h5, .h5 {
  font-size: 1.25rem; /* 20px */
  font-weight: 500;
}
h6, .h6 {
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
p {
  margin-bottom: 1rem;
  line-height: 1.625;
}
p:last-child {
  margin-bottom: 0;
}
.lead {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.625;
  color: #334155;
  margin-bottom: 1.5rem; /* increase spacing after lead paragraphs for breathing room */
}
@media (min-width: 768px) {
  .lead {
    font-size: 1.25rem;
    margin-bottom: 3rem;
  }
}
a {
  color: #5b73e8;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
a:hover {
  color: rgb(72.8, 92, 185.6);
  text-decoration: underline;
}
a:focus-visible {
  outline: 2px solid #5b73e8;
  outline-offset: 2px;
  border-radius: 2px;
}
ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
ul:last-child, ol:last-child {
  margin-bottom: 0;
}
ul {
  list-style-type: disc;
}
ul ul {
  list-style-type: circle;
}
ul ul ul {
  list-style-type: square;
}
ol {
  list-style-type: decimal;
}
ol ol {
  list-style-type: lower-alpha;
}
ol ol ol {
  list-style-type: lower-roman;
}
li {
  margin-bottom: 0.5rem;
  line-height: 1.625;
}
li:last-child {
  margin-bottom: 0;
}
.list-unstyled {
  list-style: none;
  padding-left: 0;
}
.list-unstyled li {
  margin-bottom: 0;
}
.list-inline {
  list-style: none;
  padding-left: 0;
}
.list-inline li {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 0;
}
.list-inline li:last-child {
  margin-right: 0;
}
strong, b {
  font-weight: 600;
}
em, i {
  font-style: italic;
}
small, .small {
  font-size: 0.875rem;
}
mark, .mark {
  background-color: rgba(255, 193, 7, 0.2);
  color: #0f172a;
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
}
del {
  text-decoration: line-through;
  opacity: 0.6;
}
ins {
  text-decoration: underline;
  text-decoration-style: dotted;
}
sub, sup {
  font-size: 0.75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
code, kbd, samp, pre {
  font-family: "Menlo", "Monaco", "Courier New", monospace;
  font-size: 0.875rem;
}
code {
  background-color: #f3f4f6;
  color: #a855f7;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-weight: 500;
}
kbd {
  background-color: #1f2937;
  color: #ffffff;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  border: 1px solid #4b5563;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  font-size: 0.75rem;
  font-weight: 600;
}
pre {
  background-color: #111827;
  color: #f3f4f6;
  padding: 1.5rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin-bottom: 1rem;
}
pre code {
  background: none;
  color: inherit;
  padding: 0;
  font-size: inherit;
}
blockquote {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 4px solid #5b73e8;
  font-size: 1.125rem;
  font-style: italic;
  color: #334155;
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-style: normal;
  color: #64748b;
}
blockquote footer::before,
blockquote cite::before {
  content: "— ";
}
hr {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid #e2e8f0;
}
abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 1px dotted currentColor;
}
address {
  font-style: normal;
  line-height: 1.625;
  margin-bottom: 1rem;
}
.text-xs {
  font-size: 0.75rem;
}
.text-sm {
  font-size: 0.875rem;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.text-primary {
  color: #0f172a;
}
.text-secondary {
  color: #334155;
}
.text-muted {
  color: #64748b;
}
.text-white {
  color: #ffffff;
}
.text-brand {
  color: #5b73e8;
}
.text-success {
  color: #06d6a0;
}
.text-warning {
  color: #ffc107;
}
.text-error {
  color: #dc3545;
}
.text-info {
  color: #7c87ff;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}
.italic {
  font-style: italic;
}
.not-italic {
  font-style: normal;
}
.underline {
  text-decoration: underline;
}
.line-through {
  text-decoration: line-through;
}
.no-underline {
  text-decoration: none;
}
.leading-none {
  line-height: 1;
}
.leading-tight {
  line-height: 1.25;
}
.leading-snug {
  line-height: 1.375;
}
.leading-normal {
  line-height: 1.5;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-loose {
  line-height: 2;
}
.tracking-tight {
  letter-spacing: -0.01em;
}
.tracking-normal {
  letter-spacing: -0.005em;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gradient-text {
  background: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 992px) {
  body {
    font-size: 1.125rem;
  }
}
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.container-sm {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .container-sm {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.container-md {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .container-md {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.container-lg {
  width: 100%;
  max-width: 992px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .container-lg {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.container-xl {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .container-xl {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.section {
  /* Increase top padding so sections aren't visually squished against headers/nav */
  padding-top: 4rem;
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .section {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
}
.section-sm {
  padding: 2rem 0;
}
@media (min-width: 992px) {
  .section-sm {
    padding: 3rem 0;
  }
}
.section-lg {
  padding: 4rem 0;
}
@media (min-width: 992px) {
  .section-lg {
    padding: 6rem 0;
  }
}
.d-none {
  display: none;
}
.d-inline {
  display: inline;
}
.d-inline-block {
  display: inline-block;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
}
.d-inline-flex {
  display: inline-flex;
}
.d-grid {
  display: grid;
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none;
  }
  .d-sm-inline {
    display: inline;
  }
  .d-sm-inline-block {
    display: inline-block;
  }
  .d-sm-block {
    display: block;
  }
  .d-sm-flex {
    display: flex;
  }
  .d-sm-grid {
    display: grid;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none;
  }
  .d-md-inline {
    display: inline;
  }
  .d-md-inline-block {
    display: inline-block;
  }
  .d-md-block {
    display: block;
  }
  .d-md-flex {
    display: flex;
  }
  .d-md-grid {
    display: grid;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none;
  }
  .d-lg-inline {
    display: inline;
  }
  .d-lg-inline-block {
    display: inline-block;
  }
  .d-lg-block {
    display: block;
  }
  .d-lg-flex {
    display: flex;
  }
  .d-lg-grid {
    display: grid;
  }
}
.flex-row {
  flex-direction: row;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex-column {
  flex-direction: column;
}
.flex-column-reverse {
  flex-direction: column-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-evenly {
  justify-content: space-evenly;
}
.align-start {
  align-items: flex-start;
}
.align-end {
  align-items: flex-end;
}
.align-center {
  align-items: center;
}
.align-baseline {
  align-items: baseline;
}
.align-stretch {
  align-items: stretch;
}
.align-content-start {
  align-content: flex-start;
}
.align-content-end {
  align-content: flex-end;
}
.align-content-center {
  align-content: center;
}
.align-content-between {
  align-content: space-between;
}
.align-content-around {
  align-content: space-around;
}
.align-content-stretch {
  align-content: stretch;
}
.align-self-auto {
  align-self: auto;
}
.align-self-start {
  align-self: flex-start;
}
.align-self-end {
  align-self: flex-end;
}
.align-self-center {
  align-self: center;
}
.align-self-baseline {
  align-self: baseline;
}
.align-self-stretch {
  align-self: stretch;
}
.flex-grow-0 {
  flex-grow: 0;
}
.flex-grow-1 {
  flex-grow: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-shrink-1 {
  flex-shrink: 1;
}
.gap-0 {
  gap: 0;
}
.gap-xs {
  gap: 0.25rem;
}
.gap-sm {
  gap: 0.5rem;
}
.gap-md {
  gap: 1rem;
}
.gap-lg {
  gap: 1.5rem;
}
.gap-xl {
  gap: 2rem;
}
.gap-2xl {
  gap: 3rem;
}
.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .grid-cols-md-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-md-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-md-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-md-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-md-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .grid-cols-lg-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-lg-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-lg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-lg-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-lg-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.col-span-1 {
  grid-column: span 1/span 1;
}
.col-span-2 {
  grid-column: span 2/span 2;
}
.col-span-3 {
  grid-column: span 3/span 3;
}
.col-span-4 {
  grid-column: span 4/span 4;
}
.col-span-6 {
  grid-column: span 6/span 6;
}
.col-span-12 {
  grid-column: span 12/span 12;
}
.col-span-full {
  grid-column: 1/-1;
}
.position-static {
  position: static;
}
.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
.position-fixed {
  position: fixed;
}
.position-sticky {
  position: sticky;
}
.top-0 {
  top: 0;
}
.right-0 {
  right: 0;
}
.bottom-0 {
  bottom: 0;
}
.left-0 {
  left: 0;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-visible {
  overflow: visible;
}
.overflow-scroll {
  overflow: scroll;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overflow-x-scroll {
  overflow-x: scroll;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-y-hidden {
  overflow-y: hidden;
}
.overflow-y-scroll {
  overflow-y: scroll;
}
.m-0 {
  margin: 0;
}
.m-auto {
  margin: auto;
}
.m-xs {
  margin: 0.25rem;
}
.m-sm {
  margin: 0.5rem;
}
.m-md {
  margin: 1rem;
}
.m-lg {
  margin: 1.5rem;
}
.m-xl {
  margin: 2rem;
}
.m-2xl {
  margin: 3rem;
}
.mt-0 {
  margin-top: 0;
}
.mt-auto {
  margin-top: auto;
}
.mt-xs {
  margin-top: 0.25rem;
}
.mt-sm {
  margin-top: 0.5rem;
}
.mt-md {
  margin-top: 1rem;
}
.mt-lg {
  margin-top: 1.5rem;
}
.mt-xl {
  margin-top: 2rem;
}
.mt-2xl {
  margin-top: 3rem;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-auto {
  margin-bottom: auto;
}
.mb-xs {
  margin-bottom: 0.25rem;
}
.mb-sm {
  margin-bottom: 0.5rem;
}
.mb-md {
  margin-bottom: 1rem;
}
.mb-lg {
  margin-bottom: 1.5rem;
}
.mb-xl {
  margin-bottom: 2rem;
}
.mb-2xl {
  margin-bottom: 3rem;
}
.ml-0 {
  margin-left: 0;
}
.ml-auto {
  margin-left: auto;
}
.ml-xs {
  margin-left: 0.25rem;
}
.ml-sm {
  margin-left: 0.5rem;
}
.ml-md {
  margin-left: 1rem;
}
.ml-lg {
  margin-left: 1.5rem;
}
.mr-0 {
  margin-right: 0;
}
.mr-auto {
  margin-right: auto;
}
.mr-xs {
  margin-right: 0.25rem;
}
.mr-sm {
  margin-right: 0.5rem;
}
.mr-md {
  margin-right: 1rem;
}
.mr-lg {
  margin-right: 1.5rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mx-0 {
  margin-left: 0;
  margin-right: 0;
}
.mx-sm {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-md {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-lg {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.mx-xs {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-xl {
  margin-left: 2rem;
  margin-right: 2rem;
}
.mx-2xl {
  margin-left: 3rem;
  margin-right: 3rem;
}
.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}
.my-sm {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-md {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-lg {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-xl {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.p-0 {
  padding: 0;
}
.p-xs {
  padding: 0.25rem;
}
.p-sm {
  padding: 0.5rem;
}
.p-md {
  padding: 1rem;
}
.p-lg {
  padding: 1.5rem;
}
.p-xl {
  padding: 2rem;
}
.p-2xl {
  padding: 3rem;
}
.pt-0 {
  padding-top: 0;
}
.pt-xs {
  padding-top: 0.25rem;
}
.pt-sm {
  padding-top: 0.5rem;
}
.pt-md {
  padding-top: 1rem;
}
.pt-lg {
  padding-top: 1.5rem;
}
.pt-xl {
  padding-top: 2rem;
}
.pb-0 {
  padding-bottom: 0;
}
.pb-xs {
  padding-bottom: 0.25rem;
}
.pb-sm {
  padding-bottom: 0.5rem;
}
.pb-md {
  padding-bottom: 1rem;
}
.pb-lg {
  padding-bottom: 1.5rem;
}
.pb-xl {
  padding-bottom: 2rem;
}
.px-0 {
  padding-left: 0;
  padding-right: 0;
}
.px-sm {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-md {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-lg {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-xl {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}
.py-sm {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-md {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-lg {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-xl {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.w-auto {
  width: auto;
}
.w-full {
  width: 100%;
}
.w-screen {
  width: 100vw;
}
.w-50 {
  width: 50%;
}
.h-auto {
  height: auto;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.h-50 {
  height: 50%;
}
.min-h-screen {
  min-height: 100vh;
}
.max-w-full {
  max-width: 100%;
}
.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.z-auto {
  z-index: auto;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.opacity-0 {
  opacity: 0;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-75 {
  opacity: 0.75;
}
.opacity-100 {
  opacity: 1;
}
.pointer-events-none {
  pointer-events: none;
}
.pointer-events-auto {
  pointer-events: auto;
}
.cursor-auto {
  cursor: auto;
}
.cursor-default {
  cursor: default;
}
.cursor-pointer {
  cursor: pointer;
}
.cursor-wait {
  cursor: wait;
}
.cursor-text {
  cursor: text;
}
.cursor-move {
  cursor: move;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.btn:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.btn-primary:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-primary {
  background: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
  color: #ffffff;
}
.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #5065d0 0%, #9747e0 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.btn-primary:active:not(:disabled) {
  transform: translateY(0);
}
.btn-primary:focus-visible {
  outline: 2px solid #5b73e8;
  outline-offset: 2px;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.btn-secondary:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-secondary {
  background: #ffffff;
  color: #5b73e8;
  border: 2px solid #cbd5e1;
}
.btn-secondary:hover:not(:disabled) {
  background: #f1f5f9;
  border-color: #5b73e8;
}
.btn-secondary:focus-visible {
  outline: 2px solid #5b73e8;
  outline-offset: 2px;
}
.btn-success {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.btn-success:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.btn-success:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-success {
  background-color: #06d6a0;
  color: #ffffff;
  border: 1px solid #06d6a0;
}
.btn-success:hover:not(:disabled) {
  background-color: shade(#06d6a0, 15%);
  border-color: shade(#06d6a0, 15%);
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.btn-success:active:not(:disabled) {
  transform: translateY(0);
}
.btn-success:focus-visible {
  outline: 2px solid #06d6a0;
  outline-offset: 2px;
}
.btn-success:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.btn-danger:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.btn-danger:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-danger {
  background-color: #dc3545;
  color: #ffffff;
  border: 1px solid #dc3545;
}
.btn-danger:hover:not(:disabled) {
  background-color: shade(#dc3545, 15%);
  border-color: shade(#dc3545, 15%);
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.btn-danger:active:not(:disabled) {
  transform: translateY(0);
}
.btn-danger:focus-visible {
  outline: 2px solid #dc3545;
  outline-offset: 2px;
}
.btn-danger:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-warning {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.btn-warning:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.btn-warning:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-warning {
  background-color: #ffc107;
  color: #ffffff;
  border: 1px solid #ffc107;
}
.btn-warning:hover:not(:disabled) {
  background-color: shade(#ffc107, 15%);
  border-color: shade(#ffc107, 15%);
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.btn-warning:active:not(:disabled) {
  transform: translateY(0);
}
.btn-warning:focus-visible {
  outline: 2px solid #ffc107;
  outline-offset: 2px;
}
.btn-warning:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.btn-info:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.btn-info:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-info {
  background-color: #7c87ff;
  color: #ffffff;
  border: 1px solid #7c87ff;
}
.btn-info:hover:not(:disabled) {
  background-color: shade(#7c87ff, 15%);
  border-color: shade(#7c87ff, 15%);
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.btn-info:active:not(:disabled) {
  transform: translateY(0);
}
.btn-info:focus-visible {
  outline: 2px solid #7c87ff;
  outline-offset: 2px;
}
.btn-info:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.btn-ghost:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.btn-ghost:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-ghost {
  background: transparent;
  color: #5b73e8;
}
.btn-ghost:hover:not(:disabled) {
  background: #f8fafc;
}
.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.btn-link:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.btn-link:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-link {
  background: transparent;
  color: #5b73e8;
  padding: 0;
}
.btn-link:hover:not(:disabled) {
  color: rgb(72.8, 92, 185.6);
  text-decoration: underline;
  background: transparent;
  transform: none;
}
.btn-link:focus-visible {
  outline-color: #5b73e8;
}
.btn-outline-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.btn-outline-primary:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.btn-outline-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-outline-primary {
  background: transparent;
  color: #5b73e8;
  border: 2px solid #5b73e8;
}
.btn-outline-primary:hover:not(:disabled) {
  background: #5b73e8;
  color: #ffffff;
}
.btn-outline-primary:focus-visible {
  outline-color: #5b73e8;
}
.btn-outline-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.btn-outline-secondary:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.btn-outline-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-outline-secondary {
  background: transparent;
  color: #334155;
  border: 2px solid #cbd5e1;
}
.btn-outline-secondary:hover:not(:disabled) {
  background: #f8fafc;
  border-color: #334155;
}
.btn-outline-success {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.btn-outline-success:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.btn-outline-success:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-outline-success {
  background: transparent;
  color: #06d6a0;
  border: 2px solid #06d6a0;
}
.btn-outline-success:hover:not(:disabled) {
  background: #06d6a0;
  color: #ffffff;
}
.btn-outline-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.btn-outline-danger:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.btn-outline-danger:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-outline-danger {
  background: transparent;
  color: #dc3545;
  border: 2px solid #dc3545;
}
.btn-outline-danger:hover:not(:disabled) {
  background: #dc3545;
  color: #ffffff;
}
.btn-sm, .btn-group-sm > .btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.btn-lg, .btn-group-lg > .btn {
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
}
.btn-xl {
  padding: 2rem 3rem;
  font-size: 1.25rem;
}
.btn-block {
  display: flex;
  width: 100%;
}
.btn-icon {
  padding: 1rem;
  aspect-ratio: 1;
}
.btn-icon.btn-sm, .btn-group-sm > .btn-icon.btn {
  padding: 0.5rem;
}
.btn-icon.btn-lg, .btn-group-lg > .btn-icon.btn {
  padding: 1.5rem;
}
.btn-rounded {
  border-radius: 9999px;
}
.btn-loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}
.btn-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-group {
  display: inline-flex;
}
.btn-group .btn {
  border-radius: 0;
}
.btn-group .btn:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.btn-group .btn:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.btn-group .btn:not(:first-child) {
  margin-left: -1px;
}
.btn-group-vertical {
  display: inline-flex;
  flex-direction: column;
}
.btn-group-vertical .btn {
  border-radius: 0;
  width: 100%;
}
.btn-group-vertical .btn:first-child {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.btn-group-vertical .btn:last-child {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.btn-group-vertical .btn:not(:first-child) {
  margin-top: -1px;
}
.btn-icon-left .icon {
  margin-right: 0.5rem;
}
.btn-icon-right .icon {
  margin-left: 0.5rem;
}
.btn-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.btn-google:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.btn-google:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-google {
  background: #ffffff;
  color: #3c4043;
  border: 1px solid #dadce0;
}
.btn-google:hover:not(:disabled) {
  background: #f8f9fa;
  box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.1), 0 3px 6px -1px rgba(0, 0, 0, 0.06);
}
.btn-facebook {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.btn-facebook:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.btn-facebook:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-facebook {
  background: #1877f2;
  color: #ffffff;
}
.btn-facebook:hover:not(:disabled) {
  background: #166fe5;
}
.btn-apple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.btn-apple:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.btn-apple:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-apple {
  background: #000000;
  color: #ffffff;
}
.btn-apple:hover:not(:disabled) {
  background: #1a1a1a;
}
.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.btn-gradient:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.btn-gradient:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-gradient {
  background: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
  color: #ffffff;
  border: none;
}
.btn-gradient:hover:not(:disabled) {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px -3px rgba(91, 115, 232, 0.12), 0 4px 6px -2px rgba(168, 85, 247, 0.15);
}
.btn-subtle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.btn-subtle:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.btn-subtle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-subtle {
  background: rgba(91, 115, 232, 0.1);
  color: #5b73e8;
}
.btn-subtle:hover:not(:disabled) {
  background: rgba(91, 115, 232, 0.15);
}
.btn-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.btn-close:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.btn-close:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-close {
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: transparent !important;
  color: #64748b;
  border: none;
  font-size: 1.125rem;
  line-height: 1;
}
.btn-close:hover:not(:disabled) {
  color: #0f172a;
  background: #f8fafc !important;
}
.btn-close::before {
  content: "×";
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .btn {
    min-height: 44px;
    min-width: 44px;
  }
  .btn-block-mobile {
    display: flex;
    width: 100%;
  }
}
@media (prefers-contrast: high) {
  .btn {
    border-width: 2px;
  }
  .btn:focus-visible {
    outline-width: 3px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
  .btn:hover {
    transform: none;
  }
  .btn-loading::after {
    animation: none;
    border-left-color: transparent;
  }
}
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.btn-white:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.btn-white:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-white {
  background: #ffffff;
  color: #5b73e8;
  border: 1px solid #e2e8f0;
}
.btn-white:hover:not(:disabled) {
  background: #f9fafb;
  border-color: #cbd5e1;
}
.btn-white:focus-visible {
  outline-color: #5b73e8;
}
.file-button {
  padding: 0.5rem 1rem;
  background-color: #f8fafc;
  color: #334155;
  border-radius: 0.25rem;
  font-weight: 500;
  white-space: nowrap;
  margin-left: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.file-button:hover {
  background-color: #f1f5f9;
  color: #0f172a;
}
.addon-button {
  display: flex;
  align-items: center;
  padding: 1rem;
  background-color: #5b73e8;
  border: 1px solid #5b73e8;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 0;
}
.addon-button:hover:not(:disabled) {
  background-color: rgb(77.35, 97.75, 197.2);
  border-color: rgb(77.35, 97.75, 197.2);
}
.addon-button:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.addon-button:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.action-button {
  padding: 0.25rem 0.5rem;
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  border-radius: 0.25rem;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.action-button:hover:not(:disabled) {
  color: #5b73e8;
  background: rgba(91, 115, 232, 0.1);
}
.action-button.action-delete:hover {
  color: #dc3545;
  background: #fee2e2;
}
.action-button.action-edit:hover {
  color: #7c87ff;
  background: rgba(124, 135, 255, 0.1);
}
.newsletter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.newsletter-button:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.newsletter-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.newsletter-button {
  background: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
  color: #ffffff;
}
.newsletter-button:hover:not(:disabled) {
  background: linear-gradient(135deg, #5065d0 0%, #9747e0 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.newsletter-button:active:not(:disabled) {
  transform: translateY(0);
}
.newsletter-button:focus-visible {
  outline: 2px solid #5b73e8;
  outline-offset: 2px;
}
.newsletter-button {
  width: 100%;
  max-width: 250px;
  margin-top: 1rem;
}
.language-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.language-button:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.language-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.language-button {
  background: transparent;
  color: #5b73e8;
}
.language-button:hover:not(:disabled) {
  background: #f8fafc;
}
.language-button {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}
.card > *:last-child {
  margin-bottom: 0;
}
.card-interactive {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  cursor: pointer;
}
.card-interactive:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}
.card-interactive:active {
  transform: translateY(0);
}
.card-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  background-color: #f8fafc;
  border-radius: 0.75rem 0.75rem 0 0;
}
.card-header .card-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}
.card-header .card-subtitle {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: #64748b;
}
.card-body {
  padding: 1.5rem;
}
.card-body .card-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
}
.card-body .card-text {
  margin-bottom: 1rem;
  color: #334155;
  line-height: 1.625;
}
.card-body .card-text:last-child {
  margin-bottom: 0;
}
.card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #e2e8f0;
  background-color: #f8fafc;
  border-radius: 0 0 0.75rem 0.75rem;
}
.card-footer .card-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.card-img, .card-img-bottom, .card-img-top {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.card-img-top {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}
.card-img-bottom {
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}
.card-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
  border-radius: 0.75rem;
  color: #ffffff;
}
.card-img-overlay .card-title {
  color: #ffffff;
}
.card-img-overlay .card-text {
  color: rgba(255, 255, 255, 0.9);
}
.card-elevated {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.card-elevated:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}
.card-flat {
  box-shadow: none;
  border: 2px solid #e2e8f0;
}
.card-bordered {
  border: 2px solid #5b73e8;
}
.card-success {
  border-left: 4px solid #06d6a0;
}
.card-success .card-header {
  background-color: #d1fae5;
  border-bottom-color: #06d6a0;
}
.card-warning {
  border-left: 4px solid #ffc107;
}
.card-warning .card-header {
  background-color: #fef3c7;
  border-bottom-color: #ffc107;
}
.card-error {
  border-left: 4px solid #dc3545;
}
.card-error .card-header {
  background-color: #fee2e2;
  border-bottom-color: #dc3545;
}
.card-info {
  border-left: 4px solid #7c87ff;
}
.card-info .card-header {
  background-color: #dbeafe;
  border-bottom-color: #7c87ff;
}
.card-gradient {
  background: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
  color: #ffffff;
  border: none;
}
.card-gradient .card-title,
.card-gradient .card-text {
  color: #ffffff;
}
.card-gradient .card-header,
.card-gradient .card-footer {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.credit-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  position: relative;
  padding: 1.5rem;
  min-height: 200px;
  background: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
  color: #ffffff;
  overflow: hidden;
}
.credit-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: rotate(45deg);
}
.credit-card .card-network {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
}
.credit-card .card-number {
  margin: 2rem 0 1.5rem;
  font-family: "Menlo", "Monaco", "Courier New", monospace;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}
.credit-card .card-details {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}
.credit-card .card-details .card-holder,
.credit-card .card-details .card-expiry {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.credit-card .card-details .label {
  font-size: 0.75rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}
.card-grid-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .card-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.card-grid-3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card-grid-4 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .card-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.feature-grid {
  display: grid;
  /* Mobile-first: single column by default */
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}
.feature-grid .feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  background: #ffffff;
}
.feature-grid {
  /* Ensure the icon circle used by FeatureCard is a true circular surface
     (some pages used this outside of .features-section so define it here
     next to the feature-grid rules to ensure consistent sizing). */
}
.feature-grid .feature-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.feature-grid .feature-title {
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
  color: #0f172a;
}
.feature-grid .feature-description {
  color: #334155;
  line-height: 1.625;
  margin: 0;
  word-wrap: break-word;
}
.feature-grid .feature-card ul.list-unstyled li {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
}
.feature-grid .feature-card ul.list-unstyled li span {
  display: inline-block;
  text-align: center;
  max-width: 78%;
}
.feature-grid .feature-card ul.list-unstyled li i {
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 0.25rem;
}
.feature-grid .feature-card .text-warning i {
  font-size: 1.15rem; /* slightly larger than base */
  color: #ffc107 !important; /* gold/yellow */
  margin: 0 0.25rem;
  line-height: 1;
}
.feature-grid .feature-card ul.list-unstyled li i {
  font-size: 1.05rem;
  color: #06d6a0 !important;
}
.feature-grid .feature-card .feature-stars {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 0.25rem;
}
.feature-grid .feature-card .feature-stars i {
  margin: 0; /* remove any extra margin that could offset centering */
}
.feature-grid {
  /* Tablet: two columns */
}
@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.feature-grid {
  /* Desktop and up: three columns */
}
@media (min-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .feature-grid .feature-card:last-child {
    grid-column: 1/-1;
    justify-self: center;
    max-width: 520px;
    width: 100%;
  }
}
#how-it-works {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  #how-it-works {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
#how-it-works .howitworks-header .display-5 {
  margin-bottom: 1.5rem;
}
#how-it-works .howitworks-header .lead {
  margin-bottom: 3rem;
  max-width: 900px;
}
@media (min-width: 992px) {
  #how-it-works .howitworks-header .display-5 {
    margin-bottom: 3rem;
  }
  #how-it-works .howitworks-header .lead {
    margin-bottom: 4rem;
  }
}
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem; /* more vertical space from feature grid above */
  margin-bottom: 1rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem; /* slightly larger top padding for breathing room */
  /* Ensure there's always horizontal breathing room on very small screens
     so buttons don't touch the viewport edges. */
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.hero-cta .btn {
  min-height: 48px;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-cta .btn-primary {
  min-width: 220px; /* primary gets a bit of emphasis */
}
.hero-cta .btn-outline-primary {
  background: transparent;
  border: 2px solid #5b73e8;
  color: #5b73e8;
}
@media (max-width: 767px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
    /* Keep a small horizontal inset on mobile and ensure buttons respect it */
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .hero-cta .btn {
    width: 100%;
    max-width: 420px;
    box-sizing: border-box;
  }
  .hero-cta .btn + .btn {
    margin-top: 0.5rem;
  }
}
.stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  padding: 1.5rem;
}
.stat-card .stat-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 0.75rem;
  color: #5b73e8;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.stat-card .stat-label {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.stat-card .stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.stat-card .stat-change {
  font-size: 0.875rem;
}
.stat-card .stat-change.positive {
  color: #06d6a0;
}
.stat-card .stat-change.negative {
  color: #dc3545;
}
.feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  padding: 2rem;
  text-align: center;
  transition: all 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.feature-card .feature-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
  border-radius: 1rem;
  color: #ffffff;
  font-size: 1.875rem;
}
.feature-card .feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0f172a;
}
.feature-card .feature-description {
  color: #334155;
  line-height: 1.625;
}
.features-section {
  padding-top: 1.5rem;
  margin-top: 1rem;
}
.features-section .col {
  display: flex;
  align-items: stretch;
}
.features-section .col > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
}
.features-section .feature-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.features-section .feature-icon-content .feature-number,
.features-section .feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-size: 1.25rem; /* number size */
  font-weight: 600;
  line-height: 1;
  background: transparent;
  box-shadow: none;
  padding: 0; /* let container define spacing */
  min-width: 0;
}
@media (max-width: 767px) {
  .features-section .col {
    display: block;
  }
  .features-section .col > div {
    height: auto;
    padding: 1rem 0;
  }
}
.card-compact .card-header {
  padding: 0.5rem 1rem;
}
.card-compact .card-body {
  padding: 1rem;
}
.card-compact .card-footer {
  padding: 0.5rem 1rem;
}
.card-badge {
  position: relative;
}
.card-badge .badge {
  position: absolute;
  top: -0.5rem;
  right: 1.5rem;
  z-index: 1;
}
.card-horizontal {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .card-horizontal {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .card-horizontal .card-img-left {
    max-width: 40%;
    border-radius: 0.75rem 0 0 0.75rem;
  }
}
.card-horizontal .card-body {
  flex: 1;
}
.card-skeleton {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  padding: 1.5rem;
}
.card-skeleton .skeleton-line {
  height: 1rem;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 200% 100%;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  animation: skeleton-loading 1.5s infinite;
}
.card-skeleton .skeleton-line:last-child {
  width: 60%;
  margin-bottom: 0;
}
@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .card,
  .card-interactive,
  .feature-card {
    transition: none;
  }
  .card:hover,
  .card-interactive:hover,
  .feature-card:hover {
    transform: none;
  }
  .card-skeleton .skeleton-line {
    animation: none;
  }
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
}
.badge-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: rgba(91, 115, 232, 0.1);
  color: #5b73e8;
}
.badge-success {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: #d1fae5;
  color: #06d6a0;
}
.badge-warning {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: #fef3c7;
  color: #ffc107;
}
.badge-error,
.badge-danger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: #fee2e2;
  color: #dc3545;
}
.badge-info {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: #dbeafe;
  color: #7c87ff;
}
.badge-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: #f3f4f6;
  color: #334155;
}
.badge-subtle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: #faf5ff;
  color: #a855f7;
  border: 1px solid #e9d5ff;
}
.badge-solid-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: #5b73e8;
  color: #ffffff;
}
.badge-solid-success {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: #06d6a0;
  color: #ffffff;
}
.badge-solid-warning {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: #ffc107;
  color: #ffffff;
}
.badge-solid-error {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: #dc3545;
  color: #ffffff;
}
.badge-solid-info {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: #7c87ff;
  color: #ffffff;
}
.badge-outline-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: transparent;
  color: #5b73e8;
  border: 1px solid #5b73e8;
}
.badge-outline-success {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: transparent;
  color: #06d6a0;
  border: 1px solid #06d6a0;
}
.badge-outline-warning {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: transparent;
  color: #ffc107;
  border: 1px solid #ffc107;
}
.badge-outline-error {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: transparent;
  color: #dc3545;
  border: 1px solid #dc3545;
}
.badge-gradient {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
  color: #ffffff;
}
.badge-sm {
  padding: 0.125rem 0.25rem;
  font-size: 0.625rem;
}
.badge-lg {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.badge-rounded {
  border-radius: 0.5rem;
}
.badge-square {
  border-radius: 0.25rem;
}
.badge-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.badge-icon .icon {
  font-size: 1em;
}
.badge-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.badge-dot::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: currentColor;
}
.badge-notification {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0.125rem 0.375rem;
  background-color: #dc3545;
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
}
.badge-notification.badge-notification-lg {
  min-width: 1.5rem;
  height: 1.5rem;
  font-size: 0.75rem;
}
.position-relative .badge-notification {
  position: absolute;
  top: -0.375rem;
  right: -0.375rem;
  z-index: 1;
}
.badge-removable {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  padding-right: 0.25rem;
}
.badge-removable .badge-close {
  margin-left: 0.25rem;
  padding: 0;
  background: none;
  border: none;
  color: currentColor;
  opacity: 0.7;
  cursor: pointer;
  font-size: 1.25em;
  line-height: 1;
  transition: opacity 0.2s ease;
}
.badge-removable .badge-close:hover {
  opacity: 1;
}
.badge-removable .badge-close::before {
  content: "×";
}
.badge-status-active {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: #d1fae5;
  color: #06d6a0;
}
.badge-status-inactive {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: #f3f4f6;
  color: #64748b;
}
.badge-status-pending {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: #fef3c7;
  color: #ffc107;
}
.badge-status-expired {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: #fee2e2;
  color: #dc3545;
}
.badge-cashback {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: rgb(230.1, 250.9, 245.5);
  color: #06d6a0;
}
.badge-travel {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: rgb(238.6, 241, 252.7);
  color: #5b73e8;
}
.badge-dining {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: rgb(255, 248.8, 230.2);
  color: rgb(204, 154.4, 5.6);
}
.badge-gas {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: rgb(251.5, 234.8, 236.4);
  color: #dc3545;
}
.badge-groceries {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: rgb(241.9, 243, 255);
  color: #7c87ff;
}
.badge-free {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: #f3f4f6;
  color: #334155;
}
.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(91, 115, 232, 0.08), 0 2px 4px -1px rgba(168, 85, 247, 0.06);
}
.badge-elite {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #8b6914;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.badge-visa {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: #1a1f71;
  color: #ffffff;
}
.badge-mastercard {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: #eb001b;
  color: #ffffff;
}
.badge-amex {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: #006fcf;
  color: #ffffff;
}
.badge-discover {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: #ff6000;
  color: #ffffff;
}
.badge-group {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}
.badge-pulse {
  position: relative;
}
.badge-pulse::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: currentColor;
  opacity: 0.5;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.2);
  }
}
.badge-percentage {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: rgb(230.1, 250.9, 245.5);
  color: #06d6a0;
  font-weight: 700;
}
.badge-percentage::after {
  content: "%";
  margin-left: 1px;
}
.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 9999px;
  white-space: nowrap;
  background-color: #dc3545;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  animation: bounce 1s ease infinite;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .badge-pulse::before {
    animation: none;
  }
  .badge-new {
    animation: none;
  }
}
@media (prefers-contrast: high) {
  .badge {
    border-width: 2px;
  }
}
/* Page background */
body {
  background: transparent !important;
}
/* Make section backgrounds uniform - but allow transparent sections */
.bg-light,
.header-background,
.card-img-overlay,
.immersive-comparison-page,
.pricing-page,
.comparison-page {
  background: #ffffff !important;
}
/* Some components set inline gradients; force them to white to match top of page */
header,
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  background: transparent !important; /* keep container transparent but sections will be white */
}
/* Ensure cards and panels remain white */
.card,
.feature-card {
  background: #ffffff !important;
}
/* NOTE: earlier aggressive overrides removed gradients site-wide. We no longer
   force-remove linear-gradient styles globally because buttons and headings
   rely on CSS variables (e.g. --primary-gradient). If you still need to
   neutralize a specific component, do so in that component's stylesheet. */
/* Dark theme exceptions will still apply via data-theme attribute if present */
[data-theme=dark] body,
[data-theme=dark] .card,
[data-theme=dark] .section {
  background: initial !important;
}
/* Avoid globally clearing background-image: many components and buttons
   intentionally use CSS gradients via variables (e.g. --primary-gradient).
   We keep this selector as a narrow opt-out list if you want to remove
   the gradient on a particular class in the future. */
/* Do NOT reset theme gradient variables here — themes declare --primary-gradient
   and related tokens which we want to preserve so components can opt into
   gradient surfaces (for example buttons or heading text). */
/* Surface token used by pages/components to share a single background surface.
   Set this to your global background color (white by default). Components should
   reference var(--page-surface) instead of hard-coding gradients or colors. */
:root {
  --page-surface: #ffffff !important;
  --btn-primary-bg: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
  --btn-primary-hover: linear-gradient(135deg, #4f62d0 0%, #9748e0 100%);
  --text-white: #ffffff;
}
/* Utility class to apply the shared surface. Place a wrapper with .page-surface
   around pages or sections you want to live on the same surface. */
.page-surface {
  /* Apply the page surface color. We DON'T remove background-image here so
     components can still render gradients where desired (e.g., buttons). */
  background: var(--page-surface);
}
/* Mobile inset for page-surface: ensure hero text and other page-surface
   content has horizontal breathing room on small viewports. This prevents
   headings or paragraphs from sitting flush with the device edge. */
@media (max-width: 767px) {
  .page-surface {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
}
/* Button styles consolidated to components/_buttons.scss and _custom-buttons.scss
   CSS variable definitions kept for theme engine reference.
   See _buttons.scss for canonical button style definitions. */
/* Hero title color: ensure visible in both light and dark themes. If you later
   want a gradient text treatment, reintroduce the gradient variable and use
   background-clip:text only when the gradient variable is set. */
.page-surface .hero-title,
.hero-title {
  color: var(--text-primary, #111) !important;
}
[data-theme=dark] .page-surface .hero-title,
[data-theme=dark] .hero-title {
  color: var(--text-white, #fff) !important;
}
/* Hero brand (icon + title) responsive centering */
.hero-brand {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.75rem !important;
  flex-direction: column; /* stack on mobile */
  text-align: center;
}
@media (min-width: 768px) {
  .hero-brand {
    flex-direction: row; /* inline on tablet+ */
  }
  .hero-brand img {
    margin-right: var(--space-md, 1rem) !important;
  }
}
.hero-title {
  display: block;
  margin: 0 !important;
}
/* Prevent automated hyphenation and word splitting for hero headings and
   lead paragraphs so lines break between words only. This targets the
   main hero title and descriptive copy used across the landing page. */
.hero-title,
.lead,
.feature-title,
.feature-description {
  hyphens: none !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group:last-child {
  margin-bottom: 0;
}
.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
}
.form-label.required::after {
  content: "*";
  color: #dc3545;
  margin-left: 0.25rem;
}
.form-label-inline {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 1rem;
}
.form-control {
  width: 100%;
  padding: 1rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #0f172a;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.form-control::placeholder {
  color: #64748b;
}
.form-control:focus {
  outline: none;
  border-color: #5b73e8;
  box-shadow: 0 0 0 3px rgba(91, 115, 232, 0.1);
}
.form-control:disabled {
  background-color: #f3f4f6;
  cursor: not-allowed;
  opacity: 0.6;
}
.form-control.error {
  border-color: #dc3545;
}
.form-control.error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.form-control-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.form-control-lg {
  padding: 1.5rem;
  font-size: 1.125rem;
}
.input-group {
  position: relative;
  display: flex;
}
.input-group .input-icon-left {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
  z-index: 1;
}
.input-group .input-icon-right {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
  z-index: 1;
}
.input-group .form-control.has-icon-left {
  padding-left: 3rem;
}
.input-group .form-control.has-icon-right {
  padding-right: 3rem;
}
.form-textarea {
  width: 100%;
  padding: 1rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #0f172a;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.form-textarea::placeholder {
  color: #64748b;
}
.form-textarea:focus {
  outline: none;
  border-color: #5b73e8;
  box-shadow: 0 0 0 3px rgba(91, 115, 232, 0.1);
}
.form-textarea:disabled {
  background-color: #f3f4f6;
  cursor: not-allowed;
  opacity: 0.6;
}
.form-textarea.error {
  border-color: #dc3545;
}
.form-textarea.error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.form-textarea-fixed {
  resize: none;
}
.form-select {
  width: 100%;
  padding: 1rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #0f172a;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.form-select::placeholder {
  color: #64748b;
}
.form-select:focus {
  outline: none;
  border-color: #5b73e8;
  box-shadow: 0 0 0 3px rgba(91, 115, 232, 0.1);
}
.form-select:disabled {
  background-color: #f3f4f6;
  cursor: not-allowed;
  opacity: 0.6;
}
.form-select.error {
  border-color: #dc3545;
}
.form-select.error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 3rem;
  cursor: pointer;
}
.form-select:disabled {
  cursor: not-allowed;
}
.form-select[multiple] {
  background-image: none;
  padding-right: 1rem;
}
.form-select[multiple] option {
  padding: 0.5rem;
}
.form-check, .form-radio {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.form-check:last-child, .form-radio:last-child {
  margin-bottom: 0;
}
.form-check-input:not(.form-switch .form-check-input):not(.form-switch .form-radio-input), .form-radio-input:not(.form-switch .form-check-input):not(.form-switch .form-radio-input) {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  vertical-align: top;
  background-color: var(--bs-body-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--bs-border-width) solid var(--bs-border-color);
  appearance: none;
  color-adjust: exact;
  transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-check-input:not(.form-switch .form-check-input):not(.form-switch .form-radio-input)[type=checkbox], .form-radio-input:not(.form-switch .form-check-input):not(.form-switch .form-radio-input)[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input:not(.form-switch .form-check-input):not(.form-switch .form-radio-input)[type=radio], .form-radio-input:not(.form-switch .form-check-input):not(.form-switch .form-radio-input)[type=radio] {
  border-radius: 50%;
}
.form-check-input:not(.form-switch .form-check-input):not(.form-switch .form-radio-input):active, .form-radio-input:not(.form-switch .form-check-input):not(.form-switch .form-radio-input):active {
  filter: brightness(90%);
}
.form-check-input:not(.form-switch .form-check-input):not(.form-switch .form-radio-input):focus, .form-radio-input:not(.form-switch .form-check-input):not(.form-switch .form-radio-input):focus {
  border-color: var(--bs-primary);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}
.form-check-input:not(.form-switch .form-check-input):not(.form-switch .form-radio-input):checked, .form-radio-input:not(.form-switch .form-check-input):not(.form-switch .form-radio-input):checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.form-check-input:not(.form-switch .form-check-input):not(.form-switch .form-radio-input):checked[type=checkbox], .form-radio-input:not(.form-switch .form-check-input):not(.form-switch .form-radio-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:not(.form-switch .form-check-input):not(.form-switch .form-radio-input):checked[type=radio], .form-radio-input:not(.form-switch .form-check-input):not(.form-switch .form-radio-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-switch .form-check-input, .form-switch .form-radio-input {
  width: 2em;
  height: 1em;
  margin-top: 0.125rem;
  vertical-align: top;
  background-color: #dee2e6;
  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='white'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: 2em;
  appearance: none;
  transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-switch .form-check-input:focus, .form-switch .form-radio-input:focus {
  border-color: var(--bs-primary);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}
.form-switch .form-check-input:checked, .form-switch .form-radio-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  background-position: right center;
}
.form-switch .form-check-input:active, .form-switch .form-radio-input:active {
  filter: brightness(90%);
}
.form-check-label, .form-radio-label {
  font-size: 1rem;
  color: #0f172a;
  cursor: pointer;
  user-select: none;
  line-height: 1.625;
}
.form-check-label.disabled, .disabled.form-radio-label {
  opacity: 0.5;
  cursor: not-allowed;
}
.form-check-inline {
  display: inline-flex;
  margin-right: 1.5rem;
}
.form-radio-input {
  border-radius: 50%;
}
.form-radio-input:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='4' fill='white'/%3E%3C/svg%3E");
}
.form-switch {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-switch:last-child {
  margin-bottom: 0;
}
.form-switch-input {
  width: 3rem;
  height: 1.5rem;
  position: relative;
  appearance: none;
  background-color: #cbd5e1;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.form-switch-input::before {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #ffffff;
  border-radius: 50%;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.form-switch-input:checked {
  background-color: #5b73e8;
}
.form-switch-input:checked::before {
  transform: translateX(1.5rem);
}
.form-switch-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(91, 115, 232, 0.1);
}
.form-switch-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.form-switch-label {
  font-size: 1rem;
  color: #0f172a;
  cursor: pointer;
  user-select: none;
}
.form-switch-label.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.form-file {
  position: relative;
}
.form-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}
.form-file-input:focus + .form-file-label {
  border-color: #5b73e8;
  box-shadow: 0 0 0 3px rgba(91, 115, 232, 0.1);
}
.form-file-label {
  width: 100%;
  padding: 1rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #0f172a;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.form-file-label::placeholder {
  color: #64748b;
}
.form-file-label:focus {
  outline: none;
  border-color: #5b73e8;
  box-shadow: 0 0 0 3px rgba(91, 115, 232, 0.1);
}
.form-file-label:disabled {
  background-color: #f3f4f6;
  cursor: not-allowed;
  opacity: 0.6;
}
.form-file-label.error {
  border-color: #dc3545;
}
.form-file-label.error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.form-file-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.form-file-label .file-name {
  color: #64748b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-file-label .file-button {
  padding: 0.5rem 1rem;
  background-color: #f8fafc;
  border-radius: 0.25rem;
  font-weight: 500;
  white-space: nowrap;
  margin-left: 1rem;
}
.form-control.is-valid,
.form-select.is-valid {
  border-color: #06d6a0;
}
.form-control.is-valid:focus,
.form-select.is-valid:focus {
  box-shadow: 0 0 0 3px rgba(6, 214, 160, 0.1);
}
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545;
}
.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.valid-feedback {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #06d6a0;
}
.invalid-feedback {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc3545;
}
.form-text {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}
.input-addon {
  display: flex;
}
.input-addon .form-control {
  border-radius: 0;
}
.input-addon .form-control:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.input-addon .form-control:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.input-addon .addon-text {
  display: flex;
  align-items: center;
  padding: 1rem;
  background-color: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #64748b;
  font-size: 1rem;
  white-space: nowrap;
}
.input-addon .addon-text:first-child {
  border-right: none;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.input-addon .addon-text:last-child {
  border-left: none;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.input-addon .addon-button {
  display: flex;
  align-items: center;
  padding: 1rem;
  background-color: #5b73e8;
  border: 1px solid #5b73e8;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.input-addon .addon-button:hover {
  background-color: rgb(77.35, 97.75, 197.2);
}
.input-addon .addon-button:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.input-addon .addon-button:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.form-search {
  position: relative;
}
.form-search .form-control {
  padding-left: 3rem;
  border-radius: 9999px;
}
.form-search .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
}
.form-search .search-clear {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.25rem;
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  border-radius: 50%;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.form-search .search-clear:hover {
  color: #0f172a;
  background: #f8fafc;
}
.form-floating {
  position: relative;
}
.form-floating .form-control {
  height: calc(3.5rem + 2px);
  padding: 1.625rem 1rem 0.625rem;
}
.form-floating .form-control::placeholder {
  color: transparent;
}
.form-floating .form-control:focus, .form-floating .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating .form-control:focus ~ .form-label, .form-floating .form-control:not(:placeholder-shown) ~ .form-label {
  opacity: 1;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating .form-label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease, transform 0.1s ease;
  opacity: 0.65;
}
@media (min-width: 768px) {
  .form-horizontal {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1rem;
    align-items: start;
  }
  .form-horizontal .form-label {
    text-align: right;
    padding-top: 1rem;
  }
}
.form-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.form-inline .form-group {
  margin-bottom: 0;
  flex: 1;
  min-width: 200px;
}
.form-inline .form-label {
  margin-bottom: 0.25rem;
}
.form-label-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
@media (prefers-contrast: high) {
  .form-control,
  .form-select,
  .form-check-input,
  .form-radio-input,
  .form-switch-input {
    border-width: 2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .form-control,
  .form-select,
  .form-check-input,
  .form-radio-input,
  .form-switch-input,
  .form-switch-input::before {
    transition: none;
  }
}
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.modal-backdrop.show {
  opacity: 1;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.modal.show {
  opacity: 1;
  pointer-events: auto;
}
.modal.show .modal-content {
  transform: scale(1);
  opacity: 1;
}
.modal-content {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: calc(100vh - 2rem);
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.modal-header, .offcanvas .offcanvas-header, .drawer .drawer-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.modal-header .modal-title, .offcanvas .offcanvas-header .modal-title, .drawer .drawer-header .modal-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
}
.modal-header .modal-close, .offcanvas .offcanvas-header .modal-close, .drawer .drawer-header .modal-close {
  padding: 0.5rem;
  background: none;
  border: none;
  color: #64748b;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.modal-header .modal-close:hover, .offcanvas .offcanvas-header .modal-close:hover, .drawer .drawer-header .modal-close:hover {
  color: #0f172a;
  background: #f8fafc;
}
.modal-header .modal-close::before, .offcanvas .offcanvas-header .modal-close::before, .drawer .drawer-header .modal-close::before {
  content: "×";
}
.modal-body, .offcanvas .offcanvas-body, .drawer .drawer-body {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}
.modal-body > *:last-child, .offcanvas .offcanvas-body > *:last-child, .drawer .drawer-body > *:last-child {
  margin-bottom: 0;
}
.modal-footer, .drawer .drawer-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex-shrink: 0;
}
.modal-sm .modal-content {
  max-width: 400px;
}
.modal-lg .modal-content {
  max-width: 800px;
}
.modal-xl .modal-content {
  max-width: 1140px;
}
.modal-full .modal-content {
  max-width: none;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  border-radius: 0;
  margin: 0;
}
.modal-centered {
  align-items: center;
  justify-content: center;
}
.modal-top {
  align-items: flex-start;
  padding-top: 3rem;
}
.modal-bottom {
  align-items: flex-end;
  padding: 0;
}
.modal-bottom .modal-content {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 1rem 1rem 0 0;
}
.modal-bottom.show .modal-content {
  transform: translateY(0);
}
.modal-bottom:not(.show) .modal-content {
  transform: translateY(100%);
}
.modal-scrollable .modal-content {
  max-height: calc(100vh - 2rem);
}
.modal-scrollable .modal-body, .modal-scrollable .offcanvas .offcanvas-body, .offcanvas .modal-scrollable .offcanvas-body, .modal-scrollable .drawer .drawer-body, .drawer .modal-scrollable .drawer-body {
  overflow-y: auto;
}
.modal-loading .modal-body, .modal-loading .offcanvas .offcanvas-body, .offcanvas .modal-loading .offcanvas-body, .modal-loading .drawer .drawer-body, .drawer .modal-loading .drawer-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.modal-loading .modal-body::after, .modal-loading .offcanvas .offcanvas-body::after, .offcanvas .modal-loading .offcanvas-body::after, .modal-loading .drawer .drawer-body::after, .drawer .modal-loading .drawer-body::after {
  content: "";
  width: 3rem;
  height: 3rem;
  border: 3px solid #e2e8f0;
  border-top-color: #5b73e8;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.modal-confirm .modal-content {
  max-width: 480px;
}
.modal-confirm .modal-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.875rem;
}
.modal-confirm .modal-icon.icon-success {
  background-color: #d1fae5;
  color: #06d6a0;
}
.modal-confirm .modal-icon.icon-warning {
  background-color: #fef3c7;
  color: #ffc107;
}
.modal-confirm .modal-icon.icon-error {
  background-color: #fee2e2;
  color: #dc3545;
}
.modal-confirm .modal-icon.icon-info {
  background-color: #dbeafe;
  color: #7c87ff;
}
.modal-confirm .modal-body, .modal-confirm .offcanvas .offcanvas-body, .offcanvas .modal-confirm .offcanvas-body, .modal-confirm .drawer .drawer-body, .drawer .modal-confirm .drawer-body {
  text-align: center;
}
.drawer {
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  max-width: 400px;
  z-index: 1050;
  background: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.drawer.drawer-left {
  left: 0;
  transform: translateX(-100%);
}
.drawer.drawer-left.show {
  transform: translateX(0);
}
.drawer.drawer-right {
  right: 0;
  transform: translateX(100%);
}
.drawer.drawer-right.show {
  transform: translateX(0);
}
.popover {
  position: absolute;
  z-index: 1060;
  max-width: 276px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.popover.show {
  opacity: 1;
  pointer-events: auto;
}
.popover .popover-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.popover .popover-arrow.arrow-top {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent #ffffff transparent;
}
.popover .popover-arrow.arrow-bottom {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px 8px 0 8px;
  border-color: #ffffff transparent transparent transparent;
}
.popover .popover-arrow.arrow-left {
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-width: 8px 8px 8px 0;
  border-color: transparent #ffffff transparent transparent;
}
.popover .popover-arrow.arrow-right {
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #ffffff;
}
.popover .popover-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  font-weight: 600;
  color: #0f172a;
}
.popover .popover-body {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  color: #334155;
}
.tooltip {
  position: absolute;
  z-index: 1070;
  padding: 0.5rem 1rem;
  background: #111827;
  color: #ffffff;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.1), 0 3px 6px -1px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.tooltip.show {
  opacity: 1;
}
.offcanvas {
  position: fixed;
  z-index: 1050;
  background: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.offcanvas.offcanvas-start {
  top: 0;
  left: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  transform: translateX(-100%);
}
.offcanvas.offcanvas-start.show {
  transform: translateX(0);
}
.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  transform: translateX(100%);
}
.offcanvas.offcanvas-end.show {
  transform: translateX(0);
}
.offcanvas.offcanvas-top {
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 50vh;
  transform: translateY(-100%);
}
.offcanvas.offcanvas-top.show {
  transform: translateY(0);
}
.offcanvas.offcanvas-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 50vh;
  transform: translateY(100%);
}
.offcanvas.offcanvas-bottom.show {
  transform: translateY(0);
}
@media (max-width: 767px) {
  .modal-content {
    max-width: none;
    width: 100%;
    margin: 0;
    border-radius: 1rem 1rem 0 0;
  }
  .modal:not(.modal-full) {
    align-items: flex-end;
    padding: 0;
  }
  .drawer {
    max-width: 85%;
  }
}
.modal:focus,
.drawer:focus,
.offcanvas:focus {
  outline: none;
}
@media (prefers-reduced-motion: reduce) {
  .modal-content,
  .drawer,
  .offcanvas,
  .popover,
  .tooltip {
    transition: none;
  }
  .modal-loading .modal-body::after, .modal-loading .drawer .drawer-body::after, .drawer .modal-loading .drawer-body::after, .modal-loading .offcanvas .offcanvas-body::after, .offcanvas .modal-loading .offcanvas-body::after {
    animation: none;
    border-left-color: transparent;
  }
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--navbar-bg, #ffffff);
  border-bottom: 1px solid var(--border-primary, #e2e8f0);
  position: sticky;
  top: 0;
  z-index: 1020;
  transition: all 0.2s ease;
}
.navbar.navbar-transparent {
  background: transparent;
  border-bottom: none;
}
.navbar.navbar-shadow {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.navbar > .container .navbar-brand,
.navbar > .container-fluid .navbar-brand,
.navbar > .container-sm .navbar-brand,
.navbar > .container-md .navbar-brand,
.navbar > .container-lg .navbar-brand,
.navbar > .container-xl .navbar-brand,
.navbar > .container-xxl .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}
.navbar-brand .bi {
  font-size: 1.25rem;
  line-height: 1;
}
@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    flex: 1 1 auto;
  }
  .navbar > .container .navbar-nav,
  .navbar > .container-fluid .navbar-nav,
  .navbar > .container-sm .navbar-nav,
  .navbar > .container-md .navbar-nav,
  .navbar > .container-lg .navbar-nav,
  .navbar > .container-xl .navbar-nav,
  .navbar > .container-xxl .navbar-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.navbar-brand:hover {
  color: #5b73e8;
}
.navbar-brand .brand-logo {
  height: 2rem;
  width: auto;
}
.navbar-brand .brand-text {
  background: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar-menu {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .navbar-menu {
    display: flex;
  }
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.nav-link:hover {
  color: #5b73e8;
  background: #f8fafc;
}
.nav-link.active {
  color: #5b73e8;
  background: rgba(91, 115, 232, 0.1);
}
.nav-link .icon {
  font-size: 1.25em;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown .nav-link::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.25rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.2s ease;
}
.nav-dropdown:hover .nav-link::after, .nav-dropdown.show .nav-link::after {
  transform: rotate(180deg);
}
.nav-dropdown .dropdown-menu, .nav-dropdown .navbar-user .user-dropdown, .navbar-user .nav-dropdown .user-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:hover .navbar-user .user-dropdown, .navbar-user .nav-dropdown:hover .user-dropdown, .nav-dropdown.show .dropdown-menu, .nav-dropdown.show .navbar-user .user-dropdown, .navbar-user .nav-dropdown.show .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  color: #334155;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.nav-dropdown .dropdown-item:hover {
  color: #0f172a;
  background: #f8fafc;
}
.nav-dropdown .dropdown-item .icon {
  font-size: 1.25em;
  color: #64748b;
}
.nav-dropdown .dropdown-divider {
  height: 1px;
  margin: 0.5rem 0;
  background: #e2e8f0;
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.navbar-search {
  position: relative;
  width: 300px;
}
@media (max-width: 991px) {
  .navbar-search {
    display: none;
  }
}
.navbar-search .search-input {
  width: 100%;
  padding: 0.5rem 1rem 0.5rem 3rem;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}
.navbar-search .search-input:focus {
  outline: none;
  border-color: #5b73e8;
  box-shadow: 0 0 0 3px rgba(91, 115, 232, 0.1);
  width: 400px;
}
.navbar-search .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
}
.navbar-user {
  position: relative;
}
.navbar-user .user-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem;
  background: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.navbar-user .user-trigger:hover {
  background: #f8fafc;
}
.navbar-user .user-trigger .user-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}
.navbar-user .user-trigger .user-name {
  font-weight: 500;
  color: #0f172a;
}
@media (max-width: 767px) {
  .navbar-user .user-trigger .user-name {
    display: none;
  }
}
.navbar-user .user-dropdown {
  right: 0;
  left: auto;
  min-width: 250px;
}
.navbar-user:hover .user-dropdown, .navbar-user.show .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navbar-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media (min-width: 992px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-toggle .toggle-bar {
  width: 1.5rem;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.2s ease;
}
.navbar-toggle.active .toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggle.active .toggle-bar:nth-child(2) {
  opacity: 0;
}
.navbar-toggle.active .toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.navbar-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 1050;
  padding: 1.5rem;
  transform: translateX(-100%);
  transition: all 0.2s ease;
  overflow-y: auto;
}
.navbar-mobile-menu.show {
  transform: translateX(0);
}
.navbar-mobile-menu .mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.navbar-mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.navbar-mobile-menu .mobile-nav .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  font-size: 1.125rem;
}
.navbar-mobile-menu .mobile-dropdown .dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}
.navbar-mobile-menu .mobile-dropdown.show .dropdown-content {
  max-height: 500px;
}
.navbar-mobile-menu .mobile-dropdown .dropdown-item {
  padding-left: 3rem;
}
.navbar-notification {
  position: relative;
}
.navbar-notification .notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0.125rem 0.375rem;
  background: #dc3545;
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.navbar-scrolled {
  box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.1), 0 3px 6px -1px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.navbar-dark {
  background: #0f172a;
  border-bottom-color: #1e293b;
}
.navbar-dark .navbar-brand {
  color: #ffffff;
}
.navbar-dark .nav-link {
  color: #cbd5e1;
}
.navbar-dark .nav-link:hover {
  color: #ffffff;
  background: #1e293b;
}
.navbar-dark .nav-link.active {
  color: #5b73e8;
  background: rgba(91, 115, 232, 0.15);
}
.navbar-dark .dropdown-menu, .navbar-dark .navbar-user .user-dropdown, .navbar-user .navbar-dark .user-dropdown {
  background: #1e293b;
  border-color: #334155;
}
.navbar-dark .dropdown-item {
  color: #cbd5e1;
}
.navbar-dark .dropdown-item:hover {
  color: #ffffff;
  background: #334155;
}
.navbar-glass {
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(226, 232, 240, 0.5);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
  list-style: none;
  margin: 0;
  font-size: 0.875rem;
}
.breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
}
.breadcrumb .breadcrumb-item a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.breadcrumb .breadcrumb-item a:hover {
  color: #5b73e8;
}
.breadcrumb .breadcrumb-item.active {
  color: #0f172a;
  font-weight: 500;
}
.breadcrumb .breadcrumb-item:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: #64748b;
}
.nav-tabs {
  display: flex;
  gap: 1rem;
  border-bottom: 2px solid #e2e8f0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-tabs .nav-tab {
  padding: 1rem 1.5rem;
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.nav-tabs .nav-tab:hover {
  color: #5b73e8;
  border-bottom-color: rgba(91, 115, 232, 0.3);
}
.nav-tabs .nav-tab.active {
  color: #5b73e8;
  border-bottom-color: #5b73e8;
}
.nav-pills {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-pills .nav-pill {
  padding: 0.5rem 1.5rem;
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  border-radius: 9999px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.nav-pills .nav-pill:hover {
  color: #0f172a;
  background: #f8fafc;
}
.nav-pills .nav-pill.active {
  color: #ffffff;
  background: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
}
@media (max-width: 991px) {
  .navbar {
    padding: 1rem;
  }
  .navbar-menu {
    display: none;
  }
  .navbar-collapse:not(.show) {
    display: none !important;
  }
  .navbar-collapse.show {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: var(--navbar-bg, #ffffff) !important;
    border-bottom: 1px solid var(--border-primary, #e2e8f0) !important;
    padding: 1rem !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    z-index: 1000 !important;
    display: block !important;
  }
  .navbar-collapse .navbar-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    margin-left: 0 !important;
  }
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem !important;
    width: 100% !important;
    display: block !important;
  }
  .navbar-nav .dropdown-menu, .navbar-nav .navbar-user .user-dropdown, .navbar-user .navbar-nav .user-dropdown {
    position: static !important;
    float: none !important;
    width: 100% !important;
    margin-top: 0.25rem !important;
    border: none !important;
    box-shadow: none !important;
  }
  .navbar-nav .dropdown-item {
    padding: 0.5rem 1rem !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .navbar,
  .nav-link,
  .dropdown-menu,
  .navbar-user .user-dropdown,
  .navbar-mobile-menu {
    transition: none;
  }
  .navbar-toggle .toggle-bar {
    transition: none;
  }
}
.footer {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 4rem 0 2rem;
  margin-top: auto;
}
@media (min-width: 992px) {
  .footer {
    padding: 6rem 0 3rem;
  }
}
.footer-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .footer-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
@media (min-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}
.footer-about .footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer-about .footer-brand .brand-logo {
  height: 2.5rem;
  width: auto;
}
.footer-about .footer-brand .brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-about .footer-description {
  color: #334155;
  line-height: 1.625;
  margin-bottom: 1.5rem;
}
.footer-about .footer-social {
  display: flex;
  gap: 1rem;
}
.footer-about .footer-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 1.125rem;
  transition: all 0.2s ease;
}
.footer-about .footer-social .social-link:hover {
  color: #5b73e8;
  background: rgba(91, 115, 232, 0.1);
  border-color: #5b73e8;
  transform: translateY(-2px);
}
.footer-section .footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.5rem;
}
.footer-section .footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-section .footer-link {
  color: #334155;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.footer-section .footer-link:hover {
  color: #5b73e8;
  padding-left: 0.25rem;
}
.footer-newsletter .newsletter-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.footer-newsletter .newsletter-description {
  color: #334155;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
.footer-newsletter .newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.footer-newsletter .newsletter-form .newsletter-input {
  flex: 1;
  padding: 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}
.footer-newsletter .newsletter-form .newsletter-input:focus {
  outline: none;
  border-color: #5b73e8;
  box-shadow: 0 0 0 3px rgba(91, 115, 232, 0.1);
}
.footer-newsletter .newsletter-form .newsletter-button {
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.footer-newsletter .newsletter-form .newsletter-button:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
@media (max-width: 575px) {
  .footer-newsletter .newsletter-form {
    flex-direction: column;
  }
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-bottom .footer-copyright {
  color: #64748b;
  font-size: 0.875rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom .footer-copyright {
    text-align: left;
  }
}
.footer-bottom .footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer-bottom .footer-legal {
    justify-content: flex-end;
  }
}
.footer-bottom .footer-legal .legal-link {
  color: #64748b;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.footer-bottom .footer-legal .legal-link:hover {
  color: #5b73e8;
}
.footer-dark {
  background: #0f172a;
  border-top-color: #1e293b;
  color: #cbd5e1;
}
.footer-dark .footer-title {
  color: #ffffff;
}
.footer-dark .footer-description,
.footer-dark .footer-link,
.footer-dark .footer-copyright,
.footer-dark .legal-link {
  color: #94a3b8;
}
.footer-dark .footer-link:hover,
.footer-dark .legal-link:hover {
  color: #5b73e8;
}
.footer-dark .footer-social .social-link {
  background: #1e293b;
  border-color: #334155;
  color: #94a3b8;
}
.footer-dark .footer-social .social-link:hover {
  background: rgba(91, 115, 232, 0.15);
  border-color: #5b73e8;
  color: #5b73e8;
}
.footer-dark .newsletter-input {
  background: #1e293b;
  border-color: #334155;
  color: #ffffff;
}
.footer-dark .newsletter-input::placeholder {
  color: #64748b;
}
.footer-dark .newsletter-input:focus {
  border-color: #5b73e8;
  background: #334155;
}
.footer-dark .footer-bottom {
  border-top-color: #1e293b;
}
.footer-minimal {
  padding: 3rem 0;
}
.footer-minimal .footer-grid {
  display: none;
}
.footer-minimal .footer-bottom {
  padding-top: 0;
  border-top: none;
}
.footer-compact {
  padding: 2rem 0;
}
.footer-compact .footer-grid {
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-compact .footer-title {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-compact .footer-links {
  gap: 0.5rem;
  font-size: 0.875rem;
}
.footer-apps .apps-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}
.footer-apps .app-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-apps .app-badges .app-badge {
  display: inline-block;
}
.footer-apps .app-badges .app-badge img {
  height: 40px;
  width: auto;
  transition: transform 0.2s ease;
}
.footer-apps .app-badges .app-badge img:hover {
  transform: scale(1.05);
}
.footer-payment {
  text-align: center;
  padding-top: 2rem;
}
.footer-payment .payment-text {
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.footer-payment .payment-methods {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-payment .payment-methods .payment-icon {
  height: 2rem;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.2s ease;
}
.footer-payment .payment-methods .payment-icon:hover {
  opacity: 1;
  filter: grayscale(0%);
}
.footer-contact .contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.footer-contact .contact-item .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(91, 115, 232, 0.1);
  color: #5b73e8;
  flex-shrink: 0;
}
.footer-contact .contact-item .contact-text {
  color: #334155;
  line-height: 1.625;
}
.footer-contact .contact-item .contact-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.footer-contact .contact-item .contact-text a:hover {
  color: #5b73e8;
}
.footer-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
  margin-top: 2rem;
}
.footer-badges .trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
}
.footer-badges .trust-badge .badge-icon {
  font-size: 1.125rem;
  color: #06d6a0;
}
.footer-language .language-selector {
  position: relative;
  display: inline-block;
}
.footer-language .language-selector .language-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
}
.footer-language .language-selector .language-button:hover {
  border-color: #5b73e8;
  color: #0f172a;
}
.footer-language .language-selector .language-button .flag-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 2px;
}
.footer-language .language-selector .language-dropdown {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 0.5rem;
  min-width: 150px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}
.footer-language .language-selector .language-dropdown .language-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  color: #334155;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.footer-language .language-selector .language-dropdown .language-option:hover {
  background: #f8fafc;
  color: #0f172a;
}
.footer-language .language-selector .language-dropdown .language-option.active {
  color: #5b73e8;
  background: rgba(91, 115, 232, 0.1);
}
.footer-language .language-selector:hover .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site-wrapper .site-content {
  flex: 1;
}
@media (prefers-reduced-motion: reduce) {
  .footer-link,
  .social-link,
  .newsletter-button,
  .payment-icon,
  .language-dropdown {
    transition: none;
  }
  .social-link:hover,
  .app-badge img:hover {
    transform: none;
  }
}
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
}
.table-wrapper::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.table-wrapper::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 9999px;
}
.table-wrapper::-webkit-scrollbar-thumb {
  background: #9ca3af;
  border-radius: 9999px;
}
.table-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgb(127.7932960894, 136.7877094972, 152.2067039106);
}
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.table thead {
  background: #f8fafc;
}
.table thead th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  color: #0f172a;
  border-bottom: 2px solid #e2e8f0;
  white-space: nowrap;
}
.table thead th:first-child {
  border-top-left-radius: 0.75rem;
}
.table thead th:last-child {
  border-top-right-radius: 0.75rem;
}
.table tbody tr {
  border-bottom: 1px solid #e2e8f0;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.table tbody tr:last-child {
  border-bottom: none;
}
.table tbody tr:hover {
  background: #f8fafc;
}
.table tbody td {
  padding: 1rem 1.5rem;
  color: #334155;
  vertical-align: middle;
}
.table tfoot {
  background: #f8fafc;
  border-top: 2px solid #e2e8f0;
}
.table tfoot td {
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: #0f172a;
}
.table-striped tbody tr:nth-child(even) {
  background: #f8fafc;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #e2e8f0;
}
.table-compact thead th,
.table-compact tbody td,
.table-compact tfoot td {
  padding: 0.5rem 1rem;
}
.table-spacious thead th,
.table-spacious tbody td,
.table-spacious tfoot td {
  padding: 1.5rem 2rem;
}
.table-borderless thead th,
.table-borderless tbody td {
  border: none;
}
.table-borderless tbody tr {
  border-bottom: none;
}
.table-sortable thead th {
  cursor: pointer;
  user-select: none;
  position: relative;
  padding-right: 3rem;
}
.table-sortable thead th::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #64748b;
  opacity: 0.3;
  transition: all 0.2s ease;
}
.table-sortable thead th:hover::after {
  opacity: 0.6;
}
.table-sortable thead th.sort-asc::after {
  border-top: 4px solid #5b73e8;
  border-bottom: none;
  opacity: 1;
}
.table-sortable thead th.sort-desc::after {
  border-top: none;
  border-bottom: 4px solid #5b73e8;
  opacity: 1;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.table-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
}
.table-actions .action-button {
  padding: 0.25rem 0.5rem;
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  border-radius: 0.25rem;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.table-actions .action-button:hover {
  color: #5b73e8;
  background: rgba(91, 115, 232, 0.1);
}
.table-actions .action-button.action-delete:hover {
  color: #dc3545;
  background: #fee2e2;
}
.table tbody tr.selected {
  background: rgba(91, 115, 232, 0.1);
}
.table tbody tr.selected:hover {
  background: rgba(91, 115, 232, 0.15);
}
.table tbody tr.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.table tbody tr.success {
  background: #d1fae5;
}
.table tbody tr.warning {
  background: #fef3c7;
}
.table tbody tr.error {
  background: #fee2e2;
}
.table-expandable tbody tr.expandable {
  cursor: pointer;
}
.table-expandable tbody tr.expandable td:first-child::before {
  content: "▶";
  display: inline-block;
  margin-right: 0.5rem;
  transition: transform 0.2s ease;
  font-size: 0.75rem;
  color: #64748b;
}
.table-expandable tbody tr.expandable.expanded td:first-child::before {
  transform: rotate(90deg);
}
.table-expandable tbody tr.expanded-content {
  display: none;
}
.table-expandable tbody tr.expanded-content.show {
  display: table-row;
}
.table-expandable tbody tr.expanded-content td {
  padding: 1.5rem;
  background: #f1f5f9;
}
@media (max-width: 767px) {
  .table-card .table-wrapper {
    border: none;
    background: transparent;
  }
  .table-card table {
    display: block;
  }
  .table-card table thead {
    display: none;
  }
  .table-card table tbody,
  .table-card table tr,
  .table-card table td {
    display: block;
  }
  .table-card table tr {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    margin-bottom: 1rem;
    padding: 1.5rem;
  }
  .table-card table tr:hover {
    background: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
  }
  .table-card table td {
    padding: 0.5rem 0;
    border: none;
  }
  .table-card table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: #64748b;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
  }
  .table-card table td:last-child {
    padding-bottom: 0;
  }
}
.datatable-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.datatable-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.datatable-header .datatable-search {
  flex: 1;
  min-width: 250px;
}
.datatable-header .datatable-search input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
}
.datatable-header .datatable-search input:focus {
  outline: none;
  border-color: #5b73e8;
  box-shadow: 0 0 0 3px rgba(91, 115, 232, 0.1);
}
.datatable-header .datatable-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.datatable-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}
.datatable-footer .datatable-info {
  color: #64748b;
  font-size: 0.875rem;
}
.datatable-footer .datatable-pagination {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.datatable-footer .datatable-pagination .page-item .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  color: #334155;
  text-decoration: none;
  transition: all 0.2s ease;
}
.datatable-footer .datatable-pagination .page-item .page-link:hover {
  background: #f8fafc;
  border-color: #5b73e8;
  color: #5b73e8;
}
.datatable-footer .datatable-pagination .page-item.active .page-link {
  background: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
  border-color: #5b73e8;
  color: #ffffff;
}
.datatable-footer .datatable-pagination .page-item.disabled .page-link {
  opacity: 0.5;
  pointer-events: none;
}
.comparison-table .table thead th {
  text-align: center;
  vertical-align: middle;
}
.comparison-table .table thead th:first-child {
  text-align: left;
}
.comparison-table .table tbody td {
  text-align: center;
}
.comparison-table .table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: #0f172a;
  background: #f8fafc;
}
.comparison-table .feature-available {
  color: #06d6a0;
  font-size: 1.125rem;
}
.comparison-table .feature-available::before {
  content: "✓";
}
.comparison-table .feature-unavailable {
  color: #64748b;
  font-size: 1.125rem;
}
.comparison-table .feature-unavailable::before {
  content: "−";
}
.table-loading {
  position: relative;
}
.table-loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}
.table-loading tbody {
  opacity: 0.5;
}
.table-empty tbody tr td {
  padding: 4rem;
  text-align: center;
  color: #64748b;
}
.table-empty tbody tr td .empty-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}
.table-empty tbody tr td .empty-text {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.table-empty tbody tr td .empty-description {
  font-size: 0.875rem;
}
.table-sticky-header thead {
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.table-fixed {
  table-layout: fixed;
}
.table-fixed th,
.table-fixed td {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.table caption {
  padding: 1rem;
  caption-side: top;
  text-align: left;
  font-weight: 600;
  color: #0f172a;
}
@media (prefers-reduced-motion: reduce) {
  .table tbody tr,
  .action-button,
  .page-link {
    transition: none;
  }
  .table-card tr:hover {
    transform: none;
  }
}
.alert, .toast {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  margin-bottom: 1.5rem;
}
.alert .alert-icon, .toast .alert-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.125rem;
}
.alert .alert-content, .toast .alert-content {
  flex: 1;
}
.alert .alert-content .alert-title, .toast .alert-content .alert-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.alert .alert-content .alert-message, .toast .alert-content .alert-message {
  font-size: 0.875rem;
  line-height: 1.625;
}
.alert .alert-content .alert-message p:last-child, .toast .alert-content .alert-message p:last-child {
  margin-bottom: 0;
}
.alert .alert-close, .toast .alert-close {
  flex-shrink: 0;
  padding: 0.25rem;
  background: none;
  border: none;
  color: inherit;
  opacity: 0.6;
  cursor: pointer;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
}
.alert .alert-close:hover, .toast .alert-close:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.05);
}
.alert .alert-close::before, .toast .alert-close::before {
  content: "×";
  font-size: 1.25rem;
  line-height: 1;
}
.alert-success {
  background-color: #d1fae5;
  border-color: #06d6a0;
  color: rgb(3.6, 128.4, 96);
}
.alert-success .alert-icon {
  color: #06d6a0;
}
.alert-info {
  background-color: #dbeafe;
  border-color: #7c87ff;
  color: rgb(74.4, 81, 153);
}
.alert-info .alert-icon {
  color: #7c87ff;
}
.alert-warning {
  background-color: #fef3c7;
  border-color: #ffc107;
  color: rgb(153, 115.8, 4.2);
}
.alert-warning .alert-icon {
  color: #ffc107;
}
.alert-error,
.alert-danger {
  background-color: #fee2e2;
  border-color: #dc3545;
  color: rgb(132, 31.8, 41.4);
}
.alert-error .alert-icon,
.alert-danger .alert-icon {
  color: #dc3545;
}
.alert-primary {
  background-color: rgb(238.6, 241, 252.7);
  border-color: #5b73e8;
  color: rgb(54.6, 69, 139.2);
}
.alert-primary .alert-icon {
  color: #5b73e8;
}
.alert-solid.alert-success {
  background-color: #06d6a0;
  border-color: #06d6a0;
  color: #ffffff;
}
.alert-solid.alert-success .alert-icon {
  color: #ffffff;
}
.alert-solid.alert-success .alert-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.alert-solid.alert-info {
  background-color: #7c87ff;
  border-color: #7c87ff;
  color: #ffffff;
}
.alert-solid.alert-info .alert-icon {
  color: #ffffff;
}
.alert-solid.alert-info .alert-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.alert-solid.alert-warning {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #ffffff;
}
.alert-solid.alert-warning .alert-icon {
  color: #ffffff;
}
.alert-solid.alert-warning .alert-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.alert-solid.alert-error, .alert-solid.alert-danger {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #ffffff;
}
.alert-solid.alert-error .alert-icon, .alert-solid.alert-danger .alert-icon {
  color: #ffffff;
}
.alert-solid.alert-error .alert-close:hover, .alert-solid.alert-danger .alert-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.alert-outline {
  background-color: transparent;
  border-width: 2px;
}
.alert-outline.alert-success {
  border-color: #06d6a0;
  color: #06d6a0;
}
.alert-outline.alert-info {
  border-color: #7c87ff;
  color: #7c87ff;
}
.alert-outline.alert-warning {
  border-color: #ffc107;
  color: #ffc107;
}
.alert-outline.alert-error, .alert-outline.alert-danger {
  border-color: #dc3545;
  color: #dc3545;
}
.alert-accent {
  border-left-width: 4px;
}
.alert-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.alert-actions .alert-action {
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}
.alert-actions .alert-action:hover {
  background: rgba(0, 0, 0, 0.05);
}
.alert-actions .alert-action.primary {
  background: currentColor;
  color: #ffffff;
}
.alert-actions .alert-action.primary:hover {
  filter: brightness(0.9);
}
.toast-container {
  position: fixed;
  z-index: 1080;
  pointer-events: none;
}
.toast-container.toast-top-right {
  top: 1.5rem;
  right: 1.5rem;
}
.toast-container.toast-top-left {
  top: 1.5rem;
  left: 1.5rem;
}
.toast-container.toast-bottom-right {
  bottom: 1.5rem;
  right: 1.5rem;
}
.toast-container.toast-bottom-left {
  bottom: 1.5rem;
  left: 1.5rem;
}
.toast-container.toast-top-center {
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.toast-container.toast-bottom-center {
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.toast {
  pointer-events: auto;
  margin-bottom: 1rem;
  min-width: 300px;
  max-width: 400px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  animation: slide-in 0.3s ease;
}
.toast.toast-exit {
  animation: slide-out 0.3s ease;
}
@media (max-width: 575px) {
  .toast {
    min-width: calc(100vw - 2rem);
  }
}
@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slide-out {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}
.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: currentColor;
  opacity: 0.3;
  animation: progress linear;
}
.toast-progress.duration-3000 {
  animation-duration: 3s;
}
.toast-progress.duration-5000 {
  animation-duration: 5s;
}
.toast-progress.duration-10000 {
  animation-duration: 10s;
}
@keyframes progress {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}
.alert-banner {
  border-radius: 0;
  border-left: none;
  border-right: none;
  margin: 0;
  position: sticky;
  top: 0;
  z-index: 1020;
}
.alert-banner .alert-content {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 992px) {
  .alert-banner .alert-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.alert-banner .alert-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.alert-inline {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.alert-inline .alert-icon {
  width: 1rem;
  height: 1rem;
  font-size: 1rem;
}
.alert-inline .alert-content .alert-message {
  font-size: 0.875rem;
}
.alert-loading .alert-icon {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.alert-dismissing {
  animation: fade-out 0.3s ease;
}
@keyframes fade-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.snackbar {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1080;
  min-width: 300px;
  max-width: 600px;
  padding: 1rem 1.5rem;
  background: #0f172a;
  color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: snackbar-in 0.3s ease;
}
.snackbar.snackbar-exit {
  animation: snackbar-out 0.3s ease;
}
.snackbar .snackbar-message {
  flex: 1;
  font-size: 0.875rem;
}
.snackbar .snackbar-action {
  padding: 0.25rem 1rem;
  background: none;
  border: none;
  color: #5b73e8;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.snackbar .snackbar-action:hover {
  color: rgb(123.8, 143, 236.6);
}
@media (max-width: 575px) {
  .snackbar {
    left: 1rem;
    right: 1rem;
    transform: none;
    min-width: auto;
  }
}
@keyframes snackbar-in {
  from {
    opacity: 0;
    transform: translate(-50%, 100%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes snackbar-out {
  from {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  to {
    opacity: 0;
    transform: translate(-50%, 100%);
  }
}
.notification-dot {
  position: relative;
}
.notification-dot::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0.5rem;
  height: 0.5rem;
  background: #dc3545;
  border: 2px solid #ffffff;
  border-radius: 50%;
}
.notification-dot.notification-dot-success::after {
  background: #06d6a0;
}
.notification-dot.notification-dot-warning::after {
  background: #ffc107;
}
.alert-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.alert-list .alert, .alert-list .toast {
  margin-bottom: 0;
}
.alert-icon[aria-hidden=true] + .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
@media (prefers-reduced-motion: reduce) {
  .toast,
  .snackbar,
  .alert-dismissing {
    animation: none;
  }
  .alert-loading .alert-icon {
    animation: none;
  }
  .toast-progress {
    animation: none;
  }
}
@media (prefers-contrast: high) {
  .alert, .toast {
    border-width: 2px;
  }
}
.dashboard {
  padding: 3rem 0;
}
@media (min-width: 992px) {
  .dashboard {
    padding: 4rem 0;
  }
}
.dashboard-header {
  margin-bottom: 3rem;
}
.dashboard-header .dashboard-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .dashboard-header .dashboard-title {
    font-size: 2.25rem;
  }
}
.dashboard-header .dashboard-subtitle {
  color: #64748b;
  font-size: 1.125rem;
}
.stats-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
@media (min-width: 576px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.welcome-card {
  background: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
  color: #ffffff;
  padding: 3rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.welcome-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}
.welcome-card .welcome-content {
  position: relative;
  z-index: 1;
}
.welcome-card .welcome-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .welcome-card .welcome-title {
    font-size: 1.875rem;
  }
}
.welcome-card .welcome-text {
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
  max-width: 600px;
}
.welcome-card .welcome-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.welcome-card .welcome-actions .btn {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.welcome-card .welcome-actions .btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.welcome-card .welcome-actions .btn {
  /* .btn-white moved to components/_custom-buttons.scss */
}
.quick-actions {
  margin-bottom: 3rem;
}
.quick-actions .section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.quick-actions .actions-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
@media (min-width: 768px) {
  .quick-actions .actions-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
.quick-actions .action-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.quick-actions .action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: #5b73e8;
}
.quick-actions .action-card .action-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
  color: #ffffff;
  font-size: 1.5rem;
}
.quick-actions .action-card .action-label {
  font-weight: 500;
  color: #0f172a;
  font-size: 0.875rem;
}
.dashboard-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .dashboard-grid {
    grid-template-columns: 2fr 1fr;
  }
}
.widget {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}
.widget .widget-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.widget .widget-header .widget-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
}
.widget .widget-header .widget-actions {
  display: flex;
  gap: 0.5rem;
}
.widget .widget-header .widget-actions .widget-action {
  padding: 0.25rem 0.5rem;
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  border-radius: 0.25rem;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.widget .widget-header .widget-actions .widget-action:hover {
  color: #5b73e8;
  background: rgba(91, 115, 232, 0.1);
}
.widget .widget-body {
  padding: 2rem;
}
.spending-overview .spending-chart {
  height: 300px;
  margin-bottom: 1.5rem;
}
.spending-overview .spending-legend {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.spending-overview .spending-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.spending-overview .spending-legend .legend-item .legend-color {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
}
.spending-overview .spending-legend .legend-item .legend-label {
  font-size: 0.875rem;
  color: #64748b;
}
.spending-overview .spending-legend .legend-item .legend-value {
  font-weight: 600;
  color: #0f172a;
  margin-left: auto;
}
.recent-transactions .transaction-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.recent-transactions .transaction-list .transaction-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.recent-transactions .transaction-list .transaction-item:hover {
  background: #f8fafc;
}
.recent-transactions .transaction-list .transaction-item .transaction-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: #5b73e8;
  flex-shrink: 0;
}
.recent-transactions .transaction-list .transaction-item .transaction-details {
  flex: 1;
  min-width: 0;
}
.recent-transactions .transaction-list .transaction-item .transaction-details .transaction-name {
  font-weight: 500;
  color: #0f172a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.recent-transactions .transaction-list .transaction-item .transaction-details .transaction-date {
  font-size: 0.875rem;
  color: #64748b;
}
.recent-transactions .transaction-list .transaction-item .transaction-amount {
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
}
.recent-transactions .transaction-list .transaction-item .transaction-amount.positive {
  color: #06d6a0;
}
.recent-transactions .transaction-list .transaction-item .transaction-amount.negative {
  color: #0f172a;
}
.recent-transactions .view-all-link {
  display: block;
  text-align: center;
  padding: 1rem;
  color: #5b73e8;
  text-decoration: none;
  font-weight: 500;
  border-top: 1px solid #e2e8f0;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.recent-transactions .view-all-link:hover {
  background: #f8fafc;
}
.card-recommendations .recommendation-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.card-recommendations .recommendation-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}
.card-recommendations .recommendation-item:hover {
  border-color: #5b73e8;
  box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.1), 0 3px 6px -1px rgba(0, 0, 0, 0.06);
}
.card-recommendations .recommendation-item .card-image {
  width: 80px;
  height: 50px;
  object-fit: contain;
  border-radius: 0.25rem;
  flex-shrink: 0;
}
.card-recommendations .recommendation-item .card-info {
  flex: 1;
}
.card-recommendations .recommendation-item .card-info .card-name {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
}
.card-recommendations .recommendation-item .card-info .card-highlight {
  font-size: 0.875rem;
  color: #334155;
  margin-bottom: 0.25rem;
}
.card-recommendations .recommendation-item .card-info .card-reward {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: rgb(230.1, 250.9, 245.5);
  color: #06d6a0;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
}
.progress-tracker .progress-item {
  margin-bottom: 2rem;
}
.progress-tracker .progress-item:last-child {
  margin-bottom: 0;
}
.progress-tracker .progress-item .progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.progress-tracker .progress-item .progress-header .progress-label {
  font-weight: 500;
  color: #0f172a;
}
.progress-tracker .progress-item .progress-header .progress-value {
  font-size: 0.875rem;
  color: #64748b;
}
.progress-tracker .progress-item .progress-bar-container {
  height: 8px;
  background: #e5e7eb;
  border-radius: 9999px;
  overflow: hidden;
}
.progress-tracker .progress-item .progress-bar-container .progress-bar {
  height: 100%;
  background: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
  border-radius: 9999px;
  transition: width 0.6s ease;
}
.dashboard-empty {
  text-align: center;
  padding: 6rem 1.5rem;
}
.dashboard-empty .empty-icon {
  font-size: 3.75rem;
  color: #64748b;
  opacity: 0.3;
  margin-bottom: 1.5rem;
}
.dashboard-empty .empty-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}
.dashboard-empty .empty-description {
  color: #334155;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .welcome-card {
    padding: 2rem;
  }
  .welcome-card .welcome-title {
    font-size: 1.25rem;
  }
}
.comparison-container {
  padding: 3rem 0;
}
.comparison-header {
  text-align: center;
  margin-bottom: 4rem;
}
.comparison-header h1, .comparison-header .h1 {
  background: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.comparison-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .comparison-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.comparison-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  cursor: pointer;
}
.comparison-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}
.comparison-card:active {
  transform: translateY(0);
}
.comparison-card {
  position: relative;
}
.comparison-card.selected {
  border-color: #5b73e8;
  box-shadow: 0 10px 25px -3px rgba(91, 115, 232, 0.12), 0 4px 6px -2px rgba(168, 85, 247, 0.15);
}
.comparison-card .card-badge-best {
  position: absolute;
  top: -0.5rem;
  right: 1.5rem;
  padding: 0.25rem 1rem;
  background: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 9999px;
}
.comparison-table-container {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  margin-top: 4rem;
  overflow: hidden;
}
.comparison-sticky-header {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-bottom: 2px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.comparison-sticky-header .card-summary {
  flex: 1;
  text-align: center;
}
.comparison-sticky-header .card-summary .card-name {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
}
.comparison-sticky-header .card-summary .card-network {
  font-size: 0.875rem;
  color: #64748b;
}
.feature-row {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}
.feature-row:hover {
  background: #f8fafc;
}
.feature-row .feature-label {
  width: 200px;
  flex-shrink: 0;
  font-weight: 500;
  color: #0f172a;
}
.feature-row .feature-value {
  flex: 1;
  text-align: center;
  color: #334155;
}
@media (max-width: 767px) {
  .comparison-sticky-header,
  .feature-row {
    flex-direction: column;
  }
  .comparison-sticky-header .feature-label,
  .feature-row .feature-label {
    width: 100%;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
  }
  .comparison-sticky-header .feature-value,
  .feature-row .feature-value {
    padding-top: 0.5rem;
  }
}
.pricing-container {
  padding: 6rem 0;
}
.pricing-header {
  text-align: center;
  margin-bottom: 6rem;
}
.pricing-header h1, .pricing-header .h1 {
  background: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.pricing-header .pricing-subtitle {
  font-size: 1.25rem;
  color: #334155;
  max-width: 600px;
  margin: 0 auto;
}
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}
.pricing-toggle .toggle-label {
  font-weight: 500;
  color: #334155;
}
.pricing-toggle .toggle-label.active {
  color: #0f172a;
}
.pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pricing-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  padding: 3rem;
  text-align: center;
  transition: all 0.2s ease;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.pricing-card.featured {
  background: linear-gradient(135deg, #5b73e8 0%, #a855f7 100%);
  color: #ffffff;
  transform: scale(1.05);
}
.pricing-card.featured .pricing-card-header,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-features li {
  color: #ffffff;
}
.pricing-card.featured .pricing-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.pricing-card .pricing-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(91, 115, 232, 0.1);
  color: #5b73e8;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}
.pricing-card .pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pricing-card .pricing-description {
  color: #64748b;
  margin-bottom: 2rem;
}
.pricing-card .pricing-price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.pricing-card .pricing-price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}
.pricing-card .pricing-price .period {
  font-size: 1.125rem;
  font-weight: 400;
  color: #64748b;
}
.pricing-card .pricing-features {
  list-style: none;
  padding: 0;
  margin: 3rem 0;
  text-align: left;
}
.pricing-card .pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}
.pricing-card .pricing-features li::before {
  content: "✓";
  color: #06d6a0;
  font-weight: 700;
}
.pricing-card .pricing-features li.unavailable {
  opacity: 0.4;
}
.pricing-card .pricing-features li.unavailable::before {
  content: "−";
  color: #64748b;
}
.pricing-faq {
  margin-top: 8rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .pricing-grid .pricing-card.featured {
    transform: scale(1);
  }
}
.analysis-header {
  margin-bottom: 3rem;
}
.analysis-header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .analysis-header .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.analysis-header .header-title h1, .analysis-header .header-title .h1 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.analysis-header .header-title .subtitle {
  color: #64748b;
  font-size: 1rem;
}
.analysis-header .header-actions {
  display: flex;
  gap: 1rem;
}
.date-range-selector {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
}
.date-range-selector .date-preset {
  padding: 0.5rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  background: transparent;
  color: #0f172a;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}
.date-range-selector .date-preset:hover {
  border-color: #5b73e8;
  color: #5b73e8;
}
.date-range-selector .date-preset.active {
  background: #5b73e8;
  color: white;
  border-color: #5b73e8;
}
.date-range-selector .custom-date {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding-left: 1rem;
  border-left: 1px solid #e2e8f0;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.insight-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  padding: 2rem;
}
.insight-card.positive {
  border-left: 4px solid #06d6a0;
}
.insight-card.negative {
  border-left: 4px solid #dc3545;
}
.insight-card.neutral {
  border-left: 4px solid #7c87ff;
}
.insight-card .insight-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.positive .insight-card .insight-icon {
  background: rgba(6, 214, 160, 0.1);
  color: #06d6a0;
}
.negative .insight-card .insight-icon {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}
.neutral .insight-card .insight-icon {
  background: rgba(124, 135, 255, 0.1);
  color: #7c87ff;
}
.insight-card .insight-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.insight-card .insight-description {
  color: #64748b;
  line-height: 1.625;
}
.category-breakdown {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  padding: 3rem;
  margin-bottom: 3rem;
}
.category-breakdown .breakdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.category-breakdown .breakdown-header h2, .category-breakdown .breakdown-header .h2 {
  font-size: 1.5rem;
  font-weight: 600;
}
.category-breakdown .breakdown-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 991px) {
  .category-breakdown .breakdown-content {
    grid-template-columns: 1fr;
  }
}
.category-breakdown .chart-container {
  position: relative;
  height: 320px;
}
.category-breakdown .category-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.category-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: background 0.15s ease;
}
.category-item:hover {
  background: #f8fafc;
}
.category-item .category-color {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  flex-shrink: 0;
}
.category-item .category-info {
  flex: 1;
}
.category-item .category-info .category-name {
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.category-item .category-info .category-subtitle {
  font-size: 0.875rem;
  color: #64748b;
}
.category-item .category-amount {
  text-align: right;
}
.category-item .category-amount .amount {
  font-size: 1.125rem;
  font-weight: 600;
  display: block;
}
.category-item .category-amount .percentage {
  font-size: 0.875rem;
  color: #64748b;
}
.spending-trends {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  padding: 3rem;
  margin-bottom: 3rem;
}
.spending-trends .trends-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.spending-trends .trends-header h2, .spending-trends .trends-header .h2 {
  font-size: 1.5rem;
  font-weight: 600;
}
.spending-trends .trends-header .trend-controls {
  display: flex;
  gap: 0.5rem;
}
.spending-trends .chart-container {
  height: 400px;
  margin-bottom: 2rem;
}
.spending-trends .trend-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}
.spending-trends .trend-stat .stat-label {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.25rem;
}
.spending-trends .trend-stat .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
}
.spending-trends .trend-stat .stat-value.positive {
  color: #06d6a0;
}
.spending-trends .trend-stat .stat-value.negative {
  color: #dc3545;
}
.spending-trends .trend-stat .stat-change {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
  font-size: 0.875rem;
}
.spending-trends .trend-stat .stat-change.up {
  color: #06d6a0;
}
.spending-trends .trend-stat .stat-change.down {
  color: #dc3545;
}
.smart-recommendations {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  padding: 3rem;
}
.smart-recommendations .recommendations-header {
  margin-bottom: 2rem;
}
.smart-recommendations .recommendations-header h2, .smart-recommendations .recommendations-header .h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.smart-recommendations .recommendations-header .subtitle {
  color: #64748b;
}
.smart-recommendations .recommendation-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.recommendation-item {
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  transition: all 0.15s ease;
}
.recommendation-item:hover {
  border-color: #5b73e8;
  box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.1), 0 3px 6px -1px rgba(0, 0, 0, 0.06);
}
.recommendation-item .recommendation-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.recommendation-item .recommendation-header .recommendation-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(91, 115, 232, 0.1);
  color: #5b73e8;
  flex-shrink: 0;
}
.recommendation-item .recommendation-header .recommendation-title {
  flex: 1;
}
.recommendation-item .recommendation-header .recommendation-title h3, .recommendation-item .recommendation-header .recommendation-title .h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.recommendation-item .recommendation-header .recommendation-title .recommendation-type {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: #f8fafc;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
}
.recommendation-item .recommendation-header .potential-savings {
  text-align: right;
}
.recommendation-item .recommendation-header .potential-savings .label {
  font-size: 0.75rem;
  color: #64748b;
  display: block;
  margin-bottom: 0.25rem;
}
.recommendation-item .recommendation-header .potential-savings .amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: #06d6a0;
}
.recommendation-item .recommendation-description {
  color: #334155;
  line-height: 1.625;
  margin-bottom: 1rem;
}
.recommendation-item .recommendation-action {
  display: flex;
  justify-content: flex-end;
}
.filter-panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  padding: 2rem;
  margin-bottom: 2rem;
}
.filter-panel .filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.filter-panel .filter-header h3, .filter-panel .filter-header .h3 {
  font-size: 1.125rem;
  font-weight: 600;
}
.filter-panel .filter-header .clear-filters {
  color: #5b73e8;
  font-size: 0.875rem;
  cursor: pointer;
}
.filter-panel .filter-header .clear-filters:hover {
  text-decoration: underline;
}
.filter-panel .filter-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.filter-panel .filter-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.export-options {
  position: relative;
}
.export-options .export-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  min-width: 200px;
  z-index: 100;
}
.export-options .export-menu .export-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background 0.15s ease;
}
.export-options .export-menu .export-item:hover {
  background: #f8fafc;
}
.export-options .export-menu .export-item:first-child {
  border-radius: 0.5rem 0.5rem 0 0;
}
.export-options .export-menu .export-item:last-child {
  border-radius: 0 0 0.5rem 0.5rem;
}
.optimization-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}
.optimization-header h1, .optimization-header .h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.optimization-header .subtitle {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.625;
}
.optimization-score {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  padding: 4rem;
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #5b73e8 0%, rgb(46.2727272727, 76.8181818182, 225.7272727273) 100%);
  color: white;
}
.optimization-score .score-label {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}
.optimization-score .score-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.optimization-score .score-display .score-value {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
}
.optimization-score .score-display .score-outof {
  font-size: 1.5rem;
  opacity: 0.8;
}
.optimization-score .score-description {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}
.recommendations-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}
.recommendation-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  padding: 3rem;
}
.recommendation-card.high-impact {
  border-left: 4px solid #06d6a0;
}
.recommendation-card.medium-impact {
  border-left: 4px solid #ffc107;
}
.recommendation-card.low-impact {
  border-left: 4px solid #7c87ff;
}
.recommendation-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .recommendation-card .card-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.recommendation-card .header-content {
  flex: 1;
}
.recommendation-card .header-content .impact-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.recommendation-card .header-content .impact-badge.high {
  background: rgba(6, 214, 160, 0.1);
  color: #06d6a0;
}
.recommendation-card .header-content .impact-badge.medium {
  background: rgba(255, 193, 7, 0.1);
  color: #a07800;
}
.recommendation-card .header-content .impact-badge.low {
  background: rgba(124, 135, 255, 0.1);
  color: #7c87ff;
}
.recommendation-card .header-content h2, .recommendation-card .header-content .h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.recommendation-card .header-content .description {
  color: #64748b;
  line-height: 1.625;
}
.recommendation-card .savings-display {
  text-align: right;
}
@media (max-width: 767px) {
  .recommendation-card .savings-display {
    text-align: left;
  }
}
.recommendation-card .savings-display .savings-label {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.25rem;
}
.recommendation-card .savings-display .savings-amount {
  font-size: 1.875rem;
  font-weight: 700;
  color: #06d6a0;
}
.recommendation-card .savings-display .savings-amount .period {
  font-size: 1rem;
  font-weight: 400;
  color: #64748b;
}
.recommendation-card .recommendation-details {
  margin-bottom: 2rem;
}
.recommendation-card .recommendation-details .current-situation {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}
.recommendation-card .recommendation-details .current-situation h3, .recommendation-card .recommendation-details .current-situation .h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.recommendation-card .recommendation-details .current-situation ul {
  list-style: none;
  padding: 0;
}
.recommendation-card .recommendation-details .current-situation ul li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #334155;
}
.recommendation-card .recommendation-details .current-situation ul li::before {
  content: "•";
  color: #64748b;
}
.recommendation-card .suggested-cards .suggested-header {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.recommendation-card .suggested-cards .cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.recommendation-card .card-actions {
  display: flex;
  gap: 1rem;
}
@media (max-width: 575px) {
  .recommendation-card .card-actions {
    flex-direction: column;
  }
}
.suggested-card-item {
  padding: 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  transition: all 0.15s ease;
}
.suggested-card-item:hover {
  border-color: #5b73e8;
  box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.1), 0 3px 6px -1px rgba(0, 0, 0, 0.06);
}
.suggested-card-item .card-visual {
  aspect-ratio: 1.586;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #5b73e8 0%, rgb(30.3181818182, 61.9545454545, 216.1818181818) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}
.suggested-card-item .card-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.suggested-card-item .card-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}
.suggested-card-item .card-highlights li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #334155;
}
.suggested-card-item .card-highlights li .icon {
  color: #06d6a0;
  font-weight: 700;
}
.suggested-card-item .card-cta {
  width: 100%;
}
.comparison-metrics {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  padding: 3rem;
  margin-bottom: 3rem;
}
.comparison-metrics h2, .comparison-metrics .h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.comparison-metrics .metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.comparison-metrics .metric-item .metric-label {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}
.comparison-metrics .metric-item .metric-comparison {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.comparison-metrics .metric-item .metric-comparison .current {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}
.comparison-metrics .metric-item .metric-comparison .arrow {
  color: #64748b;
}
.comparison-metrics .metric-item .metric-comparison .projected {
  font-size: 1.5rem;
  font-weight: 700;
  color: #06d6a0;
}
.comparison-metrics .metric-item .metric-change {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}
.comparison-metrics .metric-item .metric-change.positive {
  color: #06d6a0;
}
.action-steps {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  padding: 3rem;
}
.action-steps h2, .action-steps .h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.action-steps .steps-list {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}
.action-steps .step-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.action-steps .step-item:last-child {
  margin-bottom: 0;
}
.action-steps .step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: #5b73e8;
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.action-steps .step-item .step-content {
  flex: 1;
}
.action-steps .step-item .step-content h3, .action-steps .step-item .step-content .h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.action-steps .step-item .step-content p {
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.625;
}
.action-steps .step-item .step-content .step-action {
  margin-top: 1rem;
}
.optimization-progress {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  padding: 3rem;
  margin-bottom: 3rem;
}
.optimization-progress .progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.optimization-progress .progress-header h2, .optimization-progress .progress-header .h2 {
  font-size: 1.5rem;
  font-weight: 600;
}
.optimization-progress .progress-header .progress-percentage {
  font-size: 1.875rem;
  font-weight: 700;
  color: #5b73e8;
}
.optimization-progress .progress-bar-container {
  height: 1rem;
  background: #f8fafc;
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.optimization-progress .progress-bar-container .progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #5b73e8 0%, rgb(135.7272727273, 153.1818181818, 238.2727272727) 100%);
  border-radius: 9999px;
  transition: width 0.2s ease;
}
.optimization-progress .milestones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.optimization-progress .milestone {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.optimization-progress .milestone .milestone-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.optimization-progress .milestone .milestone-icon.completed {
  background: #06d6a0;
  color: white;
}
.optimization-progress .milestone .milestone-icon.pending {
  background: #f8fafc;
  color: #64748b;
}
.optimization-progress .milestone .milestone-text {
  font-size: 0.875rem;
  color: #334155;
}
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.auth-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  width: 100%;
  max-width: 450px;
  padding: 4rem;
}
.auth-card .auth-logo {
  text-align: center;
  margin-bottom: 3rem;
}
.auth-card .auth-logo img {
  height: 3rem;
  width: auto;
}
.auth-card .auth-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}
.auth-card .auth-subtitle {
  text-align: center;
  color: #64748b;
  margin-bottom: 3rem;
}
.auth-form .form-group {
  margin-bottom: 1.5rem;
}
.auth-form .forgot-password {
  text-align: right;
  margin-top: 0.5rem;
}
.auth-form .forgot-password a {
  font-size: 0.875rem;
  color: #5b73e8;
  text-decoration: none;
}
.auth-form .forgot-password a:hover {
  text-decoration: underline;
}
.auth-form .auth-submit {
  width: 100%;
  margin-top: 2rem;
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
}
.auth-divider::before, .auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}
.auth-divider span {
  color: #64748b;
  font-size: 0.875rem;
}
.social-auth {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.auth-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.875rem;
}
.auth-footer a {
  color: #5b73e8;
  text-decoration: none;
  font-weight: 500;
}
.auth-footer a:hover {
  text-decoration: underline;
}
.verification-code {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 3rem 0;
}
.verification-code input {
  width: 3.5rem;
  height: 3.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 2px solid #cbd5e1;
  border-radius: 0.5rem;
}
.verification-code input:focus {
  outline: none;
  border-color: #5b73e8;
  box-shadow: 0 0 0 3px rgba(91, 115, 232, 0.1);
}
.progress-banner {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.progress-banner .progress {
  border-radius: 4px;
}
.onboarding-card {
  border-radius: 12px;
  overflow: hidden;
}
.onboarding-step {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: linear-gradient(45deg, var(--bs-primary), var(--bs-info));
  color: white;
  font-size: 2.5rem;
}
.security-feature {
  padding: 1rem;
  text-align: center;
  border-radius: 8px;
  background: rgba(25, 135, 84, 0.1);
}
.analysis-checklist {
  list-style: none;
  padding: 0;
}
.analysis-checklist li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}
.analysis-checklist .bi-check-circle-fill {
  color: var(--bs-success);
  margin-right: 0.5rem;
}
.analysis-checklist .spinner-border {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}
.step-circle {
  transition: all 0.3s ease;
}
.step-circle.active {
  transform: scale(1.1);
}
.step-circle.completed {
  animation: checkmark 0.5s ease-in-out;
}
@keyframes checkmark {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.h3.h2-md {
  font-size: 1.5rem;
}
.h6.h5-md {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .h3.h2-md {
    font-size: 2rem;
  }
  .h6.h5-md {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .progress-banner {
    position: sticky;
    top: 0;
    z-index: 1050;
  }
  .progress-banner .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .progress-banner .d-flex.justify-content-between {
    gap: 0.25rem;
  }
  .progress-banner .small {
    font-size: 0.65rem !important;
  }
  .progress-banner .text-center.flex-fill div:last-child {
    font-size: 0.7rem !important;
  }
  .progress-banner .rounded-circle {
    width: 20px !important;
    height: 20px !important;
    font-size: 10px !important;
  }
  .onboarding-step {
    min-height: 300px;
    padding: 1.5rem 1rem;
  }
  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .onboarding-card {
    margin: 0.5rem;
    border-radius: 16px;
  }
  .onboarding-step h2, .onboarding-step .h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .onboarding-step p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .security-feature {
    padding: 0.75rem;
    margin-bottom: 1rem;
  }
  .security-feature h6, .security-feature .h6 {
    font-size: 0.9rem;
  }
  .security-feature small, .security-feature .small {
    font-size: 0.75rem;
  }
}
@media (max-width: 576px) {
  .progress-banner .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .progress-banner h6, .progress-banner .h6 {
    font-size: 0.9rem;
  }
  .progress-banner .text-muted {
    font-size: 0.75rem;
  }
  .onboarding-card {
    margin: 0.25rem;
  }
  .onboarding-step {
    padding: 1rem 0.75rem;
    min-height: 280px;
  }
  .step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .onboarding-step h2, .onboarding-step .h2 {
    font-size: 1.3rem;
  }
  .onboarding-step p {
    font-size: 0.9rem;
  }
  .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
  }
  .btn.w-100 {
    margin-bottom: 0.75rem;
  }
  .security-feature {
    padding: 0.5rem;
  }
  .analysis-checklist li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
  }
}
/* CSS Variables mapped from SCSS design system */
:root {
  --plaid-success: #06d6a0;
  --plaid-primary-blue: #5b73e8;
  --plaid-info-blue: #7c87ff;
  --plaid-warning: #ffc107;
  --plaid-error: #dc3545;
  --plaid-bg-light: #f8fafc;
  --plaid-bg-secondary: #f1f5f9;
  --plaid-text-primary: #0f172a;
  --plaid-text-secondary: #334155;
  --plaid-text-muted: #64748b;
  --plaid-border-light: #e2e8f0;
  --plaid-border-medium: #cbd5e1;
  --plaid-border-gray-50: #f9fafb;
}
.plaid-connection-modal .modal-dialog {
  max-width: 600px;
}
.plaid-connection-modal .modal-content {
  border-radius: 1rem !important;
  overflow: hidden;
}
.plaid-connection-modal .card {
  border-radius: 1rem !important;
  overflow: hidden;
}
.plaid-connection-modal .card-header {
  border-radius: 1rem 1rem 0 0 !important;
}
.plaid-connection-modal .security-feature-box {
  border-color: var(--plaid-border-gray-50) !important;
  border-width: 2px !important;
}
.plaid-connection-modal .plaid-text-success {
  color: var(--plaid-success);
}
.plaid-connection-modal .plaid-text-primary {
  color: var(--plaid-primary-blue);
}
.plaid-connection-modal .plaid-text-info {
  color: var(--plaid-info-blue);
}
.plaid-connection-modal .plaid-text-dark {
  color: var(--plaid-text-primary);
}
.plaid-connection-modal .plaid-text-muted {
  color: var(--plaid-text-muted);
}
.plaid-connection-modal .plaid-bg-light {
  background-color: var(--plaid-bg-light);
}
.plaid-connection-modal .security-info-wrapper {
  background-color: var(--plaid-bg-light) !important;
  border-color: var(--plaid-border-light) !important;
}
.plaid-connection-modal .security-feature i {
  opacity: 0.8;
}
.plaid-connection-modal .bg-primary {
  background: linear-gradient(135deg, var(--plaid-primary-blue) 0%, #a855f7 100%) !important;
}
.plaid-connection-modal .bg-info {
  background: linear-gradient(135deg, var(--plaid-primary-blue) 0%, #a855f7 100%) !important;
}
.plaid-connection-modal .bg-warning {
  background: linear-gradient(135deg, var(--plaid-warning) 0%, #fd7e14 100%) !important;
}
.plaid-connection-modal .bg-success {
  background: linear-gradient(135deg, var(--plaid-success) 0%, #34d399 100%) !important;
}
.plaid-connection-modal .progress {
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}
.plaid-connection-modal .progress-bar {
  transition: width 0.3s ease;
}
@keyframes plaidPulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}
@keyframes plaidBankIcon {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.1) rotate(5deg);
  }
  75% {
    transform: scale(1.1) rotate(-5deg);
  }
}
.plaid-connection-modal .pulse-animation {
  animation: plaidPulse 1.5s ease-in-out infinite;
}
.plaid-connection-modal .bank-icon-animation {
  animation: plaidBankIcon 2s ease-in-out infinite;
}
.plaid-connection-modal .spinner-border {
  width: 1rem;
  height: 1rem;
  border-width: 0.125em;
}
.plaid-connection-modal .badge {
  font-size: 0.75em;
  padding: 0.375em 0.5em;
}
@media (max-width: 768px) {
  .plaid-connection-modal .modal-dialog {
    margin: 1rem;
    max-width: none;
  }
  .plaid-connection-modal .card-header {
    padding: 1.5rem 1rem !important;
  }
  .plaid-connection-modal .card-body {
    padding: 1.5rem !important;
  }
  .plaid-connection-modal .security-feature {
    margin-bottom: 1rem !important;
  }
  .plaid-connection-modal .d-flex.gap-3 {
    flex-direction: column !important;
  }
  .plaid-connection-modal .security-feature-box {
    width: 100% !important;
    flex: 1 1 auto !important;
  }
}
.plaid-connection-modal .alert {
  border: none;
  border-radius: 0.5rem;
}
.plaid-connection-modal .alert-info {
  background-color: rgba(124, 135, 255, 0.1);
  border-left: 4px solid var(--plaid-info-blue);
}
.plaid-connection-modal .alert-warning {
  background-color: rgba(255, 193, 7, 0.1);
  border-left: 4px solid var(--plaid-warning);
}
.plaid-connection-modal .alert-danger {
  background-color: rgba(220, 53, 69, 0.1);
  border-left: 4px solid var(--plaid-error);
}
.plaid-connection-modal .btn {
  border-radius: 0.375rem;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.plaid-connection-modal .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.immersive-charts-modal {
  --chart-bg: #ffffff;
  --chart-border: rgba(0,0,0,0.08);
  --chart-shadow: 0 8px 32px rgba(0,0,0,0.12);
  --chart-text: #1a1a1a;
  --chart-muted: #6b7280;
  --nav-bg: rgba(255,255,255,0.95);
  --nav-border: rgba(0,0,0,0.1);
}
[data-bs-theme=dark] .immersive-charts-modal {
  --chart-bg: #1e293b;
  --chart-border: rgba(255,255,255,0.1);
  --chart-shadow: 0 8px 32px rgba(0,0,0,0.3);
  --chart-text: #f8fafc;
  --chart-muted: #94a3b8;
  --nav-bg: rgba(30, 41, 59, 0.95);
  --nav-border: rgba(255,255,255,0.1);
}
.immersive-charts-modal .modal-content {
  border: none !important;
  border-radius: 0 !important;
  background: var(--chart-bg) !important;
  height: 100vh !important;
  overflow: hidden !important;
}
.immersive-charts-modal .modal-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1050 !important;
  backdrop-filter: blur(20px) saturate(1.2) !important;
  background: var(--nav-bg) !important;
  border-bottom: 1px solid var(--nav-border) !important;
  padding: 1rem 1.5rem !important;
  min-height: 80px !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
}
.immersive-charts-modal .modal-body {
  padding: 0 !important;
  height: calc(100vh - 160px) !important;
  overflow: hidden !important;
  background: var(--chart-bg) !important;
  position: relative !important;
}
.immersive-charts-modal .modal-footer {
  position: sticky !important;
  bottom: 0 !important;
  z-index: 1050 !important;
  backdrop-filter: blur(20px) saturate(1.2) !important;
  background: var(--nav-bg) !important;
  border-top: 1px solid var(--nav-border) !important;
  padding: 1rem 1.5rem !important;
  min-height: 80px !important;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.08) !important;
}
.immersive-chart-container {
  height: 100% !important;
  width: 100% !important;
  background: var(--chart-bg) !important;
  border-radius: 0.75rem !important;
  box-shadow: var(--chart-shadow) !important;
  overflow: hidden !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
}
.immersive-chart-wrapper {
  flex: 1 !important;
  width: 100% !important;
  padding: 2rem !important;
  background: var(--chart-bg) !important;
  overflow: auto !important;
  position: relative !important;
}
.immersive-chart-title {
  color: var(--chart-text) !important;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  margin-bottom: 0.5rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
}
.immersive-chart-description {
  color: var(--chart-muted) !important;
  font-size: 1rem !important;
  margin-bottom: 2rem !important;
  line-height: 1.5 !important;
}
.immersive-chart-wrapper .recharts-wrapper {
  background: var(--chart-bg) !important;
  border-radius: 0.5rem !important;
  border: 1px solid var(--chart-border) !important;
  padding: 1rem !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}
.immersive-chart-wrapper .recharts-text {
  fill: var(--chart-text) !important;
  font-family: "Inter", sans-serif !important;
  font-weight: 500 !important;
}
.immersive-chart-wrapper .recharts-cartesian-axis-tick text {
  fill: var(--chart-muted) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
}
.immersive-chart-wrapper .recharts-label {
  fill: var(--chart-text) !important;
  font-weight: 600 !important;
}
.immersive-chart-nav-dots {
  background: var(--nav-bg) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid var(--nav-border) !important;
  border-radius: 2rem !important;
  padding: 0.75rem 1.5rem !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}
.immersive-chart-nav-dot {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: none !important;
  cursor: pointer !important;
}
.immersive-chart-nav-dot.active {
  background: var(--primary-blue) !important;
  transform: scale(1.2) !important;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3) !important;
}
.immersive-chart-nav-dot:not(.active) {
  background: var(--chart-muted) !important;
  opacity: 0.5 !important;
}
.immersive-chart-nav-dot:not(.active):hover {
  opacity: 0.8 !important;
  transform: scale(1.1) !important;
}
.immersive-chart-nav-arrow {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: var(--nav-bg) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid var(--nav-border) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--chart-text) !important;
  font-size: 1.25rem !important;
}
.immersive-chart-nav-arrow:hover {
  transform: scale(1.05) !important;
  background: var(--primary-blue) !important;
  color: white !important;
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.3) !important;
}
.immersive-chart-nav-arrow:active {
  transform: scale(0.95) !important;
}
.immersive-chart-footer-nav {
  display: flex !important;
  gap: 0.5rem !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
}
.immersive-chart-footer-btn {
  padding: 0.75rem 1.25rem !important;
  border-radius: 0.75rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  font-weight: 500 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  border: 1px solid var(--nav-border) !important;
  background: var(--chart-bg) !important;
  color: var(--chart-text) !important;
}
.immersive-chart-footer-btn.active {
  background: var(--primary-blue) !important;
  color: white !important;
  border-color: var(--primary-blue) !important;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3) !important;
}
.immersive-chart-footer-btn:not(.active):hover {
  background: var(--nav-bg) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}
@media (max-width: 768px) {
  .immersive-charts-modal .modal-header {
    padding: 0.75rem 1rem !important;
    min-height: 70px !important;
  }
  .immersive-charts-modal .modal-footer {
    padding: 0.75rem 1rem !important;
    min-height: 70px !important;
  }
  .immersive-charts-modal .modal-body {
    height: calc(100vh - 140px) !important;
  }
  .immersive-chart-wrapper {
    padding: 1rem !important;
  }
  .immersive-chart-title {
    font-size: 1.25rem !important;
  }
  .immersive-chart-description {
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem !important;
  }
  .immersive-chart-nav-arrow {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.1rem !important;
  }
  .immersive-chart-footer-btn {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.85rem !important;
  }
  .immersive-chart-nav-dots {
    padding: 0.5rem 1rem !important;
  }
}
.immersive-swipe-hint {
  background: var(--chart-text) !important;
  color: var(--chart-bg) !important;
  border-radius: 2rem !important;
  padding: 0.5rem 1rem !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  opacity: 0.8 !important;
  backdrop-filter: blur(5px) !important;
  border: 1px solid var(--nav-border) !important;
}
.immersive-chart-loading {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  color: var(--chart-muted) !important;
  font-size: 1.1rem !important;
  gap: 1rem !important;
}
.immersive-chart-loading .spinner-border {
  color: var(--primary-blue) !important;
}
.immersive-chart-wrapper .recharts-tooltip-wrapper {
  border-radius: 0.75rem !important;
  overflow: hidden !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
  backdrop-filter: blur(10px) !important;
}
.immersive-chart-wrapper .recharts-default-tooltip {
  background: var(--nav-bg) !important;
  border: 1px solid var(--nav-border) !important;
  border-radius: 0.75rem !important;
  padding: 1rem !important;
}
.immersive-chart-enter {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}
.immersive-chart-enter-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.immersive-chart-exit {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.immersive-chart-exit-active {
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.immersive-chart-nav-dot:focus,
.immersive-chart-nav-arrow:focus,
.immersive-chart-footer-btn:focus {
  outline: 2px solid var(--primary-blue) !important;
  outline-offset: 2px !important;
}
.immersive-chart-wrapper .recharts-responsive-container {
  min-height: 400px !important;
}
@media (max-width: 576px) {
  .immersive-chart-wrapper .recharts-responsive-container {
    min-height: 300px !important;
  }
}
.chart-fullscreen-trigger {
  position: relative !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%) !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.chart-fullscreen-trigger::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}
.chart-fullscreen-trigger:hover::before {
  left: 100%;
}
.chart-fullscreen-trigger:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
}
.chart-fullscreen-trigger:active {
  transform: translateY(0) !important;
}
.floating-chart-btn {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%) !important;
  border: none !important;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  backdrop-filter: blur(10px) !important;
}
.floating-chart-btn:hover {
  transform: scale(1.05) translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5) !important;
}
.floating-chart-btn:active {
  transform: scale(0.95) !important;
}
.floating-chart-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: inherit;
  animation: chart-pulse 2s infinite;
  opacity: 0;
  z-index: -1;
}
@keyframes chart-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
@media (min-width: 1400px) {
  .immersive-chart-wrapper {
    padding: 3rem !important;
  }
  .immersive-chart-title {
    font-size: 1.75rem !important;
  }
  .immersive-chart-description {
    font-size: 1.1rem !important;
  }
}
@media (max-width: 375px) {
  .immersive-charts-modal .modal-header,
  .immersive-charts-modal .modal-footer {
    padding: 0.5rem !important;
    min-height: 60px !important;
  }
  .immersive-charts-modal .modal-body {
    height: calc(100vh - 120px) !important;
  }
  .immersive-chart-wrapper {
    padding: 0.75rem !important;
  }
  .immersive-chart-nav-arrow {
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem !important;
  }
  .immersive-chart-footer-btn {
    padding: 0.375rem 0.5rem !important;
    font-size: 0.8rem !important;
  }
}
@media print {
  .immersive-charts-modal .modal-header,
  .immersive-charts-modal .modal-footer,
  .immersive-chart-nav-dots,
  .immersive-chart-nav-arrow,
  .immersive-swipe-hint {
    display: none !important;
  }
  .immersive-charts-modal .modal-body {
    height: auto !important;
    overflow: visible !important;
  }
  .immersive-chart-container {
    box-shadow: none !important;
    border: 1px solid #000 !important;
  }
}
:root,
[data-theme=light] {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-inverse: #ffffff;
  --border-primary: #e2e8f0;
  --border-secondary: #cbd5e1;
  --border-focus: #5b73e8;
  --card-bg: #ffffff;
  --modal-bg: #ffffff;
  --navbar-bg: #ffffff;
  --footer-bg: #f8fafc;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 12px -2px rgba(0, 0, 0, 0.1), 0 3px 6px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --hover-bg: rgba(91, 115, 232, 0.05);
  --active-bg: rgba(91, 115, 232, 0.1);
  --status-success: #06d6a0;
  --status-warning: #ffc107;
  --status-error: #dc3545;
  --status-info: #7c87ff;
}
[data-theme=light] {
  color-scheme: light;
}
[data-theme=light] .card {
  background: var(--card-bg);
  box-shadow: var(--shadow-sm);
}
[data-theme=light] .navbar {
  background: var(--navbar-bg);
  border-bottom: 1px solid var(--border-primary);
}
[data-theme=light] .footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border-primary);
}
[data-theme=light] input,
[data-theme=light] textarea,
[data-theme=light] select {
  background: var(--bg-primary);
  border-color: var(--border-primary);
  color: var(--text-primary);
}
[data-theme=light] input:focus,
[data-theme=light] textarea:focus,
[data-theme=light] select:focus {
  border-color: var(--border-focus);
}
[data-theme=light] input::placeholder,
[data-theme=light] textarea::placeholder,
[data-theme=light] select::placeholder {
  color: var(--text-muted);
}
[data-theme=light] table thead {
  background: var(--bg-secondary);
}
[data-theme=light] table tbody tr:hover {
  background: var(--hover-bg);
}
[data-theme=light] code {
  background: var(--bg-secondary);
  color: var(--text-primary);
}
[data-theme=light] pre {
  background: var(--bg-secondary);
  border: 1px solid var(--border-primary);
}
[data-theme=light] .btn.btn-outline-primary .text-white, [data-theme=light] .btn.btn-outline-secondary .text-white, [data-theme=light] .btn.btn-outline-success .text-white, [data-theme=light] .btn.btn-outline-danger .text-white, [data-theme=light] .btn.btn-outline-warning .text-white, [data-theme=light] .btn.btn-outline-info .text-white, [data-theme=light] .btn.btn-outline-light .text-white, [data-theme=light] .btn.btn-light .text-white {
  color: inherit;
}
[data-theme=light] .btn.btn-outline-primary small.text-white, [data-theme=light] .btn.btn-outline-primary .text-white.small, [data-theme=light] .btn.btn-outline-secondary small.text-white, [data-theme=light] .btn.btn-outline-secondary .text-white.small, [data-theme=light] .btn.btn-outline-success small.text-white, [data-theme=light] .btn.btn-outline-success .text-white.small, [data-theme=light] .btn.btn-outline-danger small.text-white, [data-theme=light] .btn.btn-outline-danger .text-white.small, [data-theme=light] .btn.btn-outline-warning small.text-white, [data-theme=light] .btn.btn-outline-warning .text-white.small, [data-theme=light] .btn.btn-outline-info small.text-white, [data-theme=light] .btn.btn-outline-info .text-white.small, [data-theme=light] .btn.btn-outline-light small.text-white, [data-theme=light] .btn.btn-outline-light .text-white.small, [data-theme=light] .btn.btn-light small.text-white, [data-theme=light] .btn.btn-light .text-white.small {
  color: inherit;
}
[data-theme=light] .btn.btn-outline-primary:hover .text-white, [data-theme=light] .btn.btn-outline-primary:active .text-white, [data-theme=light] .btn.btn-outline-primary.active .text-white, [data-theme=light] .btn.btn-outline-primary:focus .text-white, [data-theme=light] .btn.btn-outline-secondary:hover .text-white, [data-theme=light] .btn.btn-outline-secondary:active .text-white, [data-theme=light] .btn.btn-outline-secondary.active .text-white, [data-theme=light] .btn.btn-outline-secondary:focus .text-white, [data-theme=light] .btn.btn-outline-success:hover .text-white, [data-theme=light] .btn.btn-outline-success:active .text-white, [data-theme=light] .btn.btn-outline-success.active .text-white, [data-theme=light] .btn.btn-outline-success:focus .text-white, [data-theme=light] .btn.btn-outline-danger:hover .text-white, [data-theme=light] .btn.btn-outline-danger:active .text-white, [data-theme=light] .btn.btn-outline-danger.active .text-white, [data-theme=light] .btn.btn-outline-danger:focus .text-white, [data-theme=light] .btn.btn-outline-warning:hover .text-white, [data-theme=light] .btn.btn-outline-warning:active .text-white, [data-theme=light] .btn.btn-outline-warning.active .text-white, [data-theme=light] .btn.btn-outline-warning:focus .text-white, [data-theme=light] .btn.btn-outline-info:hover .text-white, [data-theme=light] .btn.btn-outline-info:active .text-white, [data-theme=light] .btn.btn-outline-info.active .text-white, [data-theme=light] .btn.btn-outline-info:focus .text-white, [data-theme=light] .btn.btn-outline-light:hover .text-white, [data-theme=light] .btn.btn-outline-light:active .text-white, [data-theme=light] .btn.btn-outline-light.active .text-white, [data-theme=light] .btn.btn-outline-light:focus .text-white, [data-theme=light] .btn.btn-light:hover .text-white, [data-theme=light] .btn.btn-light:active .text-white, [data-theme=light] .btn.btn-light.active .text-white, [data-theme=light] .btn.btn-light:focus .text-white {
  color: inherit;
}
[data-theme=light] .btn.btn-outline-primary:hover small.text-white, [data-theme=light] .btn.btn-outline-primary:hover .text-white.small, [data-theme=light] .btn.btn-outline-primary:active small.text-white, [data-theme=light] .btn.btn-outline-primary:active .text-white.small, [data-theme=light] .btn.btn-outline-primary.active small.text-white, [data-theme=light] .btn.btn-outline-primary.active .text-white.small, [data-theme=light] .btn.btn-outline-primary:focus small.text-white, [data-theme=light] .btn.btn-outline-primary:focus .text-white.small, [data-theme=light] .btn.btn-outline-secondary:hover small.text-white, [data-theme=light] .btn.btn-outline-secondary:hover .text-white.small, [data-theme=light] .btn.btn-outline-secondary:active small.text-white, [data-theme=light] .btn.btn-outline-secondary:active .text-white.small, [data-theme=light] .btn.btn-outline-secondary.active small.text-white, [data-theme=light] .btn.btn-outline-secondary.active .text-white.small, [data-theme=light] .btn.btn-outline-secondary:focus small.text-white, [data-theme=light] .btn.btn-outline-secondary:focus .text-white.small, [data-theme=light] .btn.btn-outline-success:hover small.text-white, [data-theme=light] .btn.btn-outline-success:hover .text-white.small, [data-theme=light] .btn.btn-outline-success:active small.text-white, [data-theme=light] .btn.btn-outline-success:active .text-white.small, [data-theme=light] .btn.btn-outline-success.active small.text-white, [data-theme=light] .btn.btn-outline-success.active .text-white.small, [data-theme=light] .btn.btn-outline-success:focus small.text-white, [data-theme=light] .btn.btn-outline-success:focus .text-white.small, [data-theme=light] .btn.btn-outline-danger:hover small.text-white, [data-theme=light] .btn.btn-outline-danger:hover .text-white.small, [data-theme=light] .btn.btn-outline-danger:active small.text-white, [data-theme=light] .btn.btn-outline-danger:active .text-white.small, [data-theme=light] .btn.btn-outline-danger.active small.text-white, [data-theme=light] .btn.btn-outline-danger.active .text-white.small, [data-theme=light] .btn.btn-outline-danger:focus small.text-white, [data-theme=light] .btn.btn-outline-danger:focus .text-white.small, [data-theme=light] .btn.btn-outline-warning:hover small.text-white, [data-theme=light] .btn.btn-outline-warning:hover .text-white.small, [data-theme=light] .btn.btn-outline-warning:active small.text-white, [data-theme=light] .btn.btn-outline-warning:active .text-white.small, [data-theme=light] .btn.btn-outline-warning.active small.text-white, [data-theme=light] .btn.btn-outline-warning.active .text-white.small, [data-theme=light] .btn.btn-outline-warning:focus small.text-white, [data-theme=light] .btn.btn-outline-warning:focus .text-white.small, [data-theme=light] .btn.btn-outline-info:hover small.text-white, [data-theme=light] .btn.btn-outline-info:hover .text-white.small, [data-theme=light] .btn.btn-outline-info:active small.text-white, [data-theme=light] .btn.btn-outline-info:active .text-white.small, [data-theme=light] .btn.btn-outline-info.active small.text-white, [data-theme=light] .btn.btn-outline-info.active .text-white.small, [data-theme=light] .btn.btn-outline-info:focus small.text-white, [data-theme=light] .btn.btn-outline-info:focus .text-white.small, [data-theme=light] .btn.btn-outline-light:hover small.text-white, [data-theme=light] .btn.btn-outline-light:hover .text-white.small, [data-theme=light] .btn.btn-outline-light:active small.text-white, [data-theme=light] .btn.btn-outline-light:active .text-white.small, [data-theme=light] .btn.btn-outline-light.active small.text-white, [data-theme=light] .btn.btn-outline-light.active .text-white.small, [data-theme=light] .btn.btn-outline-light:focus small.text-white, [data-theme=light] .btn.btn-outline-light:focus .text-white.small, [data-theme=light] .btn.btn-light:hover small.text-white, [data-theme=light] .btn.btn-light:hover .text-white.small, [data-theme=light] .btn.btn-light:active small.text-white, [data-theme=light] .btn.btn-light:active .text-white.small, [data-theme=light] .btn.btn-light.active small.text-white, [data-theme=light] .btn.btn-light.active .text-white.small, [data-theme=light] .btn.btn-light:focus small.text-white, [data-theme=light] .btn.btn-light:focus .text-white.small {
  color: inherit;
}
[data-theme=accessibility],
[data-theme=high-contrast] {
  color-scheme: light;
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f5;
  --bg-tertiary: #e5e5e5;
  --text-primary: #000000;
  --text-secondary: #1a1a1a;
  --text-muted: #4d4d4d;
  --text-inverse: #ffffff;
  --border-primary: #000000;
  --border-secondary: #333333;
  --border-focus: #0000ff;
  --status-success: #006600;
  --status-warning: #cc6600;
  --status-error: #cc0000;
  --status-info: #0066cc;
  --hover-bg: #e5e5e5;
  --active-bg: #cccccc;
  --card-bg: #ffffff;
  --modal-bg: #ffffff;
  --navbar-bg: #ffffff;
  --footer-bg: #f5f5f5;
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  --shadow-xl: none;
}
[data-theme=accessibility] body,
[data-theme=high-contrast] body {
  background: var(--bg-primary);
  color: var(--text-primary);
}
[data-theme=accessibility] *:focus,
[data-theme=high-contrast] *:focus {
  outline: 4px solid var(--border-focus) !important;
  outline-offset: 2px !important;
}
[data-theme=accessibility] .btn,
[data-theme=high-contrast] .btn {
  border: 2px solid var(--border-primary) !important;
  font-weight: 700;
}
[data-theme=accessibility] .btn.btn-primary,
[data-theme=high-contrast] .btn.btn-primary {
  background: #0000ff !important;
  color: #ffffff !important;
  border-color: #0000ff !important;
}
[data-theme=accessibility] .btn.btn-primary:hover,
[data-theme=high-contrast] .btn.btn-primary:hover {
  background: #0000cc !important;
}
[data-theme=accessibility] .btn.btn-primary:focus,
[data-theme=high-contrast] .btn.btn-primary:focus {
  outline: 4px solid #ffff00 !important;
  outline-offset: 2px !important;
}
[data-theme=accessibility] .btn.btn-secondary,
[data-theme=high-contrast] .btn.btn-secondary {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #000000 !important;
}
[data-theme=accessibility] .btn.btn-secondary:hover,
[data-theme=high-contrast] .btn.btn-secondary:hover {
  background: #e5e5e5 !important;
}
[data-theme=accessibility] .btn.btn-success,
[data-theme=high-contrast] .btn.btn-success {
  background: #006600 !important;
  color: #ffffff !important;
  border-color: #006600 !important;
}
[data-theme=accessibility] .btn.btn-danger, [data-theme=accessibility] .btn.btn-error,
[data-theme=high-contrast] .btn.btn-danger,
[data-theme=high-contrast] .btn.btn-error {
  background: #cc0000 !important;
  color: #ffffff !important;
  border-color: #cc0000 !important;
}
[data-theme=accessibility] a,
[data-theme=high-contrast] a {
  color: #0000ff;
  text-decoration: underline;
  font-weight: 500;
}
[data-theme=accessibility] a:hover,
[data-theme=high-contrast] a:hover {
  color: #0000cc;
  text-decoration-thickness: 2px;
}
[data-theme=accessibility] a:focus,
[data-theme=high-contrast] a:focus {
  outline: 4px solid #ffff00 !important;
  outline-offset: 2px !important;
}
[data-theme=accessibility] .card,
[data-theme=high-contrast] .card {
  background: var(--card-bg);
  border: 2px solid var(--border-primary) !important;
  box-shadow: none !important;
}
[data-theme=accessibility] input,
[data-theme=accessibility] textarea,
[data-theme=accessibility] select,
[data-theme=high-contrast] input,
[data-theme=high-contrast] textarea,
[data-theme=high-contrast] select {
  background: var(--bg-primary);
  border: 2px solid var(--border-primary) !important;
  color: var(--text-primary);
  font-weight: 500;
}
[data-theme=accessibility] input:focus,
[data-theme=accessibility] textarea:focus,
[data-theme=accessibility] select:focus,
[data-theme=high-contrast] input:focus,
[data-theme=high-contrast] textarea:focus,
[data-theme=high-contrast] select:focus {
  border-color: var(--border-focus) !important;
  outline: 4px solid #ffff00 !important;
  outline-offset: 2px !important;
}
[data-theme=accessibility] input::placeholder,
[data-theme=accessibility] textarea::placeholder,
[data-theme=accessibility] select::placeholder,
[data-theme=high-contrast] input::placeholder,
[data-theme=high-contrast] textarea::placeholder,
[data-theme=high-contrast] select::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}
[data-theme=accessibility] input:disabled,
[data-theme=accessibility] textarea:disabled,
[data-theme=accessibility] select:disabled,
[data-theme=high-contrast] input:disabled,
[data-theme=high-contrast] textarea:disabled,
[data-theme=high-contrast] select:disabled {
  background: #cccccc;
  color: #666666;
  border-color: #666666 !important;
}
[data-theme=accessibility] input[type=checkbox],
[data-theme=accessibility] input[type=radio],
[data-theme=high-contrast] input[type=checkbox],
[data-theme=high-contrast] input[type=radio] {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid var(--border-primary) !important;
}
[data-theme=accessibility] input[type=checkbox]:checked,
[data-theme=accessibility] input[type=radio]:checked,
[data-theme=high-contrast] input[type=checkbox]:checked,
[data-theme=high-contrast] input[type=radio]:checked {
  background: #0000ff;
  border-color: #0000ff !important;
}
[data-theme=accessibility] table,
[data-theme=high-contrast] table {
  border: 2px solid var(--border-primary);
}
[data-theme=accessibility] table thead,
[data-theme=high-contrast] table thead {
  background: var(--bg-secondary);
  border-bottom: 2px solid var(--border-primary);
}
[data-theme=accessibility] table thead th,
[data-theme=high-contrast] table thead th {
  font-weight: 700;
  border: 1px solid var(--border-primary);
}
[data-theme=accessibility] table tbody tr,
[data-theme=high-contrast] table tbody tr {
  border-bottom: 1px solid var(--border-primary);
}
[data-theme=accessibility] table tbody tr td,
[data-theme=high-contrast] table tbody tr td {
  border: 1px solid var(--border-primary);
}
[data-theme=accessibility] table tbody tr:hover,
[data-theme=high-contrast] table tbody tr:hover {
  background: var(--hover-bg);
}
[data-theme=accessibility] .alert,
[data-theme=high-contrast] .alert {
  border: 2px solid var(--border-primary) !important;
  font-weight: 500;
}
[data-theme=accessibility] .alert.alert-success,
[data-theme=high-contrast] .alert.alert-success {
  background: #e6ffe6 !important;
  color: var(--status-success) !important;
  border-color: var(--status-success) !important;
}
[data-theme=accessibility] .alert.alert-warning,
[data-theme=high-contrast] .alert.alert-warning {
  background: #fff5e6 !important;
  color: var(--status-warning) !important;
  border-color: var(--status-warning) !important;
}
[data-theme=accessibility] .alert.alert-error,
[data-theme=high-contrast] .alert.alert-error {
  background: #ffe6e6 !important;
  color: var(--status-error) !important;
  border-color: var(--status-error) !important;
}
[data-theme=accessibility] .alert.alert-info,
[data-theme=high-contrast] .alert.alert-info {
  background: #e6f2ff !important;
  color: var(--status-info) !important;
  border-color: var(--status-info) !important;
}
[data-theme=accessibility] .badge,
[data-theme=high-contrast] .badge {
  border: 1px solid var(--border-primary) !important;
  font-weight: 700;
}
[data-theme=accessibility] .modal .modal-content,
[data-theme=high-contrast] .modal .modal-content {
  background: var(--modal-bg);
  border: 3px solid var(--border-primary) !important;
}
[data-theme=accessibility] .modal .modal-header,
[data-theme=high-contrast] .modal .modal-header {
  border-bottom: 2px solid var(--border-primary);
}
[data-theme=accessibility] .modal .modal-footer,
[data-theme=high-contrast] .modal .modal-footer {
  border-top: 2px solid var(--border-primary);
}
[data-theme=accessibility] .navbar,
[data-theme=high-contrast] .navbar {
  background: var(--navbar-bg);
  border-bottom: 3px solid var(--border-primary);
}
[data-theme=accessibility] .footer,
[data-theme=high-contrast] .footer {
  background: var(--footer-bg);
  border-top: 3px solid var(--border-primary);
}
[data-theme=accessibility] .dropdown-menu,
[data-theme=high-contrast] .dropdown-menu {
  background: var(--bg-primary);
  border: 2px solid var(--border-primary) !important;
}
[data-theme=accessibility] .dropdown-menu .dropdown-item,
[data-theme=high-contrast] .dropdown-menu .dropdown-item {
  color: var(--text-primary);
  font-weight: 500;
}
[data-theme=accessibility] .dropdown-menu .dropdown-item:hover,
[data-theme=high-contrast] .dropdown-menu .dropdown-item:hover {
  background: var(--hover-bg);
  color: var(--text-primary);
}
[data-theme=accessibility] .dropdown-menu .dropdown-item:focus,
[data-theme=high-contrast] .dropdown-menu .dropdown-item:focus {
  outline: 2px solid var(--border-focus) !important;
  outline-offset: -2px !important;
}
[data-theme=accessibility] *,
[data-theme=high-contrast] * {
  transition: none !important;
  animation: none !important;
}
[data-theme=accessibility] *,
[data-theme=high-contrast] * {
  background-image: none !important;
}
[data-theme=accessibility] .form-switch .form-check-input,
[data-theme=high-contrast] .form-switch .form-check-input {
  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='white'/%3e%3c/svg%3e") !important;
}
[data-theme=accessibility] .form-switch .form-check-input:checked,
[data-theme=high-contrast] .form-switch .form-check-input:checked {
  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='white'/%3e%3c/svg%3e") !important;
}
[data-theme=accessibility] h1, [data-theme=accessibility] .h1, [data-theme=accessibility] h2, [data-theme=accessibility] .h2, [data-theme=accessibility] h3, [data-theme=accessibility] .h3, [data-theme=accessibility] h4, [data-theme=accessibility] .h4, [data-theme=accessibility] h5, [data-theme=accessibility] .h5, [data-theme=accessibility] h6, [data-theme=accessibility] .h6,
[data-theme=high-contrast] h1,
[data-theme=high-contrast] .h1,
[data-theme=high-contrast] h2,
[data-theme=high-contrast] .h2,
[data-theme=high-contrast] h3,
[data-theme=high-contrast] .h3,
[data-theme=high-contrast] h4,
[data-theme=high-contrast] .h4,
[data-theme=high-contrast] h5,
[data-theme=high-contrast] .h5,
[data-theme=high-contrast] h6,
[data-theme=high-contrast] .h6 {
  color: var(--text-primary);
  font-weight: 700;
}
[data-theme=accessibility] p, [data-theme=accessibility] span, [data-theme=accessibility] div,
[data-theme=high-contrast] p,
[data-theme=high-contrast] span,
[data-theme=high-contrast] div {
  color: var(--text-primary);
}
[data-theme=accessibility] .skip-to-content,
[data-theme=high-contrast] .skip-to-content {
  position: fixed;
  top: 0;
  left: 0;
  background: #ffff00;
  color: #000000;
  padding: 1rem 1.5rem;
  font-weight: 700;
  text-decoration: underline;
  z-index: 9999;
  border: 3px solid #000000;
}
[data-theme=accessibility] .skip-to-content:focus,
[data-theme=high-contrast] .skip-to-content:focus {
  outline: 4px solid #ff0000 !important;
}
[data-theme=accessibility] .skeleton,
[data-theme=high-contrast] .skeleton {
  background: repeating-linear-gradient(90deg, #cccccc 0%, #e5e5e5 50%, #cccccc 100%);
}
[data-theme=accessibility] svg,
[data-theme=accessibility] i,
[data-theme=accessibility] .icon,
[data-theme=high-contrast] svg,
[data-theme=high-contrast] i,
[data-theme=high-contrast] .icon {
  color: var(--text-primary);
  stroke: var(--text-primary);
  fill: var(--text-primary);
}
/*!
 * Bootstrap  v5.3.8 (https://getbootstrap.com/)
 * Copyright 2011-2025 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root,
[data-bs-theme=light] {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #4b5563;
  --bs-gray-dark: #1f2937;
  --bs-gray-100: #f3f4f6;
  --bs-gray-200: #e5e7eb;
  --bs-gray-300: #d1d5db;
  --bs-gray-400: #9ca3af;
  --bs-gray-500: #6b7280;
  --bs-gray-600: #4b5563;
  --bs-gray-700: #374151;
  --bs-gray-800: #1f2937;
  --bs-gray-900: #111827;
  --bs-primary: #0d6efd;
  --bs-secondary: #4b5563;
  --bs-success: #06d6a0;
  --bs-info: #7c87ff;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f3f4f6;
  --bs-dark: #111827;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 75, 85, 99;
  --bs-success-rgb: 6, 214, 160;
  --bs-info-rgb: 124, 135, 255;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 243, 244, 246;
  --bs-dark-rgb: 17, 24, 39;
  --bs-primary-text-emphasis: rgb(5.2, 44, 101.2);
  --bs-secondary-text-emphasis: rgb(30, 34, 39.6);
  --bs-success-text-emphasis: rgb(2.4, 85.6, 64);
  --bs-info-text-emphasis: rgb(49.6, 54, 102);
  --bs-warning-text-emphasis: rgb(102, 77.2, 2.8);
  --bs-danger-text-emphasis: rgb(88, 21.2, 27.6);
  --bs-light-text-emphasis: #374151;
  --bs-dark-text-emphasis: #374151;
  --bs-primary-bg-subtle: rgb(206.6, 226, 254.6);
  --bs-secondary-bg-subtle: rgb(219, 221, 223.8);
  --bs-success-bg-subtle: rgb(205.2, 246.8, 236);
  --bs-info-bg-subtle: rgb(228.8, 231, 255);
  --bs-warning-bg-subtle: rgb(255, 242.6, 205.4);
  --bs-danger-bg-subtle: rgb(248, 214.6, 217.8);
  --bs-light-bg-subtle: rgb(249, 249.5, 250.5);
  --bs-dark-bg-subtle: #9ca3af;
  --bs-primary-border-subtle: rgb(158.2, 197, 254.2);
  --bs-secondary-border-subtle: rgb(183, 187, 192.6);
  --bs-success-border-subtle: rgb(155.4, 238.6, 217);
  --bs-info-border-subtle: rgb(202.6, 207, 255);
  --bs-warning-border-subtle: rgb(255, 230.2, 155.8);
  --bs-danger-border-subtle: rgb(241, 174.2, 180.6);
  --bs-light-border-subtle: #e5e7eb;
  --bs-dark-border-subtle: #6b7280;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #111827;
  --bs-body-color-rgb: 17, 24, 39;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(17, 24, 39, 0.75);
  --bs-secondary-color-rgb: 17, 24, 39;
  --bs-secondary-bg: #e5e7eb;
  --bs-secondary-bg-rgb: 229, 231, 235;
  --bs-tertiary-color: rgba(17, 24, 39, 0.5);
  --bs-tertiary-color-rgb: 17, 24, 39;
  --bs-tertiary-bg: #f3f4f6;
  --bs-tertiary-bg-rgb: 243, 244, 246;
  --bs-heading-color: inherit;
  --bs-link-color: #0d6efd;
  --bs-link-color-rgb: 13, 110, 253;
  --bs-link-decoration: underline;
  --bs-link-hover-color: rgb(10.4, 88, 202.4);
  --bs-link-hover-color-rgb: 10, 88, 202;
  --bs-code-color: #d63384;
  --bs-highlight-color: #111827;
  --bs-highlight-bg: rgb(255, 242.6, 205.4);
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #d1d5db;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
  --bs-form-valid-color: #06d6a0;
  --bs-form-valid-border-color: #06d6a0;
  --bs-form-invalid-color: #dc3545;
  --bs-form-invalid-border-color: #dc3545;
}
[data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #d1d5db;
  --bs-body-color-rgb: 209, 213, 219;
  --bs-body-bg: #111827;
  --bs-body-bg-rgb: 17, 24, 39;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(209, 213, 219, 0.75);
  --bs-secondary-color-rgb: 209, 213, 219;
  --bs-secondary-bg: #1f2937;
  --bs-secondary-bg-rgb: 31, 41, 55;
  --bs-tertiary-color: rgba(209, 213, 219, 0.5);
  --bs-tertiary-color-rgb: 209, 213, 219;
  --bs-tertiary-bg: rgb(24, 32.5, 47);
  --bs-tertiary-bg-rgb: 24, 33, 47;
  --bs-primary-text-emphasis: rgb(109.8, 168, 253.8);
  --bs-secondary-text-emphasis: rgb(147, 153, 161.4);
  --bs-success-text-emphasis: rgb(105.6, 230.4, 198);
  --bs-info-text-emphasis: rgb(176.4, 183, 255);
  --bs-warning-text-emphasis: rgb(255, 217.8, 106.2);
  --bs-danger-text-emphasis: rgb(234, 133.8, 143.4);
  --bs-light-text-emphasis: #f3f4f6;
  --bs-dark-text-emphasis: #d1d5db;
  --bs-primary-bg-subtle: rgb(2.6, 22, 50.6);
  --bs-secondary-bg-subtle: rgb(15, 17, 19.8);
  --bs-success-bg-subtle: rgb(1.2, 42.8, 32);
  --bs-info-bg-subtle: rgb(24.8, 27, 51);
  --bs-warning-bg-subtle: rgb(51, 38.6, 1.4);
  --bs-danger-bg-subtle: rgb(44, 10.6, 13.8);
  --bs-light-bg-subtle: #1f2937;
  --bs-dark-bg-subtle: rgb(15.5, 20.5, 27.5);
  --bs-primary-border-subtle: rgb(7.8, 66, 151.8);
  --bs-secondary-border-subtle: rgb(45, 51, 59.4);
  --bs-success-border-subtle: rgb(3.6, 128.4, 96);
  --bs-info-border-subtle: rgb(74.4, 81, 153);
  --bs-warning-border-subtle: rgb(153, 115.8, 4.2);
  --bs-danger-border-subtle: rgb(132, 31.8, 41.4);
  --bs-light-border-subtle: #374151;
  --bs-dark-border-subtle: #1f2937;
  --bs-heading-color: inherit;
  --bs-link-color: rgb(109.8, 168, 253.8);
  --bs-link-hover-color: rgb(138.84, 185.4, 254.04);
  --bs-link-color-rgb: 110, 168, 254;
  --bs-link-hover-color-rgb: 139, 185, 254;
  --bs-code-color: rgb(230.4, 132.6, 181.2);
  --bs-highlight-color: #d1d5db;
  --bs-highlight-bg: rgb(102, 77.2, 2.8);
  --bs-border-color: #374151;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: rgb(117, 183, 152.4);
  --bs-form-valid-border-color: rgb(117, 183, 152.4);
  --bs-form-invalid-color: rgb(234, 133.8, 143.4);
  --bs-form-invalid-border-color: rgb(234, 133.8, 143.4);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) 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;
  color: var(--bs-heading-color);
}
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;
  color: var(--bs-highlight-color);
  background-color: var(--bs-highlight-bg);
}
sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}
a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}
pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}
code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}
kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}
figure {
  margin: 0 0 1rem;
}
img,
svg {
  vertical-align: middle;
}
table {
  caption-side: bottom;
  border-collapse: collapse;
}
caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-secondary-color);
  text-align: left;
}
th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}
thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
label {
  display: inline-block;
}
button {
  border-radius: 0;
}
button:focus:not(:focus-visible) {
  outline: 0;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button,
select {
  text-transform: none;
}
[role=button] {
  cursor: pointer;
}
select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}
[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}
::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
textarea {
  resize: vertical;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  line-height: inherit;
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}
::-webkit-inner-spin-button {
  height: auto;
}
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type=search]::-webkit-search-cancel-button {
  cursor: pointer;
  filter: grayscale(1);
}
/* 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-weight: 300;
  line-height: 1.2;
  font-size: calc(1.625rem + 4.5vw);
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}
.display-2 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}
.display-3 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.525rem + 3.3vw);
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}
.display-4 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.475rem + 2.7vw);
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}
.display-5 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.425rem + 2.1vw);
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}
.display-6 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
}
.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}
.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}
.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}
.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #4b5563;
}
.blockquote-footer::before {
  content: "— ";
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.img-thumbnail {
  padding: 0.25rem;
  background-color: var(--bs-body-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-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: var(--bs-secondary-color);
}
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
.col {
  flex: 1 0 0;
}
.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}
.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}
.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.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.66666667%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}
.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
.offset-1 {
  margin-left: 8.33333333%;
}
.offset-2 {
  margin-left: 16.66666667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.33333333%;
}
.offset-5 {
  margin-left: 41.66666667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.33333333%;
}
.offset-8 {
  margin-left: 66.66666667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.33333333%;
}
.offset-11 {
  margin-left: 91.66666667%;
}
.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}
.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}
.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}
.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}
.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}
.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}
.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}
@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.33333333%;
  }
  .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.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@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.33333333%;
  }
  .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.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@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.33333333%;
  }
  .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.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@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.33333333%;
  }
  .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.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@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.33333333%;
  }
  .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.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: var(--bs-emphasis-color);
  --bs-table-bg: var(--bs-body-bg);
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
  --bs-table-active-color: var(--bs-emphasis-color);
  --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
  --bs-table-hover-color: var(--bs-emphasis-color);
  --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}
.table-group-divider {
  border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
}
.caption-top {
  caption-side: top;
}
.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}
.table-bordered > :not(caption) > * {
  border-width: var(--bs-border-width) 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 var(--bs-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) > * {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}
.table-striped-columns > :not(caption) > tr > :nth-child(even) {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}
.table-active {
  --bs-table-color-state: var(--bs-table-active-color);
  --bs-table-bg-state: var(--bs-table-active-bg);
}
.table-hover > tbody > tr:hover > * {
  --bs-table-color-state: var(--bs-table-hover-color);
  --bs-table-bg-state: var(--bs-table-hover-bg);
}
.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: rgb(206.6, 226, 254.6);
  --bs-table-border-color: rgb(165.28, 180.8, 203.68);
  --bs-table-striped-bg: rgb(196.27, 214.7, 241.87);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(185.94, 203.4, 229.14);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(191.105, 209.05, 235.505);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: rgb(219, 221, 223.8);
  --bs-table-border-color: rgb(175.2, 176.8, 179.04);
  --bs-table-striped-bg: rgb(208.05, 209.95, 212.61);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(197.1, 198.9, 201.42);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(202.575, 204.425, 207.015);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-success {
  --bs-table-color: #000;
  --bs-table-bg: rgb(205.2, 246.8, 236);
  --bs-table-border-color: rgb(164.16, 197.44, 188.8);
  --bs-table-striped-bg: rgb(194.94, 234.46, 224.2);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(184.68, 222.12, 212.4);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(189.81, 228.29, 218.3);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-info {
  --bs-table-color: #000;
  --bs-table-bg: rgb(228.8, 231, 255);
  --bs-table-border-color: rgb(183.04, 184.8, 204);
  --bs-table-striped-bg: rgb(217.36, 219.45, 242.25);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(205.92, 207.9, 229.5);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(211.64, 213.675, 235.875);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-warning {
  --bs-table-color: #000;
  --bs-table-bg: rgb(255, 242.6, 205.4);
  --bs-table-border-color: rgb(204, 194.08, 164.32);
  --bs-table-striped-bg: rgb(242.25, 230.47, 195.13);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(229.5, 218.34, 184.86);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(235.875, 224.405, 189.995);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-danger {
  --bs-table-color: #000;
  --bs-table-bg: rgb(248, 214.6, 217.8);
  --bs-table-border-color: rgb(198.4, 171.68, 174.24);
  --bs-table-striped-bg: rgb(235.6, 203.87, 206.91);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(223.2, 193.14, 196.02);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(229.4, 198.505, 201.465);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #f3f4f6;
  --bs-table-border-color: rgb(194.4, 195.2, 196.8);
  --bs-table-striped-bg: rgb(230.85, 231.8, 233.7);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(218.7, 219.6, 221.4);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(224.775, 225.7, 227.55);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #111827;
  --bs-table-border-color: rgb(64.6, 70.2, 82.2);
  --bs-table-striped-bg: rgb(28.9, 35.55, 49.8);
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: rgb(40.8, 47.1, 60.6);
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: rgb(34.85, 41.325, 55.2);
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}
.col-form-label {
  padding-top: calc(0.375rem + var(--bs-border-width));
  padding-bottom: calc(0.375rem + var(--bs-border-width));
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}
.col-form-label-lg {
  padding-top: calc(0.5rem + var(--bs-border-width));
  padding-bottom: calc(0.5rem + var(--bs-border-width));
  font-size: 1.25rem;
}
.col-form-label-sm {
  padding-top: calc(0.25rem + var(--bs-border-width));
  padding-bottom: calc(0.25rem + var(--bs-border-width));
  font-size: 0.875rem;
}
.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-secondary-color);
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-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] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-webkit-date-and-time-value {
  min-width: 85px;
  height: 1.5em;
  margin: 0;
}
.form-control::-webkit-datetime-edit {
  display: block;
  padding: 0;
}
.form-control::placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control:disabled {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: var(--bs-body-color);
  background-color: var(--bs-tertiary-bg);
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: var(--bs-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(--bs-secondary-bg);
}
.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: transparent;
  border: solid transparent;
  border-width: var(--bs-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 {
  min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}
.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}
textarea.form-control {
  min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}
.form-control-color {
  width: 3rem;
  height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}
.form-control-color::-webkit-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}
.form-control-color.form-control-sm {
  height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}
.form-control-color.form-control-lg {
  height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}
.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231f2937' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-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:focus {
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: var(--bs-secondary-bg);
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--bs-body-color);
}
.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}
.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}
[data-bs-theme=dark] .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23d1d5db' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}
.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}
.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}
.form-check-input {
  --bs-form-check-bg: var(--bs-body-bg);
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  appearance: none;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--bs-border-width) solid var(--bs-border-color);
  print-color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: rgb(134, 182.5, 254);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-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] {
  --bs-form-check-bg-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: #0d6efd;
  border-color: #0d6efd;
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}
.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  --bs-form-switch-bg: 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");
  width: 2em;
  margin-left: -2.5em;
  background-image: var(--bs-form-switch-bg);
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28134, 182.5, 254%29'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0;
}
.form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0;
}
.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}
.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}
[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e");
}
.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  appearance: none;
  background-color: transparent;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  appearance: none;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: rgb(182.4, 211.5, 254.4);
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  appearance: none;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: rgb(182.4, 211.5, 254.4);
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: var(--bs-secondary-color);
}
.form-range:disabled::-moz-range-thumb {
  background-color: var(--bs-secondary-color);
}
.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  max-width: 100%;
  height: 100%;
  padding: 1rem 0.75rem;
  overflow: hidden;
  color: rgba(var(--bs-body-color-rgb), 0.65);
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: var(--bs-border-width) solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::placeholder,
.form-floating > .form-control-plaintext::placeholder {
  color: transparent;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
  padding-left: 0.75rem;
}
.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 {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > textarea:focus ~ label::after,
.form-floating > textarea:not(:placeholder-shown) ~ label::after {
  position: absolute;
  inset: 1rem 0.375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
}
.form-floating > textarea:disabled ~ label::after {
  background-color: var(--bs-secondary-bg);
}
.form-floating > .form-control-plaintext ~ label {
  border-width: var(--bs-border-width) 0;
}
.form-floating > :disabled ~ label,
.form-floating > .form-control:disabled ~ label {
  color: #4b5563;
}
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select,
.input-group > .form-floating {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus,
.input-group > .form-floating:focus-within {
  z-index: 5;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 5;
}
.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-tertiary-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}
.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}
.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}
.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}
.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: calc(-1 * var(--bs-border-width));
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .form-floating:not(:first-child) > .form-control,
.input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-valid-color);
}
.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--bs-success);
  border-radius: var(--bs-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 {
  border-color: var(--bs-form-valid-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='%2306d6a0' 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.1'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}
.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
.was-validated .form-select:valid, .form-select.is-valid {
  border-color: var(--bs-form-valid-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"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2306d6a0' 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.1'/%3e%3c/svg%3e");
  padding-right: 4.125rem;
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}
.was-validated .form-control-color:valid, .form-control-color.is-valid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}
.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: var(--bs-form-valid-border-color);
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: var(--bs-form-valid-color);
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: var(--bs-form-valid-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 {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-invalid-color);
}
.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--bs-danger);
  border-radius: var(--bs-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 {
  border-color: var(--bs-form-invalid-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 {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}
.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: var(--bs-form-invalid-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"] {
  --bs-form-select-bg-icon: 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");
  padding-right: 4.125rem;
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}
.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}
.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: var(--bs-form-invalid-color);
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: var(--bs-form-invalid-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 {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.btn-check + .btn:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}
.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}
.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked:focus-visible + .btn {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(11.05, 93.5, 215.05);
  --bs-btn-hover-border-color: rgb(10.4, 88, 202.4);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(10.4, 88, 202.4);
  --bs-btn-active-border-color: rgb(9.75, 82.5, 189.75);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}
.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #4b5563;
  --bs-btn-border-color: #4b5563;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(63.75, 72.25, 84.15);
  --bs-btn-hover-border-color: rgb(60, 68, 79.2);
  --bs-btn-focus-shadow-rgb: 102, 111, 122;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(60, 68, 79.2);
  --bs-btn-active-border-color: rgb(56.25, 63.75, 74.25);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #4b5563;
  --bs-btn-disabled-border-color: #4b5563;
}
.btn-success {
  --bs-btn-color: #000;
  --bs-btn-bg: #06d6a0;
  --bs-btn-border-color: #06d6a0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(43.35, 220.15, 174.25);
  --bs-btn-hover-border-color: rgb(30.9, 218.1, 169.5);
  --bs-btn-focus-shadow-rgb: 5, 182, 136;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(55.8, 222.2, 179);
  --bs-btn-active-border-color: rgb(30.9, 218.1, 169.5);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #06d6a0;
  --bs-btn-disabled-border-color: #06d6a0;
}
.btn-info {
  --bs-btn-color: #000;
  --bs-btn-bg: #7c87ff;
  --bs-btn-border-color: #7c87ff;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(143.65, 153, 255);
  --bs-btn-hover-border-color: rgb(137.1, 147, 255);
  --bs-btn-focus-shadow-rgb: 105, 115, 217;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(150.2, 159, 255);
  --bs-btn-active-border-color: rgb(137.1, 147, 255);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #7c87ff;
  --bs-btn-disabled-border-color: #7c87ff;
}
.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(255, 202.3, 44.2);
  --bs-btn-hover-border-color: rgb(255, 199.2, 31.8);
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(255, 205.4, 56.6);
  --bs-btn-active-border-color: rgb(255, 199.2, 31.8);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107;
}
.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(187, 45.05, 58.65);
  --bs-btn-hover-border-color: rgb(176, 42.4, 55.2);
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(176, 42.4, 55.2);
  --bs-btn-active-border-color: rgb(165, 39.75, 51.75);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #dc3545;
  --bs-btn-disabled-border-color: #dc3545;
}
.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #f3f4f6;
  --bs-btn-border-color: #f3f4f6;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(206.55, 207.4, 209.1);
  --bs-btn-hover-border-color: rgb(194.4, 195.2, 196.8);
  --bs-btn-focus-shadow-rgb: 207, 207, 209;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(194.4, 195.2, 196.8);
  --bs-btn-active-border-color: rgb(182.25, 183, 184.5);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f3f4f6;
  --bs-btn-disabled-border-color: #f3f4f6;
}
.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #111827;
  --bs-btn-border-color: #111827;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(52.7, 58.65, 71.4);
  --bs-btn-hover-border-color: rgb(40.8, 47.1, 60.6);
  --bs-btn-focus-shadow-rgb: 53, 59, 71;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(64.6, 70.2, 82.2);
  --bs-btn-active-border-color: rgb(40.8, 47.1, 60.6);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #111827;
  --bs-btn-disabled-border-color: #111827;
}
.btn-outline-primary {
  --bs-btn-color: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0d6efd;
  --bs-btn-hover-border-color: #0d6efd;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0d6efd;
  --bs-btn-active-border-color: #0d6efd;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0d6efd;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0d6efd;
  --bs-gradient: none;
}
.btn-outline-secondary {
  --bs-btn-color: #4b5563;
  --bs-btn-border-color: #4b5563;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #4b5563;
  --bs-btn-hover-border-color: #4b5563;
  --bs-btn-focus-shadow-rgb: 75, 85, 99;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #4b5563;
  --bs-btn-active-border-color: #4b5563;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #4b5563;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #4b5563;
  --bs-gradient: none;
}
.btn-outline-success {
  --bs-btn-color: #06d6a0;
  --bs-btn-border-color: #06d6a0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #06d6a0;
  --bs-btn-hover-border-color: #06d6a0;
  --bs-btn-focus-shadow-rgb: 6, 214, 160;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #06d6a0;
  --bs-btn-active-border-color: #06d6a0;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #06d6a0;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #06d6a0;
  --bs-gradient: none;
}
.btn-outline-info {
  --bs-btn-color: #7c87ff;
  --bs-btn-border-color: #7c87ff;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #7c87ff;
  --bs-btn-hover-border-color: #7c87ff;
  --bs-btn-focus-shadow-rgb: 124, 135, 255;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #7c87ff;
  --bs-btn-active-border-color: #7c87ff;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #7c87ff;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #7c87ff;
  --bs-gradient: none;
}
.btn-outline-warning {
  --bs-btn-color: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffc107;
  --bs-btn-hover-border-color: #ffc107;
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffc107;
  --bs-btn-active-border-color: #ffc107;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffc107;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ffc107;
  --bs-gradient: none;
}
.btn-outline-danger {
  --bs-btn-color: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #dc3545;
  --bs-btn-hover-border-color: #dc3545;
  --bs-btn-focus-shadow-rgb: 220, 53, 69;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #dc3545;
  --bs-btn-active-border-color: #dc3545;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #dc3545;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #dc3545;
  --bs-gradient: none;
}
.btn-outline-light {
  --bs-btn-color: #f3f4f6;
  --bs-btn-border-color: #f3f4f6;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f3f4f6;
  --bs-btn-hover-border-color: #f3f4f6;
  --bs-btn-focus-shadow-rgb: 243, 244, 246;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f3f4f6;
  --bs-btn-active-border-color: #f3f4f6;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f3f4f6;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f3f4f6;
  --bs-gradient: none;
}
.btn-outline-dark {
  --bs-btn-color: #111827;
  --bs-btn-border-color: #111827;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #111827;
  --bs-btn-hover-border-color: #111827;
  --bs-btn-focus-shadow-rgb: 17, 24, 39;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #111827;
  --bs-btn-active-border-color: #111827;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #111827;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #111827;
  --bs-gradient: none;
}
.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #4b5563;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: 0 0 0 #000;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  text-decoration: underline;
}
.btn-link:focus-visible {
  color: var(--bs-btn-color);
}
.btn-link:hover {
  color: var(--bs-btn-hover-color);
}
.btn-lg, .btn-group-lg > .btn {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: var(--bs-border-radius-lg);
}
.btn-sm, .btn-group-sm > .btn {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}
.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}
.collapse:not(.show) {
  display: none;
}
.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}
.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  position: relative;
}
.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: var(--bs-body-color);
  --bs-dropdown-bg: var(--bs-body-bg);
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: var(--bs-border-radius);
  --bs-dropdown-border-width: var(--bs-border-width);
  --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: var(--bs-box-shadow);
  --bs-dropdown-link-color: var(--bs-body-color);
  --bs-dropdown-link-hover-color: var(--bs-body-color);
  --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #4b5563;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}
.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}
.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}
@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer);
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}
.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer);
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}
.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
}
.dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
}
.dropdown-menu-dark {
  --bs-dropdown-color: #d1d5db;
  --bs-dropdown-bg: #1f2937;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #d1d5db;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: #6b7280;
  --bs-dropdown-header-color: #6b7280;
}
.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: var(--bs-border-radius);
}
.btn-group > :not(.btn-check:first-child) + .btn,
.btn-group > .btn-group:not(:first-child) {
  margin-left: calc(-1 * var(--bs-border-width));
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn.dropdown-toggle-split:first-child,
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}
.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}
.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: calc(-1 * var(--bs-border-width));
}
.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:nth-child(n+3),
.btn-group-vertical > :not(.btn-check) + .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  background: none;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--bs-nav-link-hover-color);
}
.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.nav-link.disabled, .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}
.nav-tabs {
  --bs-nav-tabs-border-width: var(--bs-border-width);
  --bs-nav-tabs-border-color: var(--bs-border-color);
  --bs-nav-tabs-border-radius: var(--bs-border-radius);
  --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}
.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}
.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #0d6efd;
}
.nav-pills .nav-link {
  border-radius: var(--bs-nav-pills-border-radius);
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}
.nav-underline {
  --bs-nav-underline-gap: 1rem;
  --bs-nav-underline-border-width: 0.125rem;
  --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  gap: var(--bs-nav-underline-gap);
}
.nav-underline .nav-link {
  padding-right: 0;
  padding-left: 0;
  border-bottom: var(--bs-nav-underline-border-width) solid transparent;
}
.nav-underline .nav-link:hover, .nav-underline .nav-link:focus {
  border-bottom-color: currentcolor;
}
.nav-underline .nav-link.active,
.nav-underline .show > .nav-link {
  font-weight: 700;
  color: var(--bs-nav-underline-link-active-color);
  border-bottom-color: currentcolor;
}
.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}
.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-grow: 1;
  flex-basis: 0;
  text-align: center;
}
.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2817, 24, 39, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  --bs-navbar-toggler-border-radius: var(--bs-border-radius);
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
}
.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--bs-navbar-active-color);
}
.navbar-nav .dropdown-menu {
  position: static;
}
.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}
.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}
.navbar-collapse {
  flex-grow: 1;
  flex-basis: 100%;
  align-items: center;
}
.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .offcanvas {
  position: static;
  z-index: auto;
  flex-grow: 1;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  background-color: transparent !important;
  border: 0 !important;
  transform: none !important;
  transition: none;
}
.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}
.navbar-dark,
.navbar[data-bs-theme=dark] {
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  --bs-navbar-active-color: #fff;
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: #fff;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
[data-bs-theme=dark] .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-title-color: ;
  --bs-card-subtitle-color: ;
  --bs-card-border-width: var(--bs-border-width);
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: var(--bs-border-radius);
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: #ffffff;
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}
.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}
.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
  color: var(--bs-card-title-color);
}
.card-subtitle {
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0;
  color: var(--bs-card-subtitle-color);
}
.card-text:last-child {
  margin-bottom: 0;
}
.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x);
}
.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}
.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}
.card-header-tabs {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0;
}
.card-header-tabs .nav-link.active {
  background-color: var(--bs-card-bg);
  border-bottom-color: var(--bs-card-bg);
}
.card-header-pills {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
}
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius);
}
.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}
.card-img,
.card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}
.card-img,
.card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
.card-group > .card {
  margin-bottom: var(--bs-card-group-margin);
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) > .card-img-top,
  .card-group > .card:not(:last-child) > .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) > .card-img-bottom,
  .card-group > .card:not(:last-child) > .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) > .card-img-top,
  .card-group > .card:not(:first-child) > .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) > .card-img-bottom,
  .card-group > .card:not(:first-child) > .card-footer {
    border-bottom-left-radius: 0;
  }
}
.accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: var(--bs-border-width);
  --bs-accordion-border-radius: var(--bs-border-radius);
  --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23111827' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgb%285.2, 44, 101.2%29' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}
.accordion-header {
  margin-bottom: 0;
}
.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}
.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:last-of-type > .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}
.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}
.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-collapse,
.accordion-flush > .accordion-item > .accordion-header .accordion-button,
.accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  border-radius: 0;
}
[data-bs-theme=dark] .accordion-button::after {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.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-.708'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.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-.708'/%3e%3c/svg%3e");
}
.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 1rem;
  --bs-breadcrumb-bg: ;
  --bs-breadcrumb-border-radius: ;
  --bs-breadcrumb-divider-color: var(--bs-secondary-color);
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  list-style: none;
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius);
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color);
}
.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-width: var(--bs-border-width);
  --bs-pagination-border-color: var(--bs-border-color);
  --bs-pagination-border-radius: var(--bs-border-radius);
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  --bs-pagination-hover-border-color: var(--bs-border-color);
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: var(--bs-secondary-bg);
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #0d6efd;
  --bs-pagination-active-border-color: #0d6efd;
  --bs-pagination-disabled-color: var(--bs-secondary-color);
  --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  display: flex;
  padding-left: 0;
  list-style: none;
}
.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: var(--bs-pagination-hover-color);
  background-color: var(--bs-pagination-hover-bg);
  border-color: var(--bs-pagination-hover-border-color);
}
.page-link:focus {
  z-index: 3;
  color: var(--bs-pagination-focus-color);
  background-color: var(--bs-pagination-focus-bg);
  outline: 0;
  box-shadow: var(--bs-pagination-focus-box-shadow);
}
.page-link.active, .active > .page-link {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: var(--bs-pagination-active-bg);
  border-color: var(--bs-pagination-active-border-color);
}
.page-link.disabled, .disabled > .page-link {
  color: var(--bs-pagination-disabled-color);
  pointer-events: none;
  background-color: var(--bs-pagination-disabled-bg);
  border-color: var(--bs-pagination-disabled-border-color);
}
.page-item:not(:first-child) .page-link {
  margin-left: calc(-1 * var(--bs-border-width));
}
.page-item:first-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}
.page-item:last-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}
.pagination-lg {
  --bs-pagination-padding-x: 1.5rem;
  --bs-pagination-padding-y: 0.75rem;
  --bs-pagination-font-size: 1.25rem;
  --bs-pagination-border-radius: var(--bs-border-radius-lg);
}
.pagination-sm {
  --bs-pagination-padding-x: 0.5rem;
  --bs-pagination-padding-y: 0.25rem;
  --bs-pagination-font-size: 0.875rem;
  --bs-pagination-border-radius: var(--bs-border-radius-sm);
}
.badge {
  --bs-badge-padding-x: 0.65em;
  --bs-badge-padding-y: 0.35em;
  --bs-badge-font-size: 0.75em;
  --bs-badge-font-weight: 700;
  --bs-badge-color: #fff;
  --bs-badge-border-radius: var(--bs-border-radius);
  display: inline-block;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  line-height: 1;
  color: var(--bs-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: 1rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
  --bs-alert-border-radius: var(--bs-border-radius);
  --bs-alert-link-color: inherit;
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
}
.alert-heading {
  color: inherit;
}
.alert-link {
  font-weight: 700;
  color: var(--bs-alert-link-color);
}
.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}
.alert-primary {
  --bs-alert-color: var(--bs-primary-text-emphasis);
  --bs-alert-bg: var(--bs-primary-bg-subtle);
  --bs-alert-border-color: var(--bs-primary-border-subtle);
  --bs-alert-link-color: var(--bs-primary-text-emphasis);
}
.alert-secondary {
  --bs-alert-color: var(--bs-secondary-text-emphasis);
  --bs-alert-bg: var(--bs-secondary-bg-subtle);
  --bs-alert-border-color: var(--bs-secondary-border-subtle);
  --bs-alert-link-color: var(--bs-secondary-text-emphasis);
}
.alert-success {
  --bs-alert-color: var(--bs-success-text-emphasis);
  --bs-alert-bg: var(--bs-success-bg-subtle);
  --bs-alert-border-color: var(--bs-success-border-subtle);
  --bs-alert-link-color: var(--bs-success-text-emphasis);
}
.alert-info {
  --bs-alert-color: var(--bs-info-text-emphasis);
  --bs-alert-bg: var(--bs-info-bg-subtle);
  --bs-alert-border-color: var(--bs-info-border-subtle);
  --bs-alert-link-color: var(--bs-info-text-emphasis);
}
.alert-warning {
  --bs-alert-color: var(--bs-warning-text-emphasis);
  --bs-alert-bg: var(--bs-warning-bg-subtle);
  --bs-alert-border-color: var(--bs-warning-border-subtle);
  --bs-alert-link-color: var(--bs-warning-text-emphasis);
}
.alert-danger {
  --bs-alert-color: var(--bs-danger-text-emphasis);
  --bs-alert-bg: var(--bs-danger-bg-subtle);
  --bs-alert-border-color: var(--bs-danger-border-subtle);
  --bs-alert-link-color: var(--bs-danger-text-emphasis);
}
.alert-light {
  --bs-alert-color: var(--bs-light-text-emphasis);
  --bs-alert-bg: var(--bs-light-bg-subtle);
  --bs-alert-border-color: var(--bs-light-border-subtle);
  --bs-alert-link-color: var(--bs-light-text-emphasis);
}
.alert-dark {
  --bs-alert-color: var(--bs-dark-text-emphasis);
  --bs-alert-bg: var(--bs-dark-bg-subtle);
  --bs-alert-border-color: var(--bs-dark-border-subtle);
  --bs-alert-link-color: var(--bs-dark-text-emphasis);
}
@keyframes progress-bar-stripes {
  0% {
    background-position-x: var(--bs-progress-height);
  }
}
.progress,
.progress-stacked {
  --bs-progress-height: 1rem;
  --bs-progress-font-size: 0.75rem;
  --bs-progress-bg: var(--bs-secondary-bg);
  --bs-progress-border-radius: var(--bs-border-radius);
  --bs-progress-box-shadow: var(--bs-box-shadow-inset);
  --bs-progress-bar-color: #fff;
  --bs-progress-bar-bg: #0d6efd;
  --bs-progress-bar-transition: width 0.6s ease;
  display: flex;
  height: var(--bs-progress-height);
  overflow: hidden;
  font-size: var(--bs-progress-font-size);
  background-color: var(--bs-progress-bg);
  border-radius: var(--bs-progress-border-radius);
}
.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--bs-progress-bar-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-progress-bar-bg);
  transition: var(--bs-progress-bar-transition);
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: var(--bs-progress-height) var(--bs-progress-height);
}
.progress-stacked > .progress {
  overflow: visible;
}
.progress-stacked > .progress > .progress-bar {
  width: 100%;
}
.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}
.list-group {
  --bs-list-group-color: var(--bs-body-color);
  --bs-list-group-bg: var(--bs-body-bg);
  --bs-list-group-border-color: var(--bs-border-color);
  --bs-list-group-border-width: var(--bs-border-width);
  --bs-list-group-border-radius: var(--bs-border-radius);
  --bs-list-group-item-padding-x: 1rem;
  --bs-list-group-item-padding-y: 0.5rem;
  --bs-list-group-action-color: var(--bs-secondary-color);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
  --bs-list-group-action-active-color: var(--bs-body-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-bg);
  --bs-list-group-disabled-color: var(--bs-secondary-color);
  --bs-list-group-disabled-bg: var(--bs-body-bg);
  --bs-list-group-active-color: #fff;
  --bs-list-group-active-bg: #0d6efd;
  --bs-list-group-active-border-color: #0d6efd;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: var(--bs-list-group-border-radius);
}
.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > .list-group-item::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}
.list-group-item {
  position: relative;
  display: block;
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  color: var(--bs-list-group-color);
  text-decoration: none;
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: var(--bs-list-group-disabled-color);
  pointer-events: none;
  background-color: var(--bs-list-group-disabled-bg);
}
.list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: var(--bs-list-group-active-bg);
  border-color: var(--bs-list-group-active-border-color);
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: calc(-1 * var(--bs-list-group-border-width));
  border-top-width: var(--bs-list-group-border-width);
}
.list-group-item-action {
  width: 100%;
  color: var(--bs-list-group-action-color);
  text-align: inherit;
}
.list-group-item-action:not(.active):hover, .list-group-item-action:not(.active):focus {
  z-index: 1;
  color: var(--bs-list-group-action-hover-color);
  text-decoration: none;
  background-color: var(--bs-list-group-action-hover-bg);
}
.list-group-item-action:not(.active):active {
  color: var(--bs-list-group-action-active-color);
  background-color: var(--bs-list-group-action-active-bg);
}
.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  border-bottom-left-radius: var(--bs-list-group-border-radius);
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  border-top-right-radius: var(--bs-list-group-border-radius);
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: var(--bs-list-group-border-width);
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: calc(-1 * var(--bs-list-group-border-width));
  border-left-width: var(--bs-list-group-border-width);
}
@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 var(--bs-list-group-border-width);
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}
.list-group-item-primary {
  --bs-list-group-color: var(--bs-primary-text-emphasis);
  --bs-list-group-bg: var(--bs-primary-bg-subtle);
  --bs-list-group-border-color: var(--bs-primary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-primary-border-subtle);
  --bs-list-group-active-color: var(--bs-primary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-primary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-primary-text-emphasis);
}
.list-group-item-secondary {
  --bs-list-group-color: var(--bs-secondary-text-emphasis);
  --bs-list-group-bg: var(--bs-secondary-bg-subtle);
  --bs-list-group-border-color: var(--bs-secondary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis);
}
.list-group-item-success {
  --bs-list-group-color: var(--bs-success-text-emphasis);
  --bs-list-group-bg: var(--bs-success-bg-subtle);
  --bs-list-group-border-color: var(--bs-success-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-success-border-subtle);
  --bs-list-group-active-color: var(--bs-success-bg-subtle);
  --bs-list-group-active-bg: var(--bs-success-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-success-text-emphasis);
}
.list-group-item-info {
  --bs-list-group-color: var(--bs-info-text-emphasis);
  --bs-list-group-bg: var(--bs-info-bg-subtle);
  --bs-list-group-border-color: var(--bs-info-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-info-border-subtle);
  --bs-list-group-active-color: var(--bs-info-bg-subtle);
  --bs-list-group-active-bg: var(--bs-info-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-info-text-emphasis);
}
.list-group-item-warning {
  --bs-list-group-color: var(--bs-warning-text-emphasis);
  --bs-list-group-bg: var(--bs-warning-bg-subtle);
  --bs-list-group-border-color: var(--bs-warning-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-warning-border-subtle);
  --bs-list-group-active-color: var(--bs-warning-bg-subtle);
  --bs-list-group-active-bg: var(--bs-warning-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-warning-text-emphasis);
}
.list-group-item-danger {
  --bs-list-group-color: var(--bs-danger-text-emphasis);
  --bs-list-group-bg: var(--bs-danger-bg-subtle);
  --bs-list-group-border-color: var(--bs-danger-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-danger-border-subtle);
  --bs-list-group-active-color: var(--bs-danger-bg-subtle);
  --bs-list-group-active-bg: var(--bs-danger-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-danger-text-emphasis);
}
.list-group-item-light {
  --bs-list-group-color: var(--bs-light-text-emphasis);
  --bs-list-group-bg: var(--bs-light-bg-subtle);
  --bs-list-group-border-color: var(--bs-light-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-light-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-light-border-subtle);
  --bs-list-group-active-color: var(--bs-light-bg-subtle);
  --bs-list-group-active-bg: var(--bs-light-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-light-text-emphasis);
}
.list-group-item-dark {
  --bs-list-group-color: var(--bs-dark-text-emphasis);
  --bs-list-group-bg: var(--bs-dark-bg-subtle);
  --bs-list-group-border-color: var(--bs-dark-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-dark-border-subtle);
  --bs-list-group-active-color: var(--bs-dark-bg-subtle);
  --bs-list-group-active-bg: var(--bs-dark-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-dark-text-emphasis);
}
.btn-close {
  --bs-btn-close-color: #000;
  --bs-btn-close-bg: 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.414'/%3e%3c/svg%3e");
  --bs-btn-close-opacity: 0.5;
  --bs-btn-close-hover-opacity: 0.75;
  --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: 0.25;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: var(--bs-btn-close-color);
  background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  filter: var(--bs-btn-close-filter);
  border: 0;
  border-radius: 0.375rem;
  opacity: var(--bs-btn-close-opacity);
}
.btn-close:hover {
  color: var(--bs-btn-close-color);
  text-decoration: none;
  opacity: var(--bs-btn-close-hover-opacity);
}
.btn-close:focus {
  outline: 0;
  box-shadow: var(--bs-btn-close-focus-shadow);
  opacity: var(--bs-btn-close-focus-opacity);
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: var(--bs-btn-close-disabled-opacity);
}
.btn-close-white {
  --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}
:root,
[data-bs-theme=light] {
  --bs-btn-close-filter: ;
}
[data-bs-theme=dark] {
  --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}
.toast {
  --bs-toast-zindex: 1090;
  --bs-toast-padding-x: 0.75rem;
  --bs-toast-padding-y: 0.5rem;
  --bs-toast-spacing: 1.5rem;
  --bs-toast-max-width: 350px;
  --bs-toast-font-size: 0.875rem;
  --bs-toast-color: ;
  --bs-toast-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  --bs-toast-border-width: var(--bs-border-width);
  --bs-toast-border-color: var(--bs-border-color-translucent);
  --bs-toast-border-radius: var(--bs-border-radius);
  --bs-toast-box-shadow: var(--bs-box-shadow);
  --bs-toast-header-color: var(--bs-secondary-color);
  --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  --bs-toast-header-border-color: var(--bs-border-color-translucent);
  width: var(--bs-toast-max-width);
  max-width: 100%;
  font-size: var(--bs-toast-font-size);
  color: var(--bs-toast-color);
  pointer-events: auto;
  background-color: var(--bs-toast-bg);
  background-clip: padding-box;
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  box-shadow: var(--bs-toast-box-shadow);
  border-radius: var(--bs-toast-border-radius);
}
.toast.showing {
  opacity: 0;
}
.toast:not(.show) {
  display: none;
}
.toast-container {
  --bs-toast-zindex: 1090;
  position: absolute;
  z-index: var(--bs-toast-zindex);
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.toast-container > :not(:last-child) {
  margin-bottom: var(--bs-toast-spacing);
}
.toast-header {
  display: flex;
  align-items: center;
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  color: var(--bs-toast-header-color);
  background-color: var(--bs-toast-header-bg);
  background-clip: padding-box;
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
}
.toast-header .btn-close {
  margin-right: calc(-0.5 * var(--bs-toast-padding-x));
  margin-left: var(--bs-toast-padding-x);
}
.toast-body {
  padding: var(--bs-toast-padding-x);
  word-wrap: break-word;
}
.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: var(--bs-body-color);
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transform: translate(0, -50px);
  transition: transform 0.3s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}
.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}
.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}
.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}
.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--bs-modal-header-padding-y));
  margin-right: calc(-0.5 * var(--bs-modal-header-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-modal-header-padding-y));
  margin-left: auto;
}
.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}
.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}
@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
.tooltip {
  --bs-tooltip-zindex: 1080;
  --bs-tooltip-max-width: 200px;
  --bs-tooltip-padding-x: 0.5rem;
  --bs-tooltip-padding-y: 0.25rem;
  --bs-tooltip-margin: ;
  --bs-tooltip-font-size: 0.875rem;
  --bs-tooltip-color: var(--bs-body-bg);
  --bs-tooltip-bg: var(--bs-emphasis-color);
  --bs-tooltip-border-radius: var(--bs-border-radius);
  --bs-tooltip-opacity: 0.9;
  --bs-tooltip-arrow-width: 0.8rem;
  --bs-tooltip-arrow-height: 0.4rem;
  z-index: var(--bs-tooltip-zindex);
  display: block;
  margin: var(--bs-tooltip-margin);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-tooltip-font-size);
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: var(--bs-tooltip-opacity);
}
.tooltip .tooltip-arrow {
  display: block;
  width: var(--bs-tooltip-arrow-width);
  height: var(--bs-tooltip-arrow-height);
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}
.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: calc(-1 * var(--bs-tooltip-arrow-height));
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-top-color: var(--bs-tooltip-bg);
}
/* rtl:begin:ignore */
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-right-color: var(--bs-tooltip-bg);
}
/* rtl:end:ignore */
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: calc(-1 * var(--bs-tooltip-arrow-height));
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  border-bottom-color: var(--bs-tooltip-bg);
}
/* rtl:begin:ignore */
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  border-left-color: var(--bs-tooltip-bg);
}
/* rtl:end:ignore */
.tooltip-inner {
  max-width: var(--bs-tooltip-max-width);
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  color: var(--bs-tooltip-color);
  text-align: center;
  background-color: var(--bs-tooltip-bg);
  border-radius: var(--bs-tooltip-border-radius);
}
.popover {
  --bs-popover-zindex: 1070;
  --bs-popover-max-width: 276px;
  --bs-popover-font-size: 0.875rem;
  --bs-popover-bg: var(--bs-body-bg);
  --bs-popover-border-width: var(--bs-border-width);
  --bs-popover-border-color: var(--bs-border-color-translucent);
  --bs-popover-border-radius: var(--bs-border-radius-lg);
  --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width));
  --bs-popover-box-shadow: var(--bs-box-shadow);
  --bs-popover-header-padding-x: 1rem;
  --bs-popover-header-padding-y: 0.5rem;
  --bs-popover-header-font-size: 1rem;
  --bs-popover-header-color: inherit;
  --bs-popover-header-bg: var(--bs-secondary-bg);
  --bs-popover-body-padding-x: 1rem;
  --bs-popover-body-padding-y: 1rem;
  --bs-popover-body-color: var(--bs-body-color);
  --bs-popover-arrow-width: 1rem;
  --bs-popover-arrow-height: 0.5rem;
  --bs-popover-arrow-border: var(--bs-popover-border-color);
  z-index: var(--bs-popover-zindex);
  display: block;
  max-width: var(--bs-popover-max-width);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-popover-font-size);
  word-wrap: break-word;
  background-color: var(--bs-popover-bg);
  background-clip: padding-box;
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-radius: var(--bs-popover-border-radius);
}
.popover .popover-arrow {
  display: block;
  width: var(--bs-popover-arrow-width);
  height: var(--bs-popover-arrow-height);
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}
.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-top-color: var(--bs-popover-arrow-border);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: var(--bs-popover-border-width);
  border-top-color: var(--bs-popover-bg);
}
/* rtl:begin:ignore */
.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-right-color: var(--bs-popover-arrow-border);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: var(--bs-popover-border-width);
  border-right-color: var(--bs-popover-bg);
}
/* rtl:end:ignore */
.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-bottom-color: var(--bs-popover-arrow-border);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: var(--bs-popover-border-width);
  border-bottom-color: var(--bs-popover-bg);
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: var(--bs-popover-arrow-width);
  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
  content: "";
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
}
/* rtl:begin:ignore */
.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-left-color: var(--bs-popover-arrow-border);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: var(--bs-popover-border-width);
  border-left-color: var(--bs-popover-bg);
}
/* rtl:end:ignore */
.popover-header {
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  margin-bottom: 0;
  font-size: var(--bs-popover-header-font-size);
  color: var(--bs-popover-header-color);
  background-color: var(--bs-popover-header-bg);
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-top-left-radius: var(--bs-popover-inner-border-radius);
  border-top-right-radius: var(--bs-popover-inner-border-radius);
}
.popover-header:empty {
  display: none;
}
.popover-body {
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  color: var(--bs-popover-body-color);
}
.carousel {
  position: relative;
}
.carousel.pointer-event {
  touch-action: pan-y;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}
.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}
.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  filter: var(--bs-carousel-control-icon-filter);
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}
.carousel-control-prev {
  left: 0;
}
.carousel-control-next {
  right: 0;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e")*/;
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e")*/;
}
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: var(--bs-carousel-indicator-active-bg);
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: var(--bs-carousel-caption-color);
  text-align: center;
}
.carousel-dark {
  --bs-carousel-indicator-active-bg: #000;
  --bs-carousel-caption-color: #000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}
:root,
[data-bs-theme=light] {
  --bs-carousel-indicator-active-bg: #fff;
  --bs-carousel-caption-color: #fff;
  --bs-carousel-control-icon-filter: ;
}
[data-bs-theme=dark] {
  --bs-carousel-indicator-active-bg: #000;
  --bs-carousel-caption-color: #000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}
.spinner-grow,
.spinner-border {
  display: inline-block;
  flex-shrink: 0;
  width: var(--bs-spinner-width);
  height: var(--bs-spinner-height);
  vertical-align: var(--bs-spinner-vertical-align);
  border-radius: 50%;
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}
@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-border-width: 0.25em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-border;
  border: var(--bs-spinner-border-width) solid currentcolor;
  border-right-color: transparent;
}
.spinner-border-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
  --bs-spinner-border-width: 0.2em;
}
@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-grow;
  background-color: currentcolor;
  opacity: 0;
}
.spinner-grow-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
}
@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    --bs-spinner-animation-speed: 1.5s;
  }
}
.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  --bs-offcanvas-zindex: 1045;
  --bs-offcanvas-width: 400px;
  --bs-offcanvas-height: 30vh;
  --bs-offcanvas-padding-x: 1rem;
  --bs-offcanvas-padding-y: 1rem;
  --bs-offcanvas-color: var(--bs-body-color);
  --bs-offcanvas-bg: var(--bs-body-bg);
  --bs-offcanvas-border-width: var(--bs-border-width);
  --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  --bs-offcanvas-box-shadow: var(--bs-box-shadow-sm);
  --bs-offcanvas-transition: transform 0.3s ease-in-out;
  --bs-offcanvas-title-line-height: 1.5;
}
@media (max-width: 575.98px) {
  .offcanvas-sm {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-sm {
    transition: none;
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-sm.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-sm.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-sm.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .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 {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-sm .offcanvas-header {
    display: none;
  }
  .offcanvas-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-md {
    transition: none;
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-md.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-md.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-md.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .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 {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-md .offcanvas-header {
    display: none;
  }
  .offcanvas-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-lg {
    transition: none;
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-lg.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-lg.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-lg.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .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 {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-lg .offcanvas-header {
    display: none;
  }
  .offcanvas-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xl {
    transition: none;
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .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 {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xl .offcanvas-header {
    display: none;
  }
  .offcanvas-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xxl {
    transition: none;
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xxl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xxl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xxl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .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 {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xxl .offcanvas-header {
    display: none;
  }
  .offcanvas-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}
.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: var(--bs-offcanvas-zindex);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  color: var(--bs-offcanvas-color);
  visibility: hidden;
  background-color: var(--bs-offcanvas-bg);
  background-clip: padding-box;
  outline: 0;
  transition: var(--bs-offcanvas-transition);
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}
.offcanvas.offcanvas-start {
  top: 0;
  left: 0;
  width: var(--bs-offcanvas-width);
  border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(-100%);
}
.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  width: var(--bs-offcanvas-width);
  border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(100%);
}
.offcanvas.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(-100%);
}
.offcanvas.offcanvas-bottom {
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(100%);
}
.offcanvas.showing, .offcanvas.show:not(.hiding) {
  transform: none;
}
.offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  visibility: visible;
}
.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.offcanvas-backdrop.fade {
  opacity: 0;
}
.offcanvas-backdrop.show {
  opacity: 0.5;
}
.offcanvas-header {
  display: flex;
  align-items: center;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}
.offcanvas-header .btn-close {
  padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
  margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
  margin-left: auto;
}
.offcanvas-title {
  margin-bottom: 0;
  line-height: var(--bs-offcanvas-title-line-height);
}
.offcanvas-body {
  flex-grow: 1;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  overflow-y: auto;
}
.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5;
}
.placeholder.btn::before {
  display: inline-block;
  content: "";
}
.placeholder-xs {
  min-height: 0.6em;
}
.placeholder-sm {
  min-height: 0.8em;
}
.placeholder-lg {
  min-height: 1.2em;
}
.placeholder-glow .placeholder {
  animation: placeholder-glow 2s ease-in-out infinite;
}
@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}
.placeholder-wave {
  mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  mask-size: 200% 100%;
  animation: placeholder-wave 2s linear infinite;
}
@keyframes placeholder-wave {
  100% {
    mask-position: -200% 0%;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.text-bg-primary {
  color: #fff !important;
  background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}
.text-bg-secondary {
  color: #fff !important;
  background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}
.text-bg-success {
  color: #000 !important;
  background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
}
.text-bg-info {
  color: #000 !important;
  background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
}
.text-bg-warning {
  color: #000 !important;
  background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
}
.text-bg-danger {
  color: #fff !important;
  background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
}
.text-bg-light {
  color: #000 !important;
  background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
}
.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
}
.link-primary {
  color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-primary:hover, .link-primary:focus {
  color: RGBA(10, 88, 202, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
}
.link-secondary {
  color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-secondary:hover, .link-secondary:focus {
  color: RGBA(60, 68, 79, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(60, 68, 79, var(--bs-link-underline-opacity, 1)) !important;
}
.link-success {
  color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-success:hover, .link-success:focus {
  color: RGBA(56, 222, 179, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(56, 222, 179, var(--bs-link-underline-opacity, 1)) !important;
}
.link-info {
  color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-info:hover, .link-info:focus {
  color: RGBA(150, 159, 255, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(150, 159, 255, var(--bs-link-underline-opacity, 1)) !important;
}
.link-warning {
  color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-warning:hover, .link-warning:focus {
  color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
}
.link-danger {
  color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-danger:hover, .link-danger:focus {
  color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
}
.link-light {
  color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-light:hover, .link-light:focus {
  color: RGBA(245, 246, 248, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(245, 246, 248, var(--bs-link-underline-opacity, 1)) !important;
}
.link-dark {
  color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-dark:hover, .link-dark:focus {
  color: RGBA(14, 19, 31, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(14, 19, 31, var(--bs-link-underline-opacity, 1)) !important;
}
.link-body-emphasis {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-body-emphasis:hover, .link-body-emphasis:focus {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
}
.focus-ring:focus {
  outline: 0;
  box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
}
.icon-link {
  display: inline-flex;
  gap: 0.375rem;
  align-items: center;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  text-underline-offset: 0.25em;
  backface-visibility: hidden;
}
.icon-link > .bi {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  fill: currentcolor;
  transition: 0.2s ease-in-out transform;
}
@media (prefers-reduced-motion: reduce) {
  .icon-link > .bi {
    transition: none;
  }
}
.icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
  transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
}
.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}
.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}
.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}
.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}
.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}
@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}
.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  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;
}
.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}
.visually-hidden *,
.visually-hidden-focusable:not(:focus):not(:focus-within) * {
  overflow: hidden !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: var(--bs-border-width);
  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;
}
.object-fit-contain {
  object-fit: contain !important;
}
.object-fit-cover {
  object-fit: cover !important;
}
.object-fit-fill {
  object-fit: fill !important;
}
.object-fit-scale {
  object-fit: scale-down !important;
}
.object-fit-none {
  object-fit: 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;
}
.overflow-x-auto {
  overflow-x: auto !important;
}
.overflow-x-hidden {
  overflow-x: hidden !important;
}
.overflow-x-visible {
  overflow-x: visible !important;
}
.overflow-x-scroll {
  overflow-x: scroll !important;
}
.overflow-y-auto {
  overflow-y: auto !important;
}
.overflow-y-hidden {
  overflow-y: hidden !important;
}
.overflow-y-visible {
  overflow-y: visible !important;
}
.overflow-y-scroll {
  overflow-y: 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-inline-grid {
  display: inline-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(--bs-box-shadow) !important;
}
.shadow-sm {
  box-shadow: var(--bs-box-shadow-sm) !important;
}
.shadow-lg {
  box-shadow: var(--bs-box-shadow-lg) !important;
}
.shadow-none {
  box-shadow: none !important;
}
.focus-ring-primary {
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
}
.focus-ring-secondary {
  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
}
.focus-ring-success {
  --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
}
.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}
.focus-ring-warning {
  --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
}
.focus-ring-danger {
  --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
}
.focus-ring-light {
  --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
}
.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}
.position-static {
  position: static !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}
.position-sticky {
  position: sticky !important;
}
.top-0 {
  top: 0 !important;
}
.top-50 {
  top: 50% !important;
}
.top-100 {
  top: 100% !important;
}
.bottom-0 {
  bottom: 0 !important;
}
.bottom-50 {
  bottom: 50% !important;
}
.bottom-100 {
  bottom: 100% !important;
}
.start-0 {
  left: 0 !important;
}
.start-50 {
  left: 50% !important;
}
.start-100 {
  left: 100% !important;
}
.end-0 {
  right: 0 !important;
}
.end-50 {
  right: 50% !important;
}
.end-100 {
  right: 100% !important;
}
.translate-middle {
  transform: translate(-50%, -50%) !important;
}
.translate-middle-x {
  transform: translateX(-50%) !important;
}
.translate-middle-y {
  transform: translateY(-50%) !important;
}
.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-0 {
  border: 0 !important;
}
.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-top-0 {
  border-top: 0 !important;
}
.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-end-0 {
  border-right: 0 !important;
}
.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-bottom-0 {
  border-bottom: 0 !important;
}
.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-start-0 {
  border-left: 0 !important;
}
.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}
.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}
.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}
.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}
.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}
.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}
.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}
.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}
.border-black {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
}
.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}
.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}
.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}
.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}
.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}
.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}
.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}
.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}
.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !important;
}
.border-1 {
  border-width: 1px !important;
}
.border-2 {
  border-width: 2px !important;
}
.border-3 {
  border-width: 3px !important;
}
.border-4 {
  border-width: 4px !important;
}
.border-5 {
  border-width: 5px !important;
}
.border-opacity-10 {
  --bs-border-opacity: 0.1;
}
.border-opacity-25 {
  --bs-border-opacity: 0.25;
}
.border-opacity-50 {
  --bs-border-opacity: 0.5;
}
.border-opacity-75 {
  --bs-border-opacity: 0.75;
}
.border-opacity-100 {
  --bs-border-opacity: 1;
}
.w-25 {
  width: 25% !important;
}
.w-50 {
  width: 50% !important;
}
.w-75 {
  width: 75% !important;
}
.w-100 {
  width: 100% !important;
}
.w-auto {
  width: auto !important;
}
.mw-100 {
  max-width: 100% !important;
}
.vw-100 {
  width: 100vw !important;
}
.min-vw-100 {
  min-width: 100vw !important;
}
.h-25 {
  height: 25% !important;
}
.h-50 {
  height: 50% !important;
}
.h-75 {
  height: 75% !important;
}
.h-100 {
  height: 100% !important;
}
.h-auto {
  height: auto !important;
}
.mh-100 {
  max-height: 100% !important;
}
.vh-100 {
  height: 100vh !important;
}
.min-vh-100 {
  min-height: 100vh !important;
}
.flex-fill {
  flex: 1 1 auto !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  flex-direction: column-reverse !important;
}
.flex-grow-0 {
  flex-grow: 0 !important;
}
.flex-grow-1 {
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  flex-shrink: 0 !important;
}
.flex-shrink-1 {
  flex-shrink: 1 !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.justify-content-evenly {
  justify-content: space-evenly !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.align-content-start {
  align-content: flex-start !important;
}
.align-content-end {
  align-content: flex-end !important;
}
.align-content-center {
  align-content: center !important;
}
.align-content-between {
  align-content: space-between !important;
}
.align-content-around {
  align-content: space-around !important;
}
.align-content-stretch {
  align-content: stretch !important;
}
.align-self-auto {
  align-self: auto !important;
}
.align-self-start {
  align-self: flex-start !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-baseline {
  align-self: baseline !important;
}
.align-self-stretch {
  align-self: stretch !important;
}
.order-first {
  order: -1 !important;
}
.order-0 {
  order: 0 !important;
}
.order-1 {
  order: 1 !important;
}
.order-2 {
  order: 2 !important;
}
.order-3 {
  order: 3 !important;
}
.order-4 {
  order: 4 !important;
}
.order-5 {
  order: 5 !important;
}
.order-last {
  order: 6 !important;
}
.m-0 {
  margin: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.m-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;
}
.row-gap-0 {
  row-gap: 0 !important;
}
.row-gap-1 {
  row-gap: 0.25rem !important;
}
.row-gap-2 {
  row-gap: 0.5rem !important;
}
.row-gap-3 {
  row-gap: 1rem !important;
}
.row-gap-4 {
  row-gap: 1.5rem !important;
}
.row-gap-5 {
  row-gap: 3rem !important;
}
.column-gap-0 {
  column-gap: 0 !important;
}
.column-gap-1 {
  column-gap: 0.25rem !important;
}
.column-gap-2 {
  column-gap: 0.5rem !important;
}
.column-gap-3 {
  column-gap: 1rem !important;
}
.column-gap-4 {
  column-gap: 1.5rem !important;
}
.column-gap-5 {
  column-gap: 3rem !important;
}
.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}
.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}
.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}
.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}
.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}
.fs-5 {
  font-size: 1.25rem !important;
}
.fs-6 {
  font-size: 1rem !important;
}
.fst-italic {
  font-style: italic !important;
}
.fst-normal {
  font-style: normal !important;
}
.fw-lighter {
  font-weight: lighter !important;
}
.fw-light {
  font-weight: 300 !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-sm {
  line-height: 1.25 !important;
}
.lh-base {
  line-height: 1.5 !important;
}
.lh-lg {
  line-height: 2 !important;
}
.text-start {
  text-align: left !important;
}
.text-end {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-decoration-none {
  text-decoration: none !important;
}
.text-decoration-underline {
  text-decoration: underline !important;
}
.text-decoration-line-through {
  text-decoration: line-through !important;
}
.text-lowercase {
  text-transform: lowercase !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.text-wrap {
  white-space: normal !important;
}
.text-nowrap {
  white-space: nowrap !important;
}
/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}
/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}
.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}
.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}
.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}
.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}
.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}
.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}
.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}
.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}
.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}
.text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}
.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}
.text-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}
.text-body-tertiary {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important;
}
.text-body-emphasis {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !important;
}
.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}
.text-opacity-25 {
  --bs-text-opacity: 0.25;
}
.text-opacity-50 {
  --bs-text-opacity: 0.5;
}
.text-opacity-75 {
  --bs-text-opacity: 0.75;
}
.text-opacity-100 {
  --bs-text-opacity: 1;
}
.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}
.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}
.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}
.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}
.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}
.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}
.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}
.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}
.link-opacity-10 {
  --bs-link-opacity: 0.1;
}
.link-opacity-10-hover:hover {
  --bs-link-opacity: 0.1;
}
.link-opacity-25 {
  --bs-link-opacity: 0.25;
}
.link-opacity-25-hover:hover {
  --bs-link-opacity: 0.25;
}
.link-opacity-50 {
  --bs-link-opacity: 0.5;
}
.link-opacity-50-hover:hover {
  --bs-link-opacity: 0.5;
}
.link-opacity-75 {
  --bs-link-opacity: 0.75;
}
.link-opacity-75-hover:hover {
  --bs-link-opacity: 0.75;
}
.link-opacity-100 {
  --bs-link-opacity: 1;
}
.link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}
.link-offset-1 {
  text-underline-offset: 0.125em !important;
}
.link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important;
}
.link-offset-2 {
  text-underline-offset: 0.25em !important;
}
.link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important;
}
.link-offset-3 {
  text-underline-offset: 0.375em !important;
}
.link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important;
}
.link-underline-primary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}
.link-underline-secondary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}
.link-underline-success {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
}
.link-underline-info {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
}
.link-underline-warning {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
}
.link-underline-danger {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}
.link-underline-light {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
}
.link-underline-dark {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
}
.link-underline {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-underline-opacity-0 {
  --bs-link-underline-opacity: 0;
}
.link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}
.link-underline-opacity-10 {
  --bs-link-underline-opacity: 0.1;
}
.link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: 0.1;
}
.link-underline-opacity-25 {
  --bs-link-underline-opacity: 0.25;
}
.link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: 0.25;
}
.link-underline-opacity-50 {
  --bs-link-underline-opacity: 0.5;
}
.link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: 0.5;
}
.link-underline-opacity-75 {
  --bs-link-underline-opacity: 0.75;
}
.link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: 0.75;
}
.link-underline-opacity-100 {
  --bs-link-underline-opacity: 1;
}
.link-underline-opacity-100-hover:hover {
  --bs-link-underline-opacity: 1;
}
.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}
.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}
.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}
.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}
.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}
.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}
.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}
.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}
.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}
.bg-body-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}
.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}
.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}
.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}
.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}
.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}
.bg-opacity-100 {
  --bs-bg-opacity: 1;
}
.bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}
.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}
.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}
.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}
.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}
.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}
.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}
.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}
.bg-gradient {
  background-image: var(--bs-gradient) !important;
}
.user-select-all {
  user-select: all !important;
}
.user-select-auto {
  user-select: auto !important;
}
.user-select-none {
  user-select: none !important;
}
.pe-none {
  pointer-events: none !important;
}
.pe-auto {
  pointer-events: auto !important;
}
.rounded {
  border-radius: var(--bs-border-radius) !important;
}
.rounded-0 {
  border-radius: 0 !important;
}
.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}
.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}
.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}
.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}
.rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}
.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}
.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}
.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}
.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}
.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}
.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}
.rounded-top-circle {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
}
.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}
.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-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(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}
.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}
.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}
.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}
.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}
.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}
.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}
.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-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(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}
.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}
.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}
.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}
.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}
.rounded-bottom-circle {
  border-bottom-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}
.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}
.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-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(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}
.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}
.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}
.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}
.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}
.rounded-start-circle {
  border-bottom-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
}
.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}
.visible {
  visibility: visible !important;
}
.invisible {
  visibility: hidden !important;
}
.z-n1 {
  z-index: -1 !important;
}
.z-0 {
  z-index: 0 !important;
}
.z-1 {
  z-index: 1 !important;
}
.z-2 {
  z-index: 2 !important;
}
.z-3 {
  z-index: 3 !important;
}
@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .object-fit-sm-contain {
    object-fit: contain !important;
  }
  .object-fit-sm-cover {
    object-fit: cover !important;
  }
  .object-fit-sm-fill {
    object-fit: fill !important;
  }
  .object-fit-sm-scale {
    object-fit: scale-down !important;
  }
  .object-fit-sm-none {
    object-fit: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-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;
  }
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  .row-gap-sm-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-sm-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-sm-3 {
    row-gap: 1rem !important;
  }
  .row-gap-sm-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-sm-5 {
    row-gap: 3rem !important;
  }
  .column-gap-sm-0 {
    column-gap: 0 !important;
  }
  .column-gap-sm-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-sm-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-sm-3 {
    column-gap: 1rem !important;
  }
  .column-gap-sm-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-sm-5 {
    column-gap: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .object-fit-md-contain {
    object-fit: contain !important;
  }
  .object-fit-md-cover {
    object-fit: cover !important;
  }
  .object-fit-md-fill {
    object-fit: fill !important;
  }
  .object-fit-md-scale {
    object-fit: scale-down !important;
  }
  .object-fit-md-none {
    object-fit: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-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;
  }
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  .row-gap-md-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-md-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-md-3 {
    row-gap: 1rem !important;
  }
  .row-gap-md-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-md-5 {
    row-gap: 3rem !important;
  }
  .column-gap-md-0 {
    column-gap: 0 !important;
  }
  .column-gap-md-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-md-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-md-3 {
    column-gap: 1rem !important;
  }
  .column-gap-md-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-md-5 {
    column-gap: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .object-fit-lg-contain {
    object-fit: contain !important;
  }
  .object-fit-lg-cover {
    object-fit: cover !important;
  }
  .object-fit-lg-fill {
    object-fit: fill !important;
  }
  .object-fit-lg-scale {
    object-fit: scale-down !important;
  }
  .object-fit-lg-none {
    object-fit: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-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;
  }
  .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  .row-gap-lg-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-lg-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-lg-3 {
    row-gap: 1rem !important;
  }
  .row-gap-lg-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-lg-5 {
    row-gap: 3rem !important;
  }
  .column-gap-lg-0 {
    column-gap: 0 !important;
  }
  .column-gap-lg-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-lg-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-lg-3 {
    column-gap: 1rem !important;
  }
  .column-gap-lg-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-lg-5 {
    column-gap: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .object-fit-xl-contain {
    object-fit: contain !important;
  }
  .object-fit-xl-cover {
    object-fit: cover !important;
  }
  .object-fit-xl-fill {
    object-fit: fill !important;
  }
  .object-fit-xl-scale {
    object-fit: scale-down !important;
  }
  .object-fit-xl-none {
    object-fit: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-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;
  }
  .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xl-0 {
    column-gap: 0 !important;
  }
  .column-gap-xl-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-xl-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-xl-3 {
    column-gap: 1rem !important;
  }
  .column-gap-xl-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-xl-5 {
    column-gap: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .object-fit-xxl-contain {
    object-fit: contain !important;
  }
  .object-fit-xxl-cover {
    object-fit: cover !important;
  }
  .object-fit-xxl-fill {
    object-fit: fill !important;
  }
  .object-fit-xxl-scale {
    object-fit: scale-down !important;
  }
  .object-fit-xxl-none {
    object-fit: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-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;
  }
  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xxl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xxl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xxl-0 {
    column-gap: 0 !important;
  }
  .column-gap-xxl-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-xxl-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-xxl-3 {
    column-gap: 1rem !important;
  }
  .column-gap-xxl-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-xxl-5 {
    column-gap: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-inline-grid {
    display: inline-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;
  }
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.font-bold {
  font-weight: 700;
}
.font-semibold {
  font-weight: 600;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}
.text-primary {
  color: #0f172a;
}
.text-secondary {
  color: #334155;
}
.text-muted {
  color: #64748b;
}
.text-success {
  color: #06d6a0;
}
.text-warning {
  color: #a07800;
}
.text-error {
  color: #dc3545;
}
.bg-primary {
  background-color: #5b73e8;
}
.bg-success {
  background-color: #06d6a0;
}
.bg-warning {
  background-color: #ffc107;
}
.bg-error {
  background-color: #dc3545;
}
.bg-light {
  background-color: #f8fafc;
}
.bg-white {
  background-color: #ffffff;
}
.hidden {
  display: none !important;
}
.visible {
  display: block !important;
}
@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hidden-desktop {
    display: none !important;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-to-content {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1rem 1.5rem;
  background: #5b73e8;
  color: white;
  text-decoration: none;
  font-weight: 600;
}
.skip-to-content:focus {
  left: 1rem;
  top: 1rem;
}
@media print {
  .no-print {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
  a {
    text-decoration: underline;
    color: black;
  }
  .card {
    box-shadow: none;
    border: 1px solid #000;
  }
}/* Accessibility Settings Styles */
.accessibility-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1060; /* Higher than Bootstrap navbar (1050) */
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--bs-box-shadow);
    background-color: var(--bg-primary);
    border-color: var(--bs-secondary);
    color: var(--text-secondary);
    transition: all 0.3s ease;
    /* Ensure button doesn't interfere with scrollbars */
    margin-right: 0;
    margin-bottom: 0;
}

/* Adjust position when cookie banner is visible */
.accessibility-toggle.with-cookie-banner {
    bottom: 120px; /* Move above cookie banner */
    /* Add subtle animation for position change */
    transform: translateY(0);
    animation: accessibilitySlideUp 0.3s ease-out;
}

@keyframes accessibilitySlideUp {
    from {
        transform: translateY(100px);
        opacity: 0.8;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.accessibility-toggle:hover {
    transform: scale(1.05);
    background-color: var(--bs-secondary);
    color: var(--bg-primary);
    box-shadow: var(--bs-box-shadow-lg);
}

[data-bs-theme="dark"] .accessibility-toggle {
    background-color: var(--bs-gray-800);
    border-color: var(--bs-gray-600);
    color: var(--bs-gray-300);
}

[data-bs-theme="dark"] .accessibility-toggle:hover {
    background-color: var(--bs-gray-700);
    color: var(--bs-light);
}

/* Mobile positioning - Hide on mobile devices (users rely on native OS accessibility) */
@media (max-width: 768px) {
    .accessibility-toggle {
        display: none; /* Hidden on mobile - native OS accessibility is preferred */
    }

    .accessibility-toggle.with-cookie-banner {
        display: none;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .accessibility-toggle {
        display: none;
    }

    .accessibility-toggle.with-cookie-banner {
        display: none;
    }
}

.accessibility-toggle:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

/* Skip to content link - Hidden by default, visible on focus */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--bs-primary);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 6px 6px;
    z-index: 1100;
    transition: top 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--bs-box-shadow);
    /* Hidden by default */
    transform: translateY(-100%);
    opacity: 0;
}

/* Show on focus/active (when user tabs to it) */
.skip-to-content:focus,
.skip-to-content:active {
    top: 0;
    transform: translateY(0);
    opacity: 1;
    outline: 3px solid var(--bs-success);
    outline-offset: 2px;
}

/* Ensure main content can receive focus when skipped to */
#main-content {
    outline: none;
}

#main-content:focus {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
}

.skip-to-content:focus {
    top: 0;
    color: white;
    text-decoration: none;
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Setting groups in modal */
.setting-group {
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 0.375rem;
    background-color: var(--bg-secondary);
    transition: all 0.3s ease;
}

[data-bs-theme="dark"] .setting-group {
    background-color: var(--bs-gray-800);
    border-color: var(--bs-gray-700);
}

.setting-group h6 {
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.setting-group small {
    display: block;
    margin-top: 0.5rem;
}

/* Switch styling fixes */
.setting-group .form-check {
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.setting-group .form-check-input[type="checkbox"] {
    position: relative;
    z-index: 2;
    margin-right: 0.75rem;
}

.setting-group .form-check-label {
    position: relative;
    z-index: 1;
    padding-left: 0.25rem;
    font-weight: 500;
    color: var(--text-primary);
}

[data-bs-theme="dark"] .setting-group .form-check-label {
    color: var(--bs-light);
}

/* Ensure switches are fully visible and clickable with sliding knob */
.form-switch .form-check-input {
    width: 2em;
    height: 1em;
    background-color: var(--bs-gray-300);
    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='white'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    border: 1px solid var(--border-light);
    border-radius: 2em;
    transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, border-color 0.15s ease-in-out;
    margin-top: 0.25em;
    flex-shrink: 0; /* Prevent shrinking */
}

[data-bs-theme="dark"] .form-switch .form-check-input {
    background-color: var(--bs-gray-600);
    border-color: var(--bs-gray-500);
}

.form-switch .form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    background-position: right center;
}

.form-switch .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
    border-color: var(--bs-primary);
}

/* Ensure proper alignment and spacing for switch containers */
.accessibility-settings .form-switch {
    padding-left: 2.5em;
    min-height: 2em;
    display: flex;
    align-items: flex-start;
}

.accessibility-settings .form-switch .form-check-input {
    margin-left: -2.5em;
    margin-top: 0.125em;
}

/* Prevent text wrapping issues around switches */
.accessibility-settings .form-check-label {
    line-height: 1.4;
    display: block;
    width: 100%;
}

/* Font size variations */
:root[data-font-size="small"] {
    font-size: 14px;
}

:root[data-font-size="medium"] {
    font-size: 16px;
}

:root[data-font-size="large"] {
    font-size: 18px;
}

:root[data-font-size="extra-large"] {
    font-size: 22px;
}

/* Contrast variations */
:root[data-contrast="high"] {
    --bs-body-bg: #ffffff;
    --bs-body-color: #000000;
    --bs-primary: #0000ff;
    --bs-secondary: #666666;
    --bs-border-color: #000000;
    --text-primary: #000000;
    --text-secondary: #333333;
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --border-light: #000000;
}

:root[data-contrast="high"] .card,
:root[data-contrast="high"] .modal-content,
:root[data-contrast="high"] .navbar {
    background-color: var(--bg-primary) !important;
    border: 2px solid var(--border-light) !important;
    color: var(--text-primary) !important;
}

:root[data-contrast="high"] .btn-primary {
    background-color: #0000ff !important;
    border-color: #0000ff !important;
    color: #ffffff !important;
}

:root[data-contrast="high"] .btn-outline-primary {
    border-color: #0000ff !important;
    color: #0000ff !important;
}

:root[data-contrast="high"] .btn-outline-primary:hover {
    background-color: #0000ff !important;
    color: #ffffff !important;
}

/* Dark mode */
:root[data-contrast="dark"] {
    --bs-body-bg: #0d1117;
    --bs-body-color: #e6edf3;
    --bs-primary: #58a6ff;
    --bs-secondary: #7d8590;
    --bs-border-color: #30363d;
    --bs-success: #238636;
    --bs-info: #0969da;
    --bs-warning: #9e6a03;
    --bs-danger: #da3633;
    --bs-light: #21262d;
    --bs-dark: #f0f6fc;
    --card-bg: #161b22;
    --card-bg-light: #21262d;
    --text-muted: #7d8590;
    --gradient-primary: linear-gradient(135deg, #58a6ff, #388bfd);
    --gradient-success: linear-gradient(135deg, #238636, #2ea043);
    --gradient-info: linear-gradient(135deg, #0969da, #0550ae);
    --gradient-warning: linear-gradient(135deg, #fb8500, #d18700);
}

:root[data-contrast="dark"] body {
    background-color: #0d1117 !important;
    color: #e6edf3 !important;
}

:root[data-contrast="dark"] .card,
:root[data-contrast="dark"] .modal-content {
    background-color: #161b22 !important;
    border-color: #30363d !important;
    color: #e6edf3 !important;
}

:root[data-contrast="dark"] .navbar {
    background-color: #010409 !important;
    border-color: #21262d !important;
    color: #e6edf3 !important;
}

:root[data-contrast="dark"] .form-control,
:root[data-contrast="dark"] .form-select {
    background-color: #21262d !important;
    border-color: #30363d !important;
    color: #e6edf3 !important;
}

:root[data-contrast="dark"] .form-control:focus,
:root[data-contrast="dark"] .form-select:focus {
    background-color: #21262d !important;
    border-color: #58a6ff !important;
    color: #e6edf3 !important;
    box-shadow: 0 0 0 0.25rem rgba(88, 166, 255, 0.25) !important;
}

/* Dark mode gradient cards */
:root[data-contrast="dark"] .bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

:root[data-contrast="dark"] .bg-gradient-success {
    background: var(--gradient-success) !important;
}

:root[data-contrast="dark"] .bg-gradient-info {
    background: var(--gradient-info) !important;
}

:root[data-contrast="dark"] .bg-gradient-warning {
    background: var(--gradient-warning) !important;
}

/* Dark mode light cards */
:root[data-contrast="dark"] .bg-light {
    background-color: #21262d !important;
    color: #e6edf3 !important;
}

:root[data-contrast="dark"] .text-muted {
    color: #7d8590 !important;
}

:root[data-contrast="dark"] .text-dark {
    color: #e6edf3 !important;
}

/* Dark mode buttons */
:root[data-contrast="dark"] .btn-primary {
    background-color: #238636 !important;
    border-color: #238636 !important;
    color: #ffffff !important;
}

:root[data-contrast="dark"] .btn-primary:hover {
    background-color: #2ea043 !important;
    border-color: #2ea043 !important;
}

:root[data-contrast="dark"] .btn-outline-primary {
    border-color: #58a6ff !important;
    color: #58a6ff !important;
}

:root[data-contrast="dark"] .btn-outline-primary:hover {
    background-color: #58a6ff !important;
    color: #ffffff !important;
}

:root[data-contrast="dark"] .btn-outline-secondary {
    border-color: #7d8590 !important;
    color: #7d8590 !important;
}

:root[data-contrast="dark"] .btn-outline-secondary:hover {
    background-color: #7d8590 !important;
    color: #ffffff !important;
}

/* Dark mode accessibility modal */
:root[data-contrast="dark"] .accessibility-modal .modal-content {
    background-color: #161b22 !important;
    border-color: #30363d !important;
}

:root[data-contrast="dark"] .setting-group {
    background-color: #21262d !important;
    border-color: #30363d !important;
}

:root[data-contrast="dark"] .setting-group h6 {
    color: #e6edf3 !important;
}

/* Dark mode form switches */
:root[data-contrast="dark"] .form-switch .form-check-input {
    background-color: #30363d !important;
    border-color: #484f58 !important;
}

:root[data-contrast="dark"] .form-switch .form-check-input:checked {
    background-color: #238636 !important;
    border-color: #238636 !important;
}

/* Dark mode borders and rounded elements */
:root[data-contrast="dark"] .border {
    border-color: #30363d !important;
}

:root[data-contrast="dark"] .rounded-3 {
    border-color: #30363d !important;
}

/* Dark mode alert and info sections */
:root[data-contrast="dark"] .alert {
    background-color: #21262d !important;
    border-color: #30363d !important;
    color: #e6edf3 !important;
}

:root[data-contrast="dark"] .alert-info {
    background-color: #0c2d48 !important;
    border-color: #0969da !important;
    color: #79c0ff !important;
}

/* Dark mode shadow adjustments */
:root[data-contrast="dark"] .shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5) !important;
}

:root[data-contrast="dark"] .shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3) !important;
}

/* Dark mode navbar items */
:root[data-contrast="dark"] .navbar-nav .nav-link {
    color: #e6edf3 !important;
}

:root[data-contrast="dark"] .navbar-nav .nav-link:hover {
    color: #58a6ff !important;
}

:root[data-contrast="dark"] .navbar-brand {
    color: #e6edf3 !important;
}

/* Dark mode dropdown menus */
:root[data-contrast="dark"] .dropdown-menu {
    background-color: #21262d !important;
    border-color: #30363d !important;
}

:root[data-contrast="dark"] .dropdown-item {
    color: #e6edf3 !important;
}

:root[data-contrast="dark"] .dropdown-item:hover {
    background-color: #30363d !important;
    color: #58a6ff !important;
}

/* Dark mode table styles */
:root[data-contrast="dark"] .table {
    color: #e6edf3 !important;
}

:root[data-contrast="dark"] .table th,
:root[data-contrast="dark"] .table td {
    border-color: #30363d !important;
}

:root[data-contrast="dark"] .table-striped tbody tr:nth-of-type(odd) {
    background-color: #21262d !important;
}

/* Dark mode pagination */
:root[data-contrast="dark"] .page-link {
    background-color: #21262d !important;
    border-color: #30363d !important;
    color: #58a6ff !important;
}

:root[data-contrast="dark"] .page-link:hover {
    background-color: #30363d !important;
    border-color: #58a6ff !important;
    color: #79c0ff !important;
}

:root[data-contrast="dark"] .page-item.active .page-link {
    background-color: #238636 !important;
    border-color: #238636 !important;
}

/* Reduced motion */
:root[data-reduced-motion="true"] *,
:root[data-reduced-motion="true"] *::before,
:root[data-reduced-motion="true"] *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
}

/* Enhanced keyboard navigation */
:root[data-keyboard-nav="true"] *:focus {
    outline: 3px solid #007bff !important;
    outline-offset: 2px !important;
    border-radius: 4px !important;
}

:root[data-keyboard-nav="true"] .btn:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
}

:root[data-keyboard-nav="true"] .card:focus,
:root[data-keyboard-nav="true"] .card-body:focus {
    outline: 2px solid #007bff !important;
    outline-offset: 2px !important;
}

/* Screen reader optimizations */
.visually-hidden {
    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;
}

/* High contrast media query support */
@media (prefers-contrast: high) {
    :root {
        --bs-body-bg: #ffffff;
        --bs-body-color: #000000;
        --bs-primary: #0000ff;
        --bs-border-color: #000000;
    }
}

/* Reduced motion media query support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Mobile accessibility improvements */
@media (max-width: 768px) {
    :root[data-font-size="large"] {
        font-size: 20px;
    }
    
    :root[data-font-size="extra-large"] {
        font-size: 24px;
    }
}

/* Touch target improvements */
@media (pointer: coarse) {
    .btn,
    .form-control,
    .form-select,
    .nav-link {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Larger touch targets for switches on mobile */
    .form-switch .form-check-input {
        width: 2.5em;
        height: 1.25em;
    }
}

/* Print styles */
@media print {
    .accessibility-toggle,
    .skip-to-content,
    .cookie-consent-banner {
        display: none !important;
    }
}
/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-top: 3px solid var(--bs-primary);
    box-shadow: var(--bs-box-shadow-lg);
    z-index: 1050;
    padding: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    /* Ensure banner doesn't cause horizontal scroll */
    max-width: 100vw;
    box-sizing: border-box;
    /* Prevent border from creating visual conflicts with accessibility button */
    border-radius: 0;
}

/* Remove any overlapping elements on mobile */
.cookie-consent-banner::before {
    display: none;
}

/* Animation for banner appearance */
@keyframes slideUpFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

[data-bs-theme="dark"] .cookie-consent-banner {
    background: var(--bs-dark);
    border-top-color: var(--primary-blue);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

/* Dark theme text colors */
[data-bs-theme="dark"] .cookie-consent-text h5 {
    color: var(--bs-light);
}

[data-bs-theme="dark"] .cookie-consent-text p {
    color: var(--bs-gray-300);
}

[data-bs-theme="dark"] .cookie-consent-text a {
    color: var(--primary-blue);
}

[data-bs-theme="dark"] .cookie-consent-text a:hover {
    color: var(--primary-purple);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cookie-consent-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.cookie-consent-text a {
    color: var(--bs-primary);
    text-decoration: none;
}

.cookie-consent-text a:hover {
    color: var(--primary-purple);
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    min-width: fit-content;
}

/* Cookie Settings Modal */
.cookie-category {
    border: 1px solid var(--border-light);
    border-radius: 0.375rem;
    padding: 1rem;
    background-color: var(--bg-secondary);
    transition: all 0.3s ease;
}

[data-bs-theme="dark"] .cookie-category {
    background-color: var(--bs-gray-800);
    border-color: var(--bs-gray-700);
}

[data-bs-theme="dark"] .cookie-category h6 {
    color: var(--bs-light);
}

[data-bs-theme="dark"] .cookie-category .text-muted {
    color: var(--bs-gray-400) !important;
}

.cookie-category h6 {
    font-weight: 600;
    color: var(--text-primary);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cookie-consent-banner {
        /* Restore normal mobile padding - no accessibility button to avoid */
        padding: 1.25rem 1rem;
    }

    .cookie-consent-content {
        flex-direction: column;
        text-align: left; /* Left align for better readability */
        gap: 1.25rem;
    }
    
    .cookie-consent-text {
        min-width: 100%;
        margin-bottom: 0;
    }

    .cookie-consent-text h5 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .cookie-consent-text p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .cookie-consent-actions {
        width: 100%;
        justify-content: flex-start;
        gap: 0.75rem;
    }
    
    .cookie-consent-actions .btn {
        flex: 0 1 auto;
        min-width: 120px; /* Increased from 100px for better mobile fit */
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .cookie-consent-banner {
        padding: 1rem 0.75rem;
    }

    .cookie-consent-content {
        gap: 1rem;
    }

    .cookie-consent-text h5 {
        font-size: 1rem;
    }

    .cookie-consent-text p {
        font-size: 0.8rem;
    }

    .cookie-consent-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-consent-actions .btn {
        flex: none;
        width: 100%;
        margin-bottom: 0.5rem;
        min-width: auto; /* Remove min-width constraint for full-width buttons */
        padding: 0.6rem 1rem; /* Slightly larger padding for better touch targets */
    }

    .cookie-consent-actions .btn:last-child {
        margin-bottom: 0;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cookie-consent-banner {
        background: var(--bg-primary);
        border-top: 4px solid var(--bs-primary);
    }
    
    .cookie-consent-text h5,
    .cookie-consent-text p {
        color: var(--text-primary);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .cookie-consent-banner {
        animation: none;
        transition: none;
    }
    
    /* Disable accessibility button animation too */
    .accessibility-toggle {
        animation: none;
        transition: opacity 0.2s ease; /* Keep only opacity transition */
    }
    
    @keyframes slideUpFromBottom {
        from, to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    @keyframes accessibilitySlideUp {
        from, to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}

/* Focus styles for accessibility */
.cookie-consent-banner .btn:focus,
.cookie-consent-banner a:focus {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
}

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--bs-primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 1100;
    transition: top 0.3s;
}

.skip-to-content:focus {
    top: 0;
    color: white;
    text-decoration: none;
}
.card-image {
  transition: transform 0.3s ease;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.card-image:hover {
  transform: scale(1.02);
}

.card-hover .card-image {
  max-height: 180px;
  width: auto;
  margin: 0 auto;
}

.placeholder-card-image {
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #dee2e6;
}/* Interactive Tooltip Styles */
.interactive-tooltip {
  max-width: 300px !important;
  font-size: 0.875rem !important;
  line-height: 1.4 !important;
  text-align: left !important;
  word-wrap: break-word !important;
  background-color: #212529 !important;
  border: 1px solid #495057 !important;
  border-radius: 6px !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  z-index: 1070 !important;
}

.interactive-tooltip .tooltip-inner {
  padding: 8px 12px !important;
  background-color: #212529 !important;
  border-radius: 6px !important;
}

.interactive-tooltip-trigger {
  transition: all 0.2s ease-in-out;
}

.interactive-tooltip-trigger:hover {
  transform: scale(1.1);
  color: #0d6efd !important;
}

.interactive-tooltip-trigger:active {
  transform: scale(0.95);
}

/* Tooltip animation */
.tooltip {
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out !important;
}

.tooltip.fade:not(.show) {
  opacity: 0;
  transform: translateY(-5px);
}

.tooltip.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure tooltips appear above modals */
.modal .tooltip {
  z-index: 1080 !important;
}
/* Advanced Page - CSS Variables Standardization */

/* Mobile-first responsive design */
.advanced-page-container {
  min-height: 100vh;
  background-color: var(--bg-light, #f8f9fa);
  padding-bottom: 2rem;
}

[data-bs-theme="dark"] .advanced-page-container {
  background-color: var(--bg-dark, #212529);
}

/* Mobile-first immersive design - minimal padding for breathing room */
@media (max-width: 576px) {
  .advanced-page-container .container-fluid {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (min-width: 768px) {
  .advanced-page-container .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
  }
}

/* NOTE: Removed navbar-specific overrides - navbar styling now handled by design-system SCSS */

/* Tab responsive styling */
.advanced-page-container .nav-pills .nav-link {
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}

@media (max-width: 576px) {
  .advanced-page-container .nav-pills .nav-link {
    font-size: 0.8rem;
    padding: 0.4rem 0.5rem;
  }
}

/* Card spacing improvements */
.advanced-page-container .card {
  transition: all 0.3s ease;
}

.advanced-page-container .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Summary stats responsive cards */
.advanced-page-container .summary-stat-card {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .advanced-page-container .summary-stat-card {
    min-height: 80px;
  }
}

/* Override Bootstrap text utilities to use CSS variables */
.advanced-page .text-muted {
  color: var(--text-muted) !important;
}

.advanced-page .text-primary {
  color: var(--bs-primary) !important;
}

.advanced-page .text-secondary {
  color: var(--text-secondary) !important;
}

/* Dark theme adjustments */
[data-bs-theme="dark"] .advanced-page .text-muted {
  color: var(--bs-gray-400) !important;
}

[data-bs-theme="dark"] .advanced-page .text-primary {
  color: var(--primary-blue) !important;
}

[data-bs-theme="dark"] .advanced-page .text-secondary {
  color: var(--bs-gray-300) !important;
}

/* Error states with proper theming */
.advanced-page .no-data-message {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

[data-bs-theme="dark"] .advanced-page .no-data-message {
  background-color: var(--bs-gray-800);
  border-color: var(--bs-gray-700);
}

.advanced-page .no-data-message h4 {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.advanced-page .no-data-message p {
  color: var(--text-muted);
}

[data-bs-theme="dark"] .advanced-page .no-data-message h4 {
  color: var(--bs-gray-300);
}

[data-bs-theme="dark"] .advanced-page .no-data-message p {
  color: var(--bs-gray-400);
}

/* Stats cards theming */
.advanced-page .stat-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

[data-bs-theme="dark"] .advanced-page .stat-card {
  background-color: var(--bs-gray-800);
  border-color: var(--bs-gray-700);
}

.advanced-page .stat-card:hover {
  box-shadow: var(--bs-box-shadow-lg);
  transform: translateY(-2px);
}

/* Info icons */
.advanced-page .info-icon {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.advanced-page .info-icon:hover {
  color: var(--bs-primary);
}

[data-bs-theme="dark"] .advanced-page .info-icon {
  color: var(--bs-gray-400);
}

[data-bs-theme="dark"] .advanced-page .info-icon:hover {
  color: var(--primary-blue);
}

/* Sort indicator styling */
.advanced-page .sort-indicator {
  color: var(--text-muted);
  font-size: 0.8em;
  margin-left: 0.25rem;
}

[data-bs-theme="dark"] .advanced-page .sort-indicator {
  color: var(--bs-gray-400);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .advanced-page .no-data-message {
    padding: 1.5rem;
  }
  
  .advanced-page .stat-card {
    padding: 1rem;
  }
}

/* Premium overlay specific styling */
.advanced-page .premium-overlay {
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* Ensure overlay doesn't interfere with navbar */
.advanced-page .premium-overlay {
  pointer-events: auto; /* Allow interactions within overlay */
}

.advanced-page .premium-overlay ~ * {
  pointer-events: none; /* Disable interactions with content behind overlay */
}

/* NOTE: Removed navbar pointer-events and z-index overrides - handled by design-system SCSS */

/* Dark theme premium overlay */
[data-bs-theme="dark"] .advanced-page .premium-overlay {
  background-color: rgba(15, 23, 42, 0.95);
}

/* Premium overlay content styling */
.advanced-page .premium-overlay-content {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  box-shadow: var(--bs-box-shadow-lg);
}

.advanced-page .premium-title {
  color: var(--text-primary);
  font-weight: 600;
}

.advanced-page .premium-description {
  color: var(--text-secondary);
}

/* Premium badge styling */
.advanced-page .premium-badge {
  background-color: var(--bs-warning) !important;
  color: var(--bs-dark) !important;
  border: none;
  font-weight: 600;
}

/* Back button styling */
.advanced-page .premium-back-btn {
  border-color: var(--text-muted) !important;
  color: var(--text-muted) !important;
  background-color: transparent !important;
}

.advanced-page .premium-back-btn:hover {
  border-color: var(--text-secondary) !important;
  color: var(--text-secondary) !important;
  background-color: var(--bg-secondary) !important;
}

[data-bs-theme="dark"] .advanced-page .premium-back-btn {
  border-color: var(--bs-secondary) !important;
  color: var(--bs-secondary) !important;
}

[data-bs-theme="dark"] .advanced-page .premium-back-btn:hover {
  border-color: var(--text-secondary) !important;
  color: var(--text-secondary) !important;
  background-color: var(--bg-secondary) !important;
}

/* Navbar container styling now handled by design-system SCSS (_navbar-reset.scss) */

/* Adjust page content to account for fixed navbar (desktop only).
   Remove mobile top padding so the header sits closer to the navbar on small screens. */
@media (min-width: 768px) {
  .advanced-page {
    padding-top: 56px;
  }
}

/* Small mobile top inset so header isn't flush against navbar but also
   not overly spaced. Adjust as needed (12px chosen as a modest inset). */
@media (max-width: 767px) {
  .advanced-page {
    padding-top: 12px;
  }
}

/* Premium overlay mobile adjustments */
@media (max-width: 768px) {
  .advanced-page .premium-overlay {
    padding: 2rem 1rem !important;
  }
  
  .advanced-page .premium-overlay-content {
    padding: 2rem 1.5rem !important;
    border-radius: 0.75rem;
  }
  
  .advanced-page .premium-title {
    font-size: 1.5rem;
  }
  
  .advanced-page .premium-description {
    font-size: 1rem;
  }
  
  /* previously set padding-top here for mobile; removed to avoid large mobile gap */
}

/* Premium restrictions */
.blur-content {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}
.category-breakdown-card {
  border: 1px solid #dee2e6;
}
.category-breakdown-card .card-header {
  background-color: #f8f9fa;
  transition: background-color 0.2s ease;
}
.category-breakdown-card .card-header:hover {
  background-color: #e9ecef;
}
.category-breakdown-card .table th {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #dee2e6;
}
.category-breakdown-card .table tbody tr {
  transition: background-color 0.15s ease;
}
.category-breakdown-card .table tbody tr:hover {
  background-color: #f8f9fa;
}
.category-breakdown-card .table td {
  vertical-align: middle;
  font-size: 0.9rem;
}
.category-breakdown-card .badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35em 0.65em;
}

@media (max-width: 768px) {
  .category-breakdown-card .table {
    font-size: 0.8rem;
  }
  .category-breakdown-card .table th, .category-breakdown-card .table td {
    padding: 0.5rem 0.25rem;
  }
  .mobile-category-list .category-mobile-card {
    border: 1px solid #dee2e6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease;
  }
  .mobile-category-list .category-mobile-card:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  .mobile-category-list .category-mobile-card .spending-amount {
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 0.375rem;
  }
  .mobile-category-list .category-mobile-card .earnings-breakdown .earnings-card {
    text-align: center;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
  }
  .mobile-category-list .category-mobile-card .earnings-breakdown .earnings-card.winner {
    background-color: #d1f4e0;
    border: 1px solid #10b981;
  }
}