:root {
  --ct-blue: #09f;
  --ct-indigo: #5c60f5;
  --ct-purple: #8957ff;
  --ct-pink: #ff579a;
  --ct-red: #f36;
  --ct-orange: #ff8c00;
  --ct-yellow: #fb0;
  --ct-green: #0c8;
  --ct-teal: #2dd;
  --ct-cyan: #00d4ff;
  --ct-black: #000;
  --ct-white: #fff;
  --ct-gray: #475569;
  --ct-gray-dark: #1e293b;
  --ct-gray-100: #f1f5f9;
  --ct-gray-200: #e2e8f0;
  --ct-gray-300: #cbd5e1;
  --ct-gray-400: #94a3b8;
  --ct-gray-500: #64748b;
  --ct-gray-600: #475569;
  --ct-gray-700: #334155;
  --ct-gray-800: #1e293b;
  --ct-gray-900: #0f172a;
  --ct-primary: #8957ff;
  --ct-secondary: #ff8c00;
  --ct-success: #0c8;
  --ct-info: #00d4ff;
  --ct-warning: #ff8c00;
  --ct-danger: #f36;
  --ct-light: #f5f8fb;
  --ct-dark: #0f172a;
  --ct-light-blue: 247, 250, 255;
  --ct-primary-rgb: 137, 87, 255;
  --ct-secondary-rgb: 255, 140, 0;
  --ct-success-rgb: 0, 204, 136;
  --ct-info-rgb: 0, 212, 255;
  --ct-warning-rgb: 255, 140, 0;
  --ct-danger-rgb: 255, 51, 102;
  --ct-light-rgb: 245, 248, 251;
  --ct-dark-rgb: 15, 23, 42;
  --ct-primary-text-emphasis: #372366;
  --ct-secondary-text-emphasis: #663800;
  --ct-success-text-emphasis: #005236;
  --ct-info-text-emphasis: #056;
  --ct-warning-text-emphasis: #663800;
  --ct-danger-text-emphasis: #661429;
  --ct-light-text-emphasis: #334155;
  --ct-dark-text-emphasis: #334155;
  --ct-primary-bg-subtle: #e7ddff;
  --ct-secondary-bg-subtle: #ffe8cc;
  --ct-success-bg-subtle: #ccf5e7;
  --ct-info-bg-subtle: #ccf6ff;
  --ct-warning-bg-subtle: #ffe8cc;
  --ct-danger-bg-subtle: #ffd6e0;
  --ct-light-bg-subtle: #f8fafc;
  --ct-dark-bg-subtle: #94a3b8;
  --ct-primary-border-subtle: #d0bcff;
  --ct-secondary-border-subtle: #ffd199;
  --ct-success-border-subtle: #99ebcf;
  --ct-info-border-subtle: #9ef;
  --ct-warning-border-subtle: #ffd199;
  --ct-danger-border-subtle: #ffadc2;
  --ct-light-border-subtle: #e2e8f0;
  --ct-dark-border-subtle: #64748b;
  --ct-white-rgb: 255, 255, 255;
  --ct-black-rgb: 0, 0, 0;
  --ct-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";
  --ct-font-monospace: var(--ct-font-monospace);
  --ct-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --ct-body-font-family: var(--ct-font-sans-serif);
  --ct-body-font-size: 1rem;
  --ct-body-font-weight: 400;
  --ct-body-line-height: 1.625;
  --ct-body-color: #1e293b;
  --ct-body-color-rgb: 30, 41, 59;
  --ct-body-color-light: #424d59;
  --ct-body-color-rgb-light: 66, 77, 89;
  --ct-body-bg: #fff;
  --ct-body-bg-rgb: 255, 255, 255;
  --ct-emphasis-color: #0f172a;
  --ct-emphasis-color-rgb: 15, 23, 42;
  --ct-secondary-color: rgba(30, 41, 59, 0.75);
  --ct-secondary-color-rgb: 30, 41, 59;
  --ct-secondary-bg: #f1f5f9;
  --ct-secondary-bg-rgb: 241, 245, 249;
  --ct-tertiary-color: rgba(30, 41, 59, 0.5);
  --ct-tertiary-color-rgb: 30, 41, 59;
  --ct-tertiary-bg: #f8fafc;
  --ct-tertiary-bg-rgb: 248, 250, 252;
  --ct-heading-color: #0f172a;
  --ct-link-color: #8957ff;
  --ct-link-color-rgb: 137, 87, 255;
  --ct-link-decoration: none;
  --ct-link-hover-color: #744ad9;
  --ct-link-hover-color-rgb: 116, 74, 217;
  --ct-link-hover-decoration: none;
  --ct-code-color: #ff579a;
  --ct-highlight-color: #1e293b;
  --ct-highlight-bg: #fcf8e3;
  --ct-border-width: 1px;
  --ct-border-style: solid;
  --ct-border-color: #e2e8f0;
  --ct-border-color-translucent: rgba(0, 0, 0, 0.176);
  --ct-border-radius: 0.375rem;
  --ct-border-radius-sm: 0.25rem;
  --ct-border-radius-lg: 0.5rem;
  --ct-border-radius-xl: 0.75rem;
  --ct-border-radius-xxl: 2rem;
  --ct-border-radius-2xl: var(--ct-border-radius-xxl);
  --ct-border-radius-pill: 50rem;
  --ct-box-shadow: 0px 3px 3px -1px rgba(10, 22, 70, 0.1),
    0px 0px 1px 0px rgba(10, 22, 70, 0.06);
  --ct-box-shadow-sm: 0px 1px 1px 0px rgba(10, 22, 70, 0.1),
    0px 0px 1px 0px rgba(10, 22, 70, 0.06);
  --ct-box-shadow-lg: 0px 6px 6px -1px rgba(10, 22, 70, 0.1),
    0px 0px 1px 0px rgba(10, 22, 70, 0.06);
  --ct-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --ct-focus-ring-width: 0.25rem;
  --ct-focus-ring-opacity: 0.25;
  --ct-focus-ring-color: rgba(137, 87, 255, 0.25);
  --ct-form-valid-color: #0c8;
  --ct-form-valid-border-color: #0c8;
  --ct-form-invalid-color: #f36;
  --ct-form-invalid-border-color: #f36;
  --ct-app-colour-blue: #2c7be5;
  --ct-app-colour-blue-rgb: 44, 123, 229;
  --ct-app-colour-dark-blue: #1b54a3;
  --ct-app-colour-dark-blue-rgb: 27, 84, 163;
  --ct-app-colour-insg-blue: #00d0ff;
  --ct-app-colour-insg-blue-rgb: 0, 208, 255;
  --ct-app-colour-green: #24d1b0;
  --ct-app-colour-green-rgb: 36, 209, 176;
  --ct-app-colour-red: #ef476f;
  --ct-app-colour-red-rgb: 239, 71, 111;
  --ct-app-colour-yellow: #f6c343;
  --ct-app-colour-yellow-rgb: 246, 195, 67;
  --ct-app-colour-orange: #ff9b54;
  --ct-app-colour-orange-rgb: 255, 155, 84;
  --ct-app-colour-purple: #8338ec;
  --ct-app-colour-purple-rgb: 131, 56, 236;
  --ct-app-colour-brown: #b15928;
  --ct-app-colour-brown-rgb: 177, 89, 40;
  --ct-app-colour-pink: #fb9a99;
  --ct-app-colour-pink-rgb: 251, 154, 153;
  --ct-app-colour-pale-green: #82b229;
  --ct-app-colour-pale-green-rgb: 130, 178, 41;
  --ct-app-colour-light-purple: #d889f9;
  --ct-app-colour-light-purple-rgb: 216, 137, 249;
}

.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;
  transition: height 0.15s;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.gradient-bottom-right {
  background-image: linear-gradient(
    to bottom right,
    var(--ct-gradient)
  ) !important;
}

.start-indigo {
  --ct-start-color: var(--ct-indigo);
  --ct-gradient: var(--ct-start-color), var(--ct-end-color, transparent);
}

.start-purple {
  --ct-start-color: var(--ct-purple);
  --ct-gradient: var(--ct-start-color), var(--ct-end-color, transparent);
}

.start-gray {
  --ct-start-color: var(--ct-gray);
  --ct-gradient: var(--ct-start-color), var(--ct-end-color, transparent);
}

.middle-indigo {
  --ct-middle-color: var(--ct-indigo);
  --ct-gradient: var(--ct-start-color), var(--ct-middle-color),
    var(--ct-end-color, rgba(92, 96, 245, 0));
}

.middle-purple {
  --ct-middle-color: var(--ct-purple);
  --ct-gradient: var(--ct-start-color), var(--ct-middle-color),
    var(--ct-end-color, rgba(137, 87, 255, 0));
}

.middle-yellow {
  --ct-middle-color: var(--ct-yellow);
  --ct-gradient: var(--ct-start-color), var(--ct-middle-color),
    var(--ct-end-color, rgba(255, 187, 0, 0));
}

.middle-black {
  --ct-middle-color: var(--ct-black);
  --ct-gradient: var(--ct-start-color), var(--ct-middle-color),
    var(--ct-end-color, transparent);
}

.end-purple {
  --ct-end-color: var(--ct-purple);
}

.end-pink {
  --ct-end-color: var(--ct-pink);
}

.end-yellow {
  --ct-end-color: var(--ct-yellow);
}

.end-cyan {
  --ct-end-color: var(--ct-cyan);
}

.end-gray {
  --ct-end-color: var(--ct-gray);
}

@keyframes ping {
  75%,
  to {
    opacity: 0;
    transform: scale(2);
  }
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

@keyframes bounce {
  0%,
  to {
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    transform: translateY(-25%);
  }

  50% {
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    transform: none;
  }
}

@keyframes slideLeft {
  0% {
    transform: translate(0);
  }

  to {
    transform: translate(-100%);
  }
}

@keyframes slideRight {
  0% {
    transform: translate(-100%);
  }

  to {
    transform: translate(0);
  }
}

.scrollable-x {
  white-space: nowrap;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-x: auto;
  overflow-y: hidden;
}

.scrollable-x::-webkit-scrollbar {
  display: none;
}

.border-body {
  --ct-border-color: var(--ct-body-bg);
}

[class*="hover-"] {
  transition: all 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  [class*="hover-"] {
    transition: none;
  }
}

[class*="shadow"] {
  transition: all 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  [class*="shadow"] {
    transition: none;
  }
}

a.text-muted:hover,
a.text-heading:hover,
a.text-current:hover {
  color: #0e1421;
}

.svg-icon {
  align-self: center;
  display: inline-flex;
}

.svg-icon svg {
  width: 1em;
  height: 1em;
  position: relative;
}

.svg-align-baseline svg {
  top: 0.125em;
}

.group-item-invisible .group-item {
  visibility: hidden;
}

.group-item-visible-hover:hover .group-item {
  visibility: visible;
}

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

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

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

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

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

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

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

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

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

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

.shadow {
  box-shadow: 0 3px 3px -1px rgba(10, 22, 70, 0.1),
    0 0 1px rgba(10, 22, 70, 0.06) !important;
}

.shadow-1 {
  box-shadow: 0 1px 1px rgba(10, 22, 70, 0.1), 0 0 1px rgba(10, 22, 70, 0.06) !important;
}

.shadow-2 {
  box-shadow: 0 6px 6px -1px rgba(10, 22, 70, 0.1),
    0 0 1px rgba(10, 22, 70, 0.06) !important;
}

.shadow-3 {
  box-shadow: 0 9px 9px -1px rgba(10, 22, 70, 0.1),
    0 0 1px rgba(10, 22, 70, 0.06) !important;
}

.shadow-4 {
  box-shadow: 0 16px 16px -1px rgba(10, 22, 70, 0.1),
    0 0 1px rgba(10, 22, 70, 0.06) !important;
}

.shadow-5 {
  box-shadow: 0 32px 40px -2px rgba(10, 22, 70, 0.1),
    0 0 1px rgba(10, 22, 70, 0.06) !important;
}

.shadow-6-hover:hover {
  box-shadow: 0 36px 50px rgba(10, 22, 70, 0.1), 0 0 1px rgba(10, 22, 70, 0.06) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mw-screen-lg {
  max-width: 1024px !important;
}

.mw-screen-xl {
  max-width: 1280px !important;
}

.mw-read {
  max-width: 65ch !important;
}

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

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

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

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

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

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

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

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

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

.flex-nowrap {
  flex-wrap: nowrap !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;
}

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

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

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

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

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

.zi-1 {
  z-index: 1;
}

.zi-2 {
  z-index: 2;
}

.zi-3 {
  z-index: 3;
}

.zi-4 {
  z-index: 4;
}

.zi-5 {
  z-index: 5;
}

.zi-6 {
  z-index: 6;
}

.zi-n1 {
  z-index: -1;
}

.zi-n2 {
  z-index: -2;
}

.zi-n3 {
  z-index: -3;
}

.zi-n4 {
  z-index: -4;
}

.zi-n5 {
  z-index: -5;
}

.zi-n6 {
  z-index: -6;
}

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

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

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

.mx-auto {
  margin-left: auto !important;
  margin-right: 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-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

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

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

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

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

.my-10 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !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: 0.75rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.me-n20 {
  margin-right: -5rem !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: 0.75rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.px-16 {
  padding-left: 4rem !important;
  padding-right: 4rem !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: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.font-display {
  font-family: var(--ct-font-display) !important;
}

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

.fw-normal {
  font-weight: 400 !important;
}

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

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

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

.lh-lg {
  line-height: 1.625 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

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

.text-uppercase {
  text-transform: uppercase !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

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

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

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

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

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

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

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

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

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

.text-muted {
  --ct-text-opacity: 1;
  color: var(--ct-secondary-color) !important;
}

.text-body-secondary {
  --ct-text-opacity: 1;
  color: var(--ct-secondary-color) !important;
}

.text-body-tertiary {
  --ct-text-opacity: 1;
  color: var(--ct-tertiary-color) !important;
}

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

.text-heading {
  --ct-text-opacity: 1;
  color: var(--ct-heading-color) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bg-success-subtle {
  background-color: var(--ct-success-bg-subtle) !important;
}

.bg-warning-subtle {
  background-color: var(--ct-warning-bg-subtle) !important;
}

.bg-danger-subtle {
  background-color: var(--ct-danger-bg-subtle) !important;
}

.bg-dark-subtle {
  background-color: var(--ct-dark-bg-subtle) !important;
}

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

.rounded-2 {
  border-radius: 0.5rem !important;
}

.rounded-3 {
  border-radius: 0.75rem !important;
}

.rounded-4 {
  border-radius: 1rem !important;
}

.rounded-5 {
  border-radius: 1.5rem !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

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

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

.rounded-top-4 {
  border-top-left-radius: 1rem !important;
  border-top-right-radius: 1rem !important;
}

.rounded-end-pill {
  border-top-right-radius: 50rem !important;
  border-bottom-right-radius: 50rem !important;
}

.rounded-bottom-4 {
  border-bottom-right-radius: 1rem !important;
  border-bottom-left-radius: 1rem !important;
}

.rounded-start-3 {
  border-top-left-radius: 0.75rem !important;
  border-bottom-left-radius: 0.75rem !important;
}

.rounded-start-pill {
  border-top-left-radius: 50rem !important;
  border-bottom-left-radius: 50rem !important;
}

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

.z-2 {
  z-index: 2 !important;
}

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

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

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

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

.text-xs {
  font-size: 0.75rem !important;
}

.text-sm {
  font-size: 0.875rem !important;
}

.text-base {
  font-size: 1rem !important;
}

.text-lg {
  font-size: 1.25rem !important;
}

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

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

.ls-tight {
  letter-spacing: -0.025em !important;
}

.ls-wide {
  letter-spacing: 0.025em !important;
}

.text-current {
  color: currentColor !important;
}

.bg-cover {
  background-size: cover !important;
}

.shadow-soft-2 {
  box-shadow: 0 6px 6px -1px rgba(10, 22, 70, 0.04) !important;
}

.shadow-soft-3,
.shadow-soft-3-hover:hover {
  box-shadow: 0 9px 9px -1px rgba(10, 22, 70, 0.04) !important;
}

.shadow-soft-5 {
  box-shadow: 0 32px 40px -2px rgba(10, 22, 70, 0.04) !important;
}

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

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

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

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

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

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

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

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

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

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

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

.w-rem-7 {
  width: 1.75rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.h-rem-5 {
  height: 1.25rem !important;
}

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

.h-rem-7 {
  height: 1.75rem !important;
}

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

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

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

.h-rem-20 {
  height: 5rem !important;
}

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

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

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

.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .rounded-sm-4 {
    border-radius: 1rem !important;
  }
}

@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .w-rem-md-80 {
    width: 20rem !important;
  }

  .h-rem-md-10 {
    height: 2.5rem !important;
  }
}

@media (min-width: 992px) {
  .overflow-y-lg-auto {
    overflow-y: auto !important;
  }

  .d-lg-block {
    display: block !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;
  }

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

  .top-lg-6 {
    top: 1.5rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .pt-lg-56 {
    padding-top: 14rem !important;
  }

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

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

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

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

  .rounded-lg-pill {
    border-radius: 50rem !important;
  }

  .rounded-top-start-lg-4 {
    border-top-left-radius: 1rem !important;
  }

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

@media (min-width: 1200px) {
  .d-xl-table-cell {
    display: table-cell !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 1400px) {
  .d-xxl-flex {
    display: flex !important;
  }

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

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

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

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

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

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

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

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

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

@media (min-width: 1200px) {
  .text-xl {
    font-size: 1.5rem !important;
  }

  .text-2xl {
    font-size: 2rem !important;
  }
}
