:root {
  --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: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #1e51b7;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-secondary-light-rgb: 186, 194, 201;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 245, 245, 245;
  --bs-light-2-rgb: 205, 205, 205;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #0d6efd;
  --bs-link-hover-color: #0a58ca;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff3cd;

  /* Futuristic Color Palette */
  --primary-cyan: #00f5ff;
  --primary-blue: #0066ff;
  --primary-purple: #8b5cf6;
  --primary-pink: #ec4899;
  --secondary-dark: #0a0a0a;
  --secondary-darker: #050505;
  --secondary-gray: #1a1a1a;
  --secondary-light: #2a2a2a;
  --accent-green: #00ff88;
  --accent-orange: #ff6b35;
  --accent-yellow: #ffd700;
  --accent-red: #ff3366;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #808080;
  --text-accent: var(--primary-cyan);
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: rgba(26, 26, 26, 0.8);
  --bg-glass: rgba(255, 255, 255, 0.05);
  --gradient-primary: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-blue) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-cyan) 100%);
  --gradient-dark: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-gray) 100%);
  --shadow-glow: 0 0 20px rgba(0, 245, 255, 0.3);
  --shadow-glow-strong: 0 0 40px rgba(0, 245, 255, 0.5);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-button: 0 4px 16px rgba(0, 245, 255, 0.2);
  --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
}
*,
::after,
::before {
  box-sizing: border-box;
}
.cursor-pointer {
  cursor: pointer !important;
}
@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);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}
.align-baseline {
  vertical-align: baseline !important;
}
.align-top {
  vertical-align: top !important;
}
.align-middle {
  vertical-align: middle !important;
}
.align-bottom {
  vertical-align: bottom !important;
}
.align-text-bottom {
  vertical-align: text-bottom !important;
}
.align-text-top {
  vertical-align: text-top !important;
}
.float-start {
  float: left !important;
}
.float-end {
  float: right !important;
}
.float-none {
  float: none !important;
}
.opacity-0 {
  opacity: 0 !important;
}
.opacity-25 {
  opacity: 0.25 !important;
}
.opacity-50 {
  opacity: 0.5 !important;
}
.opacity-75 {
  opacity: 0.75 !important;
}
.opacity-100 {
  opacity: 1 !important;
}
.overflow-auto {
  overflow: auto !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.overflow-visible {
  overflow: visible !important;
}
.overflow-scroll {
  overflow: scroll !important;
}
.overflow-scroll-y {
  overflow-y: scroll !important;
}
.overflow-scroll-x {
  overflow-x: scroll !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-grid {
  display: grid !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: flex !important;
}
.d-flex-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.d-flex-center-y {
  display: flex !important;
  align-items: center !important;
}
.d-flex-center-x {
  display: flex !important;
  justify-content: center !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-none {
  display: none !important;
}
.shadow {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
  box-shadow: none !important;
}
.position-static {
  position: static !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}
.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}
.fixed-top {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 1030 !important;
}
.fixed-bottom {
  position: fixed !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  z-index: 1030 !important;
}
.sticky-top {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1020 !important;
}
.sticky-bottom {
  position: -webkit-sticky !important;
  position: sticky !important;
  bottom: 0 !important;
  z-index: 1020 !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;
}
.outline-0 {
  outline: none !important;
}
.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-0 {
  border: 0 !important;
}
.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-top-0 {
  border-top: 0 !important;
}
.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-end-0 {
  border-right: 0 !important;
}
.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-bottom-0 {
  border-bottom: 0 !important;
}
.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-start-0 {
  border-left: 0 !important;
}
.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}
.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}
.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}
.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}
.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}
.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}
.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}
.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}
.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}
.border-1 {
  --bs-border-width: 1px;
}
.border-2 {
  --bs-border-width: 2px;
}
.border-3 {
  --bs-border-width: 3px;
}
.border-4 {
  --bs-border-width: 4px;
}
.border-5 {
  --bs-border-width: 5px;
}
.border-opacity-10 {
  --bs-border-opacity: 0.1;
}
.border-opacity-25 {
  --bs-border-opacity: 0.25;
}
.border-opacity-50 {
  --bs-border-opacity: 0.5;
}
.border-opacity-75 {
  --bs-border-opacity: 0.75;
}
.border-opacity-100 {
  --bs-border-opacity: 1;
}
.w-10 {
  width: 10% !important;
}
.w-15 {
  width: 15% !important;
}
.w-20 {
  width: 20% !important;
}
.w-25 {
  width: 25% !important;
}
.w-30 {
  width: 30% !important;
}
.w-35 {
  width: 35% !important;
}
.w-40 {
  width: 40% !important;
}
.w-45 {
  width: 45% !important;
}
.w-50 {
  width: 50% !important;
}
.w-55 {
  width: 55% !important;
}
.w-60 {
  width: 60% !important;
}
.w-65 {
  width: 65% !important;
}
.w-70 {
  width: 70% !important;
}
.w-75 {
  width: 75% !important;
}
.w-80 {
  width: 80% !important;
}
.w-85 {
  width: 85% !important;
}
.w-90 {
  width: 90% !important;
}
.w-95 {
  width: 95% !important;
}
.w-97 {
  width: 97% !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-10 {
  height: 10% !important;
}
.h-15 {
  height: 15% !important;
}
.h-20 {
  height: 20% !important;
}
.h-25 {
  height: 25% !important;
}
.h-30 {
  height: 30% !important;
}
.h-35 {
  height: 35% !important;
}
.h-40 {
  height: 40% !important;
}
.h-45 {
  height: 45% !important;
}
.h-50 {
  height: 50% !important;
}
.h-55 {
  height: 55% !important;
}
.h-60 {
  height: 60% !important;
}
.h-65 {
  height: 65% !important;
}
.h-70 {
  height: 70% !important;
}
.h-75 {
  height: 75% !important;
}
.h-80 {
  height: 80% !important;
}
.h-85 {
  height: 85% !important;
}
.h-90 {
  height: 90% !important;
}
.h-95 {
  height: 95% !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;
}
.pt-6 {
  padding-top: 4rem !important;
}
.pt-7 {
  padding-top: 5.5rem !important;
}
.pt-8 {
  padding-top: 7rem !important;
}
.pt-9 {
  padding-top: 8.5rem !important;
}
.pt-10 {
  padding-top: 11rem !important;
}
.pe-0 {
  padding-right: 0 !important;
}
.pe-1 {
  padding-right: 0.25rem !important;
}
.pe-2 {
  padding-right: 0.5rem !important;
}
.pe-3 {
  padding-right: 1rem !important;
}
.pe-4 {
  padding-right: 1.5rem !important;
}
.pe-5 {
  padding-right: 3rem !important;
}
.pe-6 {
  padding-right: 4rem !important;
}
.pe-7 {
  padding-right: 5.5rem !important;
}
.pe-8 {
  padding-right: 7rem !important;
}
.pe-9 {
  padding-right: 8.5rem !important;
}
.pe-10 {
  padding-right: 11rem !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 0.25rem !important;
}
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.pb-3 {
  padding-bottom: 1rem !important;
}
.pb-4 {
  padding-bottom: 1.5rem !important;
}
.pb-5 {
  padding-bottom: 3rem !important;
}
.pb-6 {
  padding-bottom: 4rem !important;
}
.pb-7 {
  padding-bottom: 5.5rem !important;
}
.pb-8 {
  padding-bottom: 7rem !important;
}
.pb-9 {
  padding-bottom: 8.5rem !important;
}
.pb-10 {
  padding-bottom: 11rem !important;
}
.ps-0 {
  padding-left: 0 !important;
}
.ps-1 {
  padding-left: 0.25rem !important;
}
.ps-2 {
  padding-left: 0.5rem !important;
}
.ps-3 {
  padding-left: 1rem !important;
}
.ps-4 {
  padding-left: 1.5rem !important;
}
.ps-5 {
  padding-left: 3rem !important;
}
.ps-6 {
  padding-left: 4rem !important;
}
.ps-7 {
  padding-left: 5.5rem !important;
}
.ps-8 {
  padding-left: 7rem !important;
}
.ps-9 {
  padding-left: 8.5rem !important;
}
.ps-10 {
  padding-left: 11rem !important;
}
.gap-0 {
  gap: 0 !important;
}
.gap-1 {
  gap: 0.25rem !important;
}
.gap-2 {
  gap: 0.5rem !important;
}
.gap-3 {
  gap: 1rem !important;
}
.gap-4 {
  gap: 1.5rem !important;
}
.gap-5 {
  gap: 3rem !important;
}
.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}
.fs-top {
  font-size: calc(2rem + 0.4vw) !important;
}
.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}
.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}
.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}
.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}
.fs-5 {
  font-size: 1.25rem !important;
}
.fs-6 {
  font-size: 1rem !important;
}
.fs-7 {
  font-size: 0.8rem !important;
}
.fs-8 {
  font-size: 0.7rem !important;
}
.fs-9 {
  font-size: 0.6rem !important;
}
.fs-10 {
  font-size: 0.5rem !important;
}
.fst-italic {
  font-style: italic !important;
}
.fst-normal {
  font-style: normal !important;
}
.fw-light {
  font-weight: 300 !important;
}
.fw-lighter {
  font-weight: lighter !important;
}
.fw-normal {
  font-weight: 400 !important;
}
.fw-bold {
  font-weight: 700 !important;
}
.fw-semibold {
  font-weight: 600 !important;
}
.fw-bolder {
  font-weight: bolder !important;
}
.lh-1 {
  line-height: 1 !important;
}
.lh-2 {
  line-height: 1.25 !important;
}
.lh-3 {
  line-height: 1.5 !important;
}
.lh-4 {
  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;
}
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}
.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-secondary-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-light-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-light-2 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-2-rgb), var(--bs-text-opacity)) !important;
}
.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}
.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}
.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}
.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}
.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}
.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}
.text-opacity-25 {
  --bs-text-opacity: 0.25;
}
.text-opacity-50 {
  --bs-text-opacity: 0.5;
}
.text-opacity-75 {
  --bs-text-opacity: 0.75;
}
.text-opacity-100 {
  --bs-text-opacity: 1;
}
.bg-none {
  background: 0 0 !important;
}
.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}
.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}
.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}
.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}
.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}
.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}
.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}
.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}
.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}
.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}
.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}
.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}
.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}
.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.pe-auto {
  pointer-events: auto !important;
}
.rounded {
  border-radius: var(--bs-border-radius) !important;
}
.rounded-0 {
  border-radius: 0 !important;
}
.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}
.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}
.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}
.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}
.rounded-5 {
  border-radius: var(--bs-border-radius-2xl) !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}
.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}
.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}
.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}
.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}
.visible {
  visibility: visible !important;
}
.invisible {
  visibility: hidden !important;
}

.hr-1 {
  height: 0.3rem !important;
}
.hr-2 {
  height: 0.5rem !important;
}
.hr-3 {
  height: 1rem !important;
}
.hr-4 {
  height: 1.5rem !important;
}
.hr-5 {
  height: 2.5rem !important;
}
.hr-6 {
  height: 3rem !important;
}
.hr-7 {
  height: 3.5rem !important;
}
.hr-8 {
  height: 4rem !important;
}
.hr-9 {
  height: 4.5rem !important;
}
.hr-10 {
  height: 6rem !important;
}
.wr-1 {
  width: 0.3rem !important;
}
.wr-2 {
  width: 0.5rem !important;
}
.wr-3 {
  width: 1rem !important;
}
.wr-4 {
  width: 1.5rem !important;
}
.wr-5 {
  width: 2.5rem !important;
}
.wr-6 {
  width: 3rem !important;
}
.wr-7 {
  width: 3.5rem !important;
}
.wr-8 {
  width: 4rem !important;
}
.wr-9 {
  width: 4.5rem !important;
}
.wr-10 {
  width: 6rem !important;
}

/* Grid System */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid-auto-sm {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.grid-auto-lg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* Spacing Utilities */
.gap-xs {
  gap: var(--space-xs);
}
.gap-sm {
  gap: var(--space-sm);
}
.gap-md {
  gap: var(--space-md);
}
.gap-lg {
  gap: var(--space-lg);
}
.gap-xl {
  gap: var(--space-xl);
}
.gap-2xl {
  gap: var(--space-2xl);
}

/* Background Utilities */
.bg-primary-dark {
  background: var(--bg-primary);
}
.bg-secondary-dark {
  background: var(--bg-secondary);
}
.bg-card {
  background: var(--bg-card);
}
.bg-glass {
  background: var(--bg-glass);
}
.bg-gradient-primary {
  background: var(--gradient-primary);
}
.bg-gradient-secondary {
  background: var(--gradient-secondary);
}
.bg-gradient-accent {
  background: var(--gradient-accent);
}
.bg-gradient-dark {
  background: var(--gradient-dark);
}

/* Text Colors */
.text-primary-light {
  color: var(--text-primary);
}
.text-secondary-light {
  color: var(--text-secondary);
}
.text-muted-light {
  color: var(--text-muted);
}
.text-accent {
  color: var(--text-accent);
}
.text-cyan {
  color: var(--primary-cyan);
}
.text-green {
  color: var(--accent-green);
}

/* Border Radius */
.rounded-sm {
  border-radius: var(--radius-sm);
}
.rounded-md {
  border-radius: var(--radius-md);
}
.rounded-lg {
  border-radius: var(--radius-lg);
}
.rounded-xl {
  border-radius: var(--radius-xl);
}

/* Shadows */
.shadow-glow {
  box-shadow: var(--shadow-glow);
}
.shadow-glow-strong {
  box-shadow: var(--shadow-glow-strong);
}
.shadow-card {
  box-shadow: var(--shadow-card);
}
.shadow-button {
  box-shadow: var(--shadow-button);
}

/* Transitions */
.transition-fast {
  transition: var(--transition-fast);
}
.transition-smooth {
  transition: var(--transition-smooth);
}
.transition-bounce {
  transition: var(--transition-bounce);
}

/* Backdrop Filter */
.backdrop-blur {
  backdrop-filter: blur(20px);
}
.backdrop-blur-sm {
  backdrop-filter: blur(10px);
}
.backdrop-blur-lg {
  backdrop-filter: blur(30px);
}

/* Transform Utilities */
.transform-hover:hover {
  transform: translateY(-5px);
}
.transform-hover-sm:hover {
  transform: translateY(-3px);
}
.transform-hover-lg:hover {
  transform: translateY(-10px);
}

/* Min Height */
.min-h-screen {
  min-height: 100vh;
}

/* Max Width */
.max-w-xs {
  max-width: 20rem;
}
.max-w-sm {
  max-width: 24rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-xl {
  max-width: 36rem;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-7xl {
  max-width: 80rem;
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .grid-auto {
    grid-template-columns: 1fr;
  }
  .grid-auto-sm {
    grid-template-columns: 1fr;
  }
  .grid-auto-lg {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 576px) {
  .h-mm-10 {
    height: 10% !important;
  }
  .h-mm-20 {
    height: 20% !important;
  }
  .h-mm-25 {
    height: 25% !important;
  }
  .h-mm-30 {
    height: 30% !important;
  }
  .h-mm-35 {
    height: 35% !important;
  }
  .h-mm-40 {
    height: 40% !important;
  }
  .h-mm-45 {
    height: 45% !important;
  }
  .h-mm-50 {
    height: 50% !important;
  }
  .h-mm-55 {
    height: 55% !important;
  }
  .h-mm-60 {
    height: 60% !important;
  }
  .h-mm-65 {
    height: 65% !important;
  }
  .h-mm-70 {
    height: 70% !important;
  }
  .h-mm-75 {
    height: 75% !important;
  }
  .h-mm-80 {
    height: 80% !important;
  }
  .h-mm-85 {
    height: 85% !important;
  }
  .h-mm-90 {
    height: 90% !important;
  }
  .h-mm-95 {
    height: 95% !important;
  }
  .h-mm-100 {
    height: 100% !important;
  }
  .h-mm-auto {
    height: auto !important;
  }
  .mh-mm-100 {
    max-height: 100% !important;
  }
  .vh-mm-100 {
    height: 100vh !important;
  }
  .hr-mm-1 {
    height: 0.3rem !important;
  }
  .hr-mm-2 {
    height: 0.5rem !important;
  }
  .hr-mm-3 {
    height: 1rem !important;
  }
  .hr-mm-4 {
    height: 1.5rem !important;
  }
  .hr-mm-5 {
    height: 2.5rem !important;
  }
  .hr-mm-6 {
    height: 3rem !important;
  }
  .hr-mm-7 {
    height: 3.5rem !important;
  }
  .hr-mm-8 {
    height: 4rem !important;
  }
  .hr-mm-9 {
    height: 4.5rem !important;
  }
  .hr-mm-10 {
    height: 6rem !important;
  }
  .wr-mm-1 {
    width: 0.3rem !important;
  }
  .wr-mm-2 {
    width: 0.5rem !important;
  }
  .wr-mm-3 {
    width: 1rem !important;
  }
  .wr-mm-4 {
    width: 1.5rem !important;
  }
  .wr-mm-5 {
    width: 2.5rem !important;
  }
  .wr-mm-6 {
    width: 3rem !important;
  }
  .wr-mm-7 {
    width: 3.5rem !important;
  }
  .wr-mm-8 {
    width: 4rem !important;
  }
  .wr-m-9 {
    width: 4.5rem !important;
  }
  .wr-mm-10 {
    width: 6rem !important;
  }
  .w-mm-10 {
    width: 10% !important;
  }
  .w-mm-15 {
    width: 15% !important;
  }
  .w-mm-20 {
    width: 20% !important;
  }
  .w-mm-25 {
    width: 25% !important;
  }
  .w-mm-40 {
    width: 40% !important;
  }
  .w-mm-45 {
    width: 45% !important;
  }
  .w-mm-50 {
    width: 50% !important;
  }
  .w-mm-55 {
    width: 55% !important;
  }
  .w-mm-60 {
    width: 60% !important;
  }
  .w-mm-65 {
    width: 65% !important;
  }
  .w-mm-70 {
    width: 70% !important;
  }
  .w-mm-75 {
    width: 75% !important;
  }
  .w-mm-80 {
    width: 80% !important;
  }
  .w-mm-85 {
    width: 85% !important;
  }
  .w-mm-90 {
    width: 90% !important;
  }
  .w-mm-95 {
    width: 95% !important;
  }
  .w-mm-100 {
    width: 100% !important;
  }
  .m-mm-0 {
    margin: 0 !important;
  }
  .m-mm-1 {
    margin: 0.25rem !important;
  }
  .m-mm-2 {
    margin: 0.5rem !important;
  }
  .m-mm-3 {
    margin: 1rem !important;
  }
  .m-mm-4 {
    margin: 1.5rem !important;
  }
  .m-mm-5 {
    margin: 3rem !important;
  }
  .my-mm-0 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }
  .my-mm-1 {
    margin-bottom: 0.25rem !important;
    margin-top: 0.25rem !important;
  }
  .my-mm-2 {
    margin-bottom: 0.5rem !important;
    margin-top: 0.5rem !important;
  }
  .my-mm-3 {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
  }
  .my-mm-4 {
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
  }
  .my-mm-5 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
  }
  .my-mm-auto {
    margin-bottom: auto;
    margin-top: auto;
  }
  .mx-mm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-mm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-mm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-mm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-mm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-mm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-mm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .p-mm-0 {
    padding: 0 !important;
  }
  .p-mm-1 {
    padding: 0.25rem !important;
  }
  .p-mm-2 {
    padding: 0.5rem !important;
  }
  .p-mm-3 {
    padding: 1rem !important;
  }
  .p-mm-4 {
    padding: 1.5rem !important;
  }
  .p-mm-5 {
    padding: 3rem !important;
  }
  .p-mm-auto {
    padding: auto !important;
  }
  .py-mm-0 {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }
  .py-mm-1 {
    padding-bottom: 0.25rem !important;
    padding-top: 0.25rem !important;
  }
  .py-mm-2 {
    padding-bottom: 0.5rem !important;
    padding-top: 0.5rem !important;
  }
  .py-mm-3 {
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
  }
  .py-mm-4 {
    padding-bottom: 1.5rem !important;
    padding-top: 1.5rem !important;
  }
  .py-mm-5 {
    padding-bottom: 3rem !important;
    padding-top: 3rem !important;
  }
  .py-mm-auto {
    padding-bottom: auto;
    padding-top: auto;
  }
  .px-mm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-mm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-mm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-mm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-mm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-mm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-mm-auto {
    padding-right: auto !important;
    padding-left: auto !important;
  }
  .ms-mm-0 {
    margin-left: 0 !important;
  }
  .ms-mm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-mm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-mm-3 {
    margin-left: 1rem !important;
  }
  .ms-mm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-mm-5 {
    margin-left: 3rem !important;
  }
  .ms-mm-auto {
    margin-left: auto !important;
  }
  .ps-mm-0 {
    padding-left: 0 !important;
  }
  .ps-mm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-mm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-mm-3 {
    padding-left: 1rem !important;
  }
  .ps-mm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-mm-5 {
    padding-left: 3rem !important;
  }
  .ps-mm-auto {
    padding-left: auto !important;
  }
  .pe-mm-0 {
    padding-right: 0 !important;
  }
  .pe-mm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-mm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-mm-3 {
    padding-right: 1rem !important;
  }
  .pe-mm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-mm-5 {
    padding-right: 3rem !important;
  }
  .pe-mm-auto {
    padding-right: auto !important;
  }
  .pt-mm-0 {
    padding-top: 0 !important;
  }
  .pt-mm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-mm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-mm-3 {
    padding-top: 1rem !important;
  }
  .pt-mm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-mm-5 {
    padding-top: 3rem !important;
  }
  .ps-tm-auto {
    padding-top: auto !important;
  }
  .pb-mm-0 {
    padding-bottom: 0 !important;
  }
  .pb-mm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-mm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-mm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-mm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-mm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-mm-auto {
    padding-bottom: auto !important;
  }
  .me-mm-0 {
    margin-right: 0 !important;
  }
  .me-mm-1 {
    margin-right: 0.25rem !important;
  }
  .me-mm-2 {
    margin-right: 0.5rem !important;
  }
  .me-mm-3 {
    margin-right: 1rem !important;
  }
  .me-mm-4 {
    margin-right: 1.5rem !important;
  }
  .me-mm-5 {
    margin-right: 3rem !important;
  }
  .me-mm-auto {
    margin-right: auto !important;
  }
  .mt-mm-0 {
    margin-top: 0 !important;
  }
  .mt-mm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-mm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-mm-3 {
    margin-top: 1rem !important;
  }
  .mt-mm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-mm-5 {
    margin-top: 3rem !important;
  }
  .mt-mm-auto {
    margin-top: auto !important;
  }
  .mb-mm-0 {
    margin-bottom: 0 !important;
  }
  .mb-mm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-mm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-mm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-mm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-mm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-mm-auto {
    margin-bottom: auto !important;
  }
}
@media screen and (max-width: 576px) {
  .border-mm {
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  }
  .border-mm-0 {
    border: 0 !important;
  }
  .border-mm-top {
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  }
  .border-mm-top-0 {
    border-top: 0 !important;
  }
  .border-mm-end {
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  }
  .border-mm-end-0 {
    border-right: 0 !important;
  }
  .border-mm-bottom {
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  }
  .border-mm-bottom-0 {
    border-bottom: 0 !important;
  }
  .border-mm-start {
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  }
  .border-mm-start-0 {
    border-left: 0 !important;
  }
  .border-mm-primary {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
  }
  .border-mm-secondary {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
  }
  .border-mm-success {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
  }
  .border-mm-info {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
  }
  .border-mm-warning {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
  }
  .border-mm-danger {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
  }
  .border-mm-light {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
  }
  .border-mm-dark {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
  }
  .border-mm-white {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
  }
  .border-mm-1 {
    --bs-border-width: 1px;
  }
  .border-mm-2 {
    --bs-border-width: 2px;
  }
  .border-mm-3 {
    --bs-border-width: 3px;
  }
  .border-mm-4 {
    --bs-border-width: 4px;
  }
  .border-mm-5 {
    --bs-border-width: 5px;
  }
  .border-mm-opacity-10 {
    --bs-border-opacity: 0.1;
  }
  .border-mm-opacity-25 {
    --bs-border-opacity: 0.25;
  }
  .border-mm-opacity-50 {
    --bs-border-opacity: 0.5;
  }
  .border-mm-opacity-75 {
    --bs-border-opacity: 0.75;
  }
  .border-mm-opacity-100 {
    --bs-border-opacity: 1;
  }
  .bg-mm-none {
    background: 0 0 !important;
  }
  .bg-mm-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
  }
  .bg-mm-secondary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
  }
  .bg-mm-success {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
  }
  .bg-mm-info {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
  }
  .bg-mm-warning {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
  }
  .bg-mm-danger {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
  }
  .bg-mm-light {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
  }
  .bg-mm-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
  }
  .bg-mm-black {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
  }
  .bg-mm-white {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
  }
  .bg-mm-body {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
  }
  .bg-mm-transparent {
    --bs-bg-opacity: 1;
    background-color: transparent !important;
  }
  .bg-mm-opacity-10 {
    --bs-bg-opacity: 0.1;
  }
  .bg-mm-opacity-25 {
    --bs-bg-opacity: 0.25;
  }
  .bg-mm-opacity-50 {
    --bs-bg-opacity: 0.5;
  }
  .bg-mm-opacity-75 {
    --bs-bg-opacity: 0.75;
  }
  .bg-mm-opacity-100 {
    --bs-bg-opacity: 1;
  }
  .bg-mm-gradient {
    background-image: var(--bs-gradient) !important;
  }
  .user-mm-select-all {
    -webkit-user-select: all !important;
    -moz-user-select: all !important;
    user-select: all !important;
  }
  .user-mm-select-auto {
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    user-select: auto !important;
  }
  .user-mm-select-none {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    user-select: none !important;
  }
  .rounded-mm {
    border-radius: var(--bs-border-radius) !important;
  }
  .rounded-mm-0 {
    border-radius: 0 !important;
  }
  .rounded-mm-1 {
    border-radius: var(--bs-border-radius-sm) !important;
  }
  .rounded-mm-2 {
    border-radius: var(--bs-border-radius) !important;
  }
  .rounded-mm-3 {
    border-radius: var(--bs-border-radius-lg) !important;
  }
  .rounded-mm-4 {
    border-radius: var(--bs-border-radius-xl) !important;
  }
  .rounded-mm-5 {
    border-radius: var(--bs-border-radius-2xl) !important;
  }
  .rounded-mm-circle {
    border-radius: 50% !important;
  }
  .rounded-mm-pill {
    border-radius: var(--bs-border-radius-pill) !important;
  }
  .rounded-mm-top {
    border-top-left-radius: var(--bs-border-radius) !important;
    border-top-right-radius: var(--bs-border-radius) !important;
  }
  .rounded-mm-end {
    border-top-right-radius: var(--bs-border-radius) !important;
    border-bottom-right-radius: var(--bs-border-radius) !important;
  }
  .rounded-mm-bottom {
    border-bottom-right-radius: var(--bs-border-radius) !important;
    border-bottom-left-radius: var(--bs-border-radius) !important;
  }
  .rounded-mm-start {
    border-bottom-left-radius: var(--bs-border-radius) !important;
    border-top-left-radius: var(--bs-border-radius) !important;
  }
  .visible-mm {
    visibility: visible !important;
  }
  .invisible-mm {
    visibility: hidden !important;
  }
}
@media screen and (max-width: 576px) {
  .text-mm-lowercase {
    text-transform: lowercase !important;
  }
  .text-mm-uppercase {
    text-transform: uppercase !important;
  }
  .text-mm-capitalize {
    text-transform: capitalize !important;
  }
  .text-mm-start {
    text-align: left !important;
  }
  .text-mm-end {
    text-align: right !important;
  }
  .text-mm-center {
    text-align: center !important;
  }
  .text-mm-primary {
    color: #0d6efd !important;
  }
  .text-mm-secondary {
    color: #6c757d !important;
  }
  .text-mm-success {
    color: #198754 !important;
  }
  .text-mm-info {
    color: #0dcaf0 !important;
  }
  .text-mm-warning {
    color: #ffc107 !important;
  }
  .text-mm-danger {
    color: #dc3545 !important;
  }
  .text-mm-light {
    color: #f8f9fa !important;
  }
  .text-mm-dark {
    color: #212529 !important;
  }
  .text-mm-white {
    color: #fff !important;
  }
  .text-mm-body {
    color: #212529 !important;
  }
  .text-mm-muted {
    color: #6c757d !important;
  }
  .text-mm-black-50 {
    color: rgba(0, 0, 0, 0.5) !important;
  }
  .text-mm-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .text-mm-reset {
    color: inherit !important;
  }
  .fs-mm-1 {
    font-size: calc(1.375rem + 1.5vw) !important;
  }
  .fs-mm-2 {
    font-size: calc(1.325rem + 0.9vw) !important;
  }
  .fs-mm-3 {
    font-size: calc(1.3rem + 0.6vw) !important;
  }
  .fs-mm-4 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }
  .fs-mm-5 {
    font-size: 1.25rem !important;
  }
  .fs-mm-6 {
    font-size: 1rem !important;
  }
  .fs-mm-7 {
    font-size: 0.8rem !important;
  }
  .fs-mm-8 {
    font-size: 0.67rem !important;
  }
  .fs-mm-9 {
    font-size: 0.55rem !important;
  }
  .fst-mm-italic {
    font-style: italic !important;
  }
  .fst-mm-normal {
    font-style: normal !important;
  }
  .fw-lmm-ight {
    font-weight: 300 !important;
  }
  .fw-lmm-ighter {
    font-weight: lighter !important;
  }
  .fw-nmm-ormal {
    font-weight: 400 !important;
  }
  .fw-bold {
    font-weight: 700 !important;
  }
  .fw-bolder {
    font-weight: bolder !important;
  }
}
@media screen and (max-width: 576px) {
  .d-mm-inline {
    display: inline !important;
  }
  .d-mm-inline-block {
    display: inline-block !important;
  }
  .d-mm-block {
    display: block !important;
  }
  .d-mm-grid {
    display: grid !important;
  }
  .d-mm-table {
    display: table !important;
  }
  .d-mm-table-row {
    display: table-row !important;
  }
  .d-mm-table-cell {
    display: table-cell !important;
  }
  .d-mm-flex {
    display: flex !important;
  }
  .d-mm-flex-center {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .d-mm-flex-center-y {
    display: flex !important;
    align-items: center !important;
  }
  .d-mm-flex-center-x {
    display: flex !important;
    justify-content: center !important;
  }
  .d-mm-inline-flex {
    display: inline-flex !important;
  }
  .d-mm-none {
    display: none !important;
  }
  .flex-mm-fill {
    flex: 1 1 auto !important;
  }
  .flex-mm-row {
    flex-direction: row !important;
  }
  .flex-mm-column {
    flex-direction: column !important;
  }
  .flex-mm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-mm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-mm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-mm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-mm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-mm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-mm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-mm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-mm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-mm-content-start {
    justify-content: flex-start !important;
  }
  .justify-mm-content-end {
    justify-content: flex-end !important;
  }
  .justify-mm-content-center {
    justify-content: center !important;
  }
  .justify-mm-content-between {
    justify-content: space-between !important;
  }
  .justify-mm-content-around {
    justify-content: space-around !important;
  }
  .justify-mm-content-evenly {
    justify-content: space-evenly !important;
  }
  .align-mm-items-start {
    align-items: flex-start !important;
  }
  .align-mm-items-end {
    align-items: flex-end !important;
  }
  .align-mm-items-center {
    align-items: center !important;
  }
  .align-mm-items-baseline {
    align-items: baseline !important;
  }
  .align-mm-items-stretch {
    align-items: stretch !important;
  }
  .align-mm-content-start {
    align-content: flex-start !important;
  }
  .align-mm-content-end {
    align-content: flex-end !important;
  }
  .align-mm-content-center {
    align-content: center !important;
  }
  .align-mm-content-between {
    align-content: space-between !important;
  }
  .align-mm-content-around {
    align-content: space-around !important;
  }
  .align-mm-content-stretch {
    align-content: stretch !important;
  }
  .align-mm-self-auto {
    align-self: auto !important;
  }
  .align-mm-self-start {
    align-self: flex-start !important;
  }
  .align-mm-self-end {
    align-self: flex-end !important;
  }
  .align-mm-self-center {
    align-self: center !important;
  }
  .align-mm-self-baseline {
    align-self: baseline !important;
  }
  .align-mm-self-stretch {
    align-self: stretch !important;
  }
  .order-mm-first {
    order: -1 !important;
  }
  .order-mm-0 {
    order: 0 !important;
  }
  .order-mm-1 {
    order: 1 !important;
  }
  .order-mm-2 {
    order: 2 !important;
  }
  .order-mm-3 {
    order: 3 !important;
  }
  .order-mm-4 {
    order: 4 !important;
  }
  .order-mm-5 {
    order: 5 !important;
  }
  .order-mm-last {
    order: 6 !important;
  }
  .shadow-mm {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  }
  .shadow-mm-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  }
  .shadow-mm-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  }
  .shadow-mm-none {
    box-shadow: none !important;
  }
  .position-mm-static {
    position: static !important;
  }
  .position-mm-relative {
    position: relative !important;
  }
  .position-mm-absolute {
    position: absolute !important;
  }
  .position-mm-fixed {
    position: fixed !important;
  }
  .position-mm-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
  }
  .top-mm-0 {
    top: 0 !important;
  }
  -mm .top-mm-50 {
    top: 50% !important;
  }
  .top-mm-100 {
    top: 100% !important;
  }
  .bottom-mm-0 {
    bottom: 0 !important;
  }
  .bottom-mm-50 {
    bottom: 50% !important;
  }
  .bottom-mm-100 {
    bottom: 100% !important;
  }
  .start-mm-0 {
    left: 0 !important;
  }
  .start-mm-50 {
    left: 50% !important;
  }
  .start-mm-100 {
    left: 100% !important;
  }
  .end-mm-0 {
    right: 0 !important;
  }
  .end-mm-50 {
    right: 50% !important;
  }
  .end-mm-100 {
    right: 100% !important;
  }
  .translate-mm-middle {
    transform: translate(-50%, -50%) !important;
  }
  .translate-mm-middle-x {
    transform: translateX(-50%) !important;
  }
  .translate-mm-middle-y {
    transform: translateY(-50%) !important;
  }
}
@media screen and (min-width: 578px) {
  .hr-cm-1 {
    height: 0.3rem !important;
  }
  .hr-cm-2 {
    height: 0.5rem !important;
  }
  .hr-cm-3 {
    height: 1rem !important;
  }
  .hr-cm-4 {
    height: 1.5rem !important;
  }
  .hr-cm-5 {
    height: 2.5rem !important;
  }
  .hr-cm-6 {
    height: 3rem !important;
  }
  .hr-cm-7 {
    height: 3.5rem !important;
  }
  .hr-cm-8 {
    height: 4rem !important;
  }
  .hr-cm-9 {
    height: 4.5rem !important;
  }
  .hr-cm-10 {
    height: 6rem !important;
  }
  .wr-cm-1 {
    width: 0.3rem !important;
  }
  .wr-cm-2 {
    width: 0.5rem !important;
  }
  .wr-cm-3 {
    width: 1rem !important;
  }
  .wr-cm-4 {
    width: 1.5rem !important;
  }
  .wr-cm-5 {
    width: 2.5rem !important;
  }
  .wr-cm-6 {
    width: 3rem !important;
  }
  .wr-cm-7 {
    width: 3.5rem !important;
  }
  .wr-cm-8 {
    width: 4rem !important;
  }
  .wr-m-9 {
    width: 4.5rem !important;
  }
  .wr-cm-10 {
    width: 6rem !important;
  }
  .w-cm-10 {
    width: 10% !important;
  }
  .w-cm-15 {
    width: 15% !important;
  }
  .w-cm-20 {
    width: 20% !important;
  }
  .w-cm-25 {
    width: 25% !important;
  }
  .w-cm-30 {
    width: 30% !important;
  }
  .w-cm-35 {
    width: 35% !important;
  }
  .w-cm-40 {
    width: 40% !important;
  }
  .w-cm-45 {
    width: 45% !important;
  }
  .w-cm-50 {
    width: 50% !important;
  }
  .w-cm-55 {
    width: 55% !important;
  }
  .w-cm-60 {
    width: 60% !important;
  }
  .w-cm-65 {
    width: 65% !important;
  }
  .w-cm-70 {
    width: 70% !important;
  }
  .w-cm-75 {
    width: 75% !important;
  }
  .w-cm-80 {
    width: 80% !important;
  }
  .w-cm-85 {
    width: 85% !important;
  }
  .w-cm-90 {
    width: 90% !important;
  }
  .w-cm-95 {
    width: 95% !important;
  }
  .w-cm-100 {
    width: 100% !important;
  }
  .h-cm-10 {
    height: 10% !important;
  }
  .h-cm-20 {
    height: 20% !important;
  }
  .h-cm-25 {
    height: 25% !important;
  }
  .h-cm-30 {
    height: 30% !important;
  }
  .h-cm-35 {
    height: 35% !important;
  }
  .h-cm-40 {
    height: 40% !important;
  }
  .h-cm-45 {
    height: 45% !important;
  }
  .h-cm-50 {
    height: 50% !important;
  }
  .h-cm-55 {
    height: 55% !important;
  }
  .h-cm-60 {
    height: 60% !important;
  }
  .h-cm-65 {
    height: 65% !important;
  }
  .h-cm-70 {
    height: 70% !important;
  }
  .h-cm-75 {
    height: 75% !important;
  }
  .h-cm-80 {
    height: 80% !important;
  }
  .h-cm-85 {
    height: 85% !important;
  }
  .h-cm-90 {
    height: 90% !important;
  }
  .h-cm-95 {
    height: 95% !important;
  }
  .h-cm-100 {
    height: 100% !important;
  }
  .h-cm-auto {
    height: auto !important;
  }
  .mh-cm-100 {
    max-height: 100% !important;
  }
  .vh-cm-100 {
    height: 100vh !important;
  }
  .m-cm-0 {
    margin: 0 !important;
  }
  .m-cm-1 {
    margin: 0.25rem !important;
  }
  .m-cm-2 {
    margin: 0.5rem !important;
  }
  .m-cm-3 {
    margin: 1rem !important;
  }
  .m-cm-4 {
    margin: 1.5rem !important;
  }
  .m-cm-5 {
    margin: 3rem !important;
  }
  .my-cm-0 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }
  .my-cm-1 {
    margin-bottom: 0.25rem !important;
    margin-top: 0.25rem !important;
  }
  .my-cm-2 {
    margin-bottom: 0.5rem !important;
    margin-top: 0.5rem !important;
  }
  .my-cm-3 {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
  }
  .my-cm-4 {
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
  }
  .my-cm-5 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
  }
  .my-cm-auto {
    margin-bottom: auto;
    margin-top: auto;
  }
  .mx-cm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-cm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-cm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-cm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-cm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-cm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-cm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .p-cm-0 {
    padding: 0 !important;
  }
  .p-cm-1 {
    padding: 0.25rem !important;
  }
  .p-cm-2 {
    padding: 0.5rem !important;
  }
  .p-cm-3 {
    padding: 1rem !important;
  }
  .p-cm-4 {
    padding: 1.5rem !important;
  }
  .p-cm-5 {
    padding: 3rem !important;
  }
  .p-cm-auto {
    padding: auto !important;
  }
  .py-cm-0 {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }
  .py-cm-1 {
    padding-bottom: 0.25rem !important;
    padding-top: 0.25rem !important;
  }
  .py-cm-2 {
    padding-bottom: 0.5rem !important;
    padding-top: 0.5rem !important;
  }
  .py-cm-3 {
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
  }
  .py-cm-4 {
    padding-bottom: 1.5rem !important;
    padding-top: 1.5rem !important;
  }
  .py-cm-5 {
    padding-bottom: 3rem !important;
    padding-top: 3rem !important;
  }
  .py-cm-auto {
    padding-bottom: auto;
    padding-top: auto;
  }
  .px-cm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-cm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-cm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-cm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-cm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-cm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-cm-auto {
    padding-right: auto !important;
    padding-left: auto !important;
  }
  .ms-cm-0 {
    margin-left: 0 !important;
  }
  .ms-cm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-cm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-cm-3 {
    margin-left: 1rem !important;
  }
  .ms-cm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-cm-5 {
    margin-left: 3rem !important;
  }
  .ms-cm-auto {
    margin-left: auto !important;
  }
  .ps-cm-0 {
    padding-left: 0 !important;
  }
  .ps-cm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-cm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-cm-3 {
    padding-left: 1rem !important;
  }
  .ps-cm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-cm-5 {
    padding-left: 3rem !important;
  }
  .ps-cm-auto {
    padding-left: auto !important;
  }
  .pe-cm-0 {
    padding-right: 0 !important;
  }
  .pe-cm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-cm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-cm-3 {
    padding-right: 1rem !important;
  }
  .pe-cm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-cm-5 {
    padding-right: 3rem !important;
  }
  .pe-cm-auto {
    padding-right: auto !important;
  }
  .pt-cm-0 {
    padding-top: 0 !important;
  }
  .pt-cm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-cm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-cm-3 {
    padding-top: 1rem !important;
  }
  .pt-cm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-cm-5 {
    padding-top: 3rem !important;
  }
  .ps-tm-auto {
    padding-top: auto !important;
  }
  .pb-cm-0 {
    padding-bottom: 0 !important;
  }
  .pb-cm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-cm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-cm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-cm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-cm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-cm-auto {
    padding-bottom: auto !important;
  }
  .me-cm-0 {
    margin-right: 0 !important;
  }
  .me-cm-1 {
    margin-right: 0.25rem !important;
  }
  .me-cm-2 {
    margin-right: 0.5rem !important;
  }
  .me-cm-3 {
    margin-right: 1rem !important;
  }
  .me-cm-4 {
    margin-right: 1.5rem !important;
  }
  .me-cm-5 {
    margin-right: 3rem !important;
  }
  .me-cm-auto {
    margin-right: auto !important;
  }
  .mt-cm-0 {
    margin-top: 0 !important;
  }
  .mt-cm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-cm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-cm-3 {
    margin-top: 1rem !important;
  }
  .mt-cm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-cm-5 {
    margin-top: 3rem !important;
  }
  .mt-cm-auto {
    margin-top: auto !important;
  }
  .mb-cm-0 {
    margin-bottom: 0 !important;
  }
  .mb-cm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-cm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-cm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-cm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-cm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-cm-auto {
    margin-bottom: auto !important;
  }
}
@media screen and (min-width: 578px) {
  .border-cm {
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  }
  .border-cm-0 {
    border: 0 !important;
  }
  .border-cm-top {
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  }
  .border-cm-top-0 {
    border-top: 0 !important;
  }
  .border-cm-end {
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  }
  .border-cm-end-0 {
    border-right: 0 !important;
  }
  .border-cm-bottom {
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  }
  .border-cm-bottom-0 {
    border-bottom: 0 !important;
  }
  .border-cm-start {
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  }
  .border-cm-start-0 {
    border-left: 0 !important;
  }
  .border-cm-primary {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
  }
  .border-cm-secondary {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
  }
  .border-cm-success {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
  }
  .border-cm-info {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
  }
  .border-cm-warning {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
  }
  .border-cm-danger {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
  }
  .border-cm-light {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
  }
  .border-cm-dark {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
  }
  .border-cm-white {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
  }
  .border-cm-1 {
    --bs-border-width: 1px;
  }
  .border-cm-2 {
    --bs-border-width: 2px;
  }
  .border-cm-3 {
    --bs-border-width: 3px;
  }
  .border-cm-4 {
    --bs-border-width: 4px;
  }
  .border-cm-5 {
    --bs-border-width: 5px;
  }
  .border-cm-opacity-10 {
    --bs-border-opacity: 0.1;
  }
  .border-cm-opacity-25 {
    --bs-border-opacity: 0.25;
  }
  .border-cm-opacity-50 {
    --bs-border-opacity: 0.5;
  }
  .border-cm-opacity-75 {
    --bs-border-opacity: 0.75;
  }
  .border-cm-opacity-100 {
    --bs-border-opacity: 1;
  }
  .bg-cm-none {
    background: 0 0 !important;
  }
  .bg-cm-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
  }
  .bg-cm-secondary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
  }
  .bg-cm-success {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
  }
  .bg-cm-info {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
  }
  .bg-cm-warning {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
  }
  .bg-cm-danger {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
  }
  .bg-cm-light {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
  }
  .bg-cm-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
  }
  .bg-cm-black {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
  }
  .bg-cm-white {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
  }
  .bg-cm-body {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
  }
  .bg-cm-transparent {
    --bs-bg-opacity: 1;
    background-color: transparent !important;
  }
  .bg-cm-opacity-10 {
    --bs-bg-opacity: 0.1;
  }
  .bg-cm-opacity-25 {
    --bs-bg-opacity: 0.25;
  }
  .bg-cm-opacity-50 {
    --bs-bg-opacity: 0.5;
  }
  .bg-cm-opacity-75 {
    --bs-bg-opacity: 0.75;
  }
  .bg-cm-opacity-100 {
    --bs-bg-opacity: 1;
  }
  .bg-cm-gradient {
    background-image: var(--bs-gradient) !important;
  }
  .user-cm-select-all {
    -webkit-user-select: all !important;
    -moz-user-select: all !important;
    user-select: all !important;
  }
  .user-cm-select-auto {
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    user-select: auto !important;
  }
  .user-cm-select-none {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    user-select: none !important;
  }
  .rounded-mm {
    border-radius: var(--bs-border-radius) !important;
  }
  .rounded-cm-0 {
    border-radius: 0 !important;
  }
  .rounded-cm-1 {
    border-radius: var(--bs-border-radius-sm) !important;
  }
  .rounded-cm-2 {
    border-radius: var(--bs-border-radius) !important;
  }
  .rounded-cm-3 {
    border-radius: var(--bs-border-radius-lg) !important;
  }
  .rounded-cm-4 {
    border-radius: var(--bs-border-radius-xl) !important;
  }
  .rounded-cm-5 {
    border-radius: var(--bs-border-radius-2xl) !important;
  }
  .rounded-cm-circle {
    border-radius: 50% !important;
  }
  .rounded-cm-pill {
    border-radius: var(--bs-border-radius-pill) !important;
  }
  .rounded-cm-top {
    border-top-left-radius: var(--bs-border-radius) !important;
    border-top-right-radius: var(--bs-border-radius) !important;
  }
  .rounded-cm-end {
    border-top-right-radius: var(--bs-border-radius) !important;
    border-bottom-right-radius: var(--bs-border-radius) !important;
  }
  .rounded-cm-bottom {
    border-bottom-right-radius: var(--bs-border-radius) !important;
    border-bottom-left-radius: var(--bs-border-radius) !important;
  }
  .rounded-cm-start {
    border-bottom-left-radius: var(--bs-border-radius) !important;
    border-top-left-radius: var(--bs-border-radius) !important;
  }
  .visible-mm {
    visibility: visible !important;
  }
  .invisible-mm {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 578px) {
  .text-cm-lowercase {
    text-transform: lowercase !important;
  }
  .text-cm-uppercase {
    text-transform: uppercase !important;
  }
  .text-cm-capitalize {
    text-transform: capitalize !important;
  }
  .text-cm-start {
    text-align: left !important;
  }
  .text-cm-end {
    text-align: right !important;
  }
  .text-cm-center {
    text-align: center !important;
  }
  .text-cm-primary {
    color: #0d6efd !important;
  }
  .text-cm-secondary {
    color: #6c757d !important;
  }
  .text-cm-success {
    color: #198754 !important;
  }
  .text-cm-info {
    color: #0dcaf0 !important;
  }
  .text-cm-warning {
    color: #ffc107 !important;
  }
  .text-cm-danger {
    color: #dc3545 !important;
  }
  .text-cm-light {
    color: #f8f9fa !important;
  }
  .text-cm-dark {
    color: #212529 !important;
  }
  .text-cm-white {
    color: #fff !important;
  }
  .text-cm-body {
    color: #212529 !important;
  }
  .text-cm-muted {
    color: #6c757d !important;
  }
  .text-cm-black-50 {
    color: rgba(0, 0, 0, 0.5) !important;
  }
  .text-cm-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .text-cm-reset {
    color: inherit !important;
  }
  .fs-cm-1 {
    font-size: calc(1.375rem + 1.5vw) !important;
  }
  .fs-cm-2 {
    font-size: calc(1.325rem + 0.9vw) !important;
  }
  .fs-cm-3 {
    font-size: calc(1.3rem + 0.6vw) !important;
  }
  .fs-cm-4 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }
  .fs-cm-5 {
    font-size: 1.25rem !important;
  }
  .fs-cm-6 {
    font-size: 1rem !important;
  }
  .fs-cm-7 {
    font-size: 0.8rem !important;
  }
  .fs-cm-8 {
    font-size: 0.67rem !important;
  }
  .fs-cm-9 {
    font-size: 0.55rem !important;
  }
  .fst-cm-italic {
    font-style: italic !important;
  }
  .fst-cm-normal {
    font-style: normal !important;
  }
  .fw-lmm-ight {
    font-weight: 300 !important;
  }
  .fw-lmm-ighter {
    font-weight: lighter !important;
  }
  .fw-nmm-ormal {
    font-weight: 400 !important;
  }
  .fw-bold {
    font-weight: 700 !important;
  }
  .fw-bolder {
    font-weight: bolder !important;
  }
}
@media screen and (min-width: 578px) {
  .fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
  }
  .fixed-cm-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
  }
  .sticky-cm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-cm-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
  .hstack-cm {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
  }
  .vstack-cm {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-self: stretch;
  }
  .visually-cm-hidden,
  .visually-cm-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
  .stretched-cm-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
  }
  .text-cm-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .vr-cm {
    display: inline-block;
    align-self: stretch;
    width: 1px;
    min-height: 1em;
    background-color: currentcolor;
    opacity: 0.25;
  }
  .align-cm-baseline {
    vertical-align: baseline !important;
  }
  .align-cm-top {
    vertical-align: top !important;
  }
  .align-cm-middle {
    vertical-align: middle !important;
  }
  .align-cm-bottom {
    vertical-align: bottom !important;
  }
  .align-cm-text-bottom {
    vertical-align: text-bottom !important;
  }
  .align-cm-text-top {
    vertical-align: text-top !important;
  }
  .float-start {
    float: left !important;
  }
  .float-end {
    float: right !important;
  }
  .float-none {
    float: none !important;
  }
  .opacity-cm-0 {
    opacity: 0 !important;
  }
  .opacity-cm-25 {
    opacity: 0.25 !important;
  }
  .opacity-cm-50 {
    opacity: 0.5 !important;
  }
  .opacity-cm-75 {
    opacity: 0.75 !important;
  }
  .opacity-100 {
    opacity: 1 !important;
  }
  .overflow-cm-auto {
    overflow: auto !important;
  }
  .overflow-cm-hidden {
    overflow: hidden !important;
  }
  .overflow-cm-visible {
    overflow: visible !important;
  }
  .overflow-cm-scroll {
    overflow: scroll !important;
  }
  .overflow-scroll-y {
    overflow-y: scroll !important;
  }
  .overflow-cm-scroll-x {
    overflow-x: scroll !important;
  }
  .d-cm-inline {
    display: inline !important;
  }
  .d-cm-inline-block {
    display: inline-block !important;
  }
  .d-cm-block {
    display: block !important;
  }
  .d-cm-grid {
    display: grid !important;
  }
  .d-cm-table {
    display: table !important;
  }
  .d-cm-table-row {
    display: table-row !important;
  }
  .d-cm-table-cell {
    display: table-cell !important;
  }
  .d-cm-flex {
    display: flex !important;
  }
  .d-cm-flex-center {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .d-cm-flex-center-y {
    display: flex !important;
    align-items: center !important;
  }
  .d-cm-flex-center-x {
    display: flex !important;
    justify-content: center !important;
  }
  .d-cm-inline-flex {
    display: inline-flex !important;
  }
  .d-cm-none {
    display: none !important;
  }
  .flex-cm-fill {
    flex: 1 1 auto !important;
  }
  .flex-cm-row {
    flex-direction: row !important;
  }
  .flex-cm-column {
    flex-direction: column !important;
  }
  .flex-cm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-cm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-cm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-cm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-cm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-cm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-cm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-cm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-cm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-cm-content-start {
    justify-content: flex-start !important;
  }
  .justify-cm-content-end {
    justify-content: flex-end !important;
  }
  .justify-cm-content-center {
    justify-content: center !important;
  }
  .justify-cm-content-between {
    justify-content: space-between !important;
  }
  .justify-cm-content-around {
    justify-content: space-around !important;
  }
  .justify-cm-content-evenly {
    justify-content: space-evenly !important;
  }
  .align-cm-items-start {
    align-items: flex-start !important;
  }
  .align-cm-items-end {
    align-items: flex-end !important;
  }
  .align-cm-items-center {
    align-items: center !important;
  }
  .align-cm-items-baseline {
    align-items: baseline !important;
  }
  .align-cm-items-stretch {
    align-items: stretch !important;
  }
  .align-cm-content-start {
    align-content: flex-start !important;
  }
  .align-cm-content-end {
    align-content: flex-end !important;
  }
  .align-cm-content-center {
    align-content: center !important;
  }
  .align-cm-content-between {
    align-content: space-between !important;
  }
  .align-cm-content-around {
    align-content: space-around !important;
  }
  .align-cm-content-stretch {
    align-content: stretch !important;
  }
  .align-cm-self-auto {
    align-self: auto !important;
  }
  .align-cm-self-start {
    align-self: flex-start !important;
  }
  .align-cm-self-end {
    align-self: flex-end !important;
  }
  .align-cm-self-center {
    align-self: center !important;
  }
  .align-cm-self-baseline {
    align-self: baseline !important;
  }
  .align-cm-self-stretch {
    align-self: stretch !important;
  }
  .order-cm-first {
    order: -1 !important;
  }
  .order-cm-0 {
    order: 0 !important;
  }
  .order-cm-1 {
    order: 1 !important;
  }
  .order-cm-2 {
    order: 2 !important;
  }
  .order-cm-3 {
    order: 3 !important;
  }
  .order-cm-4 {
    order: 4 !important;
  }
  .order-cm-5 {
    order: 5 !important;
  }
  .order-cm-last {
    order: 6 !important;
  }
  .shadow-mm {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  }
  .shadow-cm-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  }
  .shadow-cm-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  }
  .shadow-cm-none {
    box-shadow: none !important;
  }
  .position-cm-static {
    position: static !important;
  }
  .position-cm-relative {
    position: relative !important;
  }
  .position-cm-absolute {
    position: absolute !important;
  }
  .position-cm-fixed {
    position: fixed !important;
  }
  .position-cm-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
  }
  .top-cm-0 {
    top: 0 !important;
  }
  -mm .top-cm-50 {
    top: 50% !important;
  }
  .top-cm-100 {
    top: 100% !important;
  }
  .bottom-cm-0 {
    bottom: 0 !important;
  }
  .bottom-cm-50 {
    bottom: 50% !important;
  }
  .bottom-cm-100 {
    bottom: 100% !important;
  }
  .start-cm-0 {
    left: 0 !important;
  }
  .start-cm-50 {
    left: 50% !important;
  }
  .start-cm-100 {
    left: 100% !important;
  }
  .end-cm-0 {
    right: 0 !important;
  }
  .end-cm-50 {
    right: 50% !important;
  }
  .end-cm-100 {
    right: 100% !important;
  }
  .translate-cm-middle {
    transform: translate(-50%, -50%) !important;
  }
  .translate-cm-middle-x {
    transform: translateX(-50%) !important;
  }
  .translate-cm-middle-y {
    transform: translateY(-50%) !important;
  }
}

.float-blur {
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 999;
}
