/* src/styles.scss */
:root {
  --is-white: #ffffff;
  --is-black: #000000;
  --is-slate-50: #f8fafc;
  --is-slate-100: #f1f5f9;
  --is-slate-200: #e2e8f0;
  --is-slate-300: #cbd5e1;
  --is-slate-400: #94a3b8;
  --is-slate-500: #64748b;
  --is-slate-600: #475569;
  --is-slate-700: #334155;
  --is-slate-800: #1e293b;
  --is-slate-900: #0f172a;
  --is-slate-950: #020617;
  --is-pink-50: #fff0f6;
  --is-pink-100: #ffdded;
  --is-pink-200: #ffb9d8;
  --is-pink-300: #ff88bf;
  --is-pink-400: #f96aac;
  --is-pink-500: #f04d8c;
  --is-pink-600: #d62d71;
  --is-pink-700: #b01e5a;
  --is-pink-800: #8b1748;
  --is-pink-900: #681237;
  --is-pink-950: #3d0820;
  --is-purple-50: #f0efff;
  --is-purple-100: #e3e1fb;
  --is-purple-200: #c9c5f5;
  --is-purple-300: #a9a2ee;
  --is-purple-400: #8178e4;
  --is-purple-500: #5548c8;
  --is-purple-600: #4437ae;
  --is-purple-700: #352b8b;
  --is-purple-800: #271f68;
  --is-purple-900: #1d1649;
  --is-purple-950: #0e0b28;
  --is-success: #10b981;
  --is-error: #ef4444;
  --is-warning: #f59e0b;
  --is-info: #3b82f6;
  --is-color-primary: var(--is-purple-500);
  --is-color-primary-hover: var(--is-purple-600);
  --is-color-primary-subtle: var(--is-purple-50);
  --is-color-accent: var(--is-pink-500);
  --is-color-accent-hover: var(--is-pink-600);
  --is-color-accent-subtle: var(--is-pink-50);
  --is-color-bg-primary: var(--is-white);
  --is-color-bg-secondary: var(--is-slate-50);
  --is-color-bg-card: var(--is-white);
  --is-color-bg-tertiary: var(--is-slate-100);
  --is-color-border: var(--is-slate-200);
  --is-color-border-subtle: var(--is-slate-100);
  --is-color-text-primary: var(--is-slate-900);
  --is-color-text-secondary: var(--is-slate-500);
  --is-color-text-muted: var(--is-slate-400);
  --is-font-sans:
    "Space Grotesk",
    system-ui,
    sans-serif;
  --is-font-mono:
    "JetBrains Mono",
    ui-monospace,
    monospace;
  --is-text-4xl: 2.25rem;
  --is-text-3xl: 1.875rem;
  --is-text-2xl: 1.5rem;
  --is-text-xl: 1.25rem;
  --is-text-lg: 1.125rem;
  --is-text-base: 1rem;
  --is-text-sm: 0.875rem;
  --is-text-xs: 0.75rem;
  --is-space-1: 0.25rem;
  --is-space-2: 0.5rem;
  --is-space-3: 0.75rem;
  --is-space-4: 1rem;
  --is-space-5: 1.25rem;
  --is-space-6: 1.5rem;
  --is-space-8: 2rem;
  --is-space-10: 2.5rem;
  --is-space-12: 3rem;
  --is-radius-sm: 6px;
  --is-radius-md: 8px;
  --is-radius-lg: 12px;
  --is-radius-xl: 16px;
  --is-radius-2xl: 20px;
  --is-radius-3xl: 24px;
  --is-radius-full: 9999px;
  --is-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
  --is-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  --is-skeleton-base: #eef0f4;
  --is-skeleton-highlight: #f8f9fb;
}
[data-theme=dark] {
  --is-color-bg-primary: var(--is-slate-950);
  --is-color-bg-secondary: var(--is-slate-900);
  --is-color-bg-card: var(--is-slate-800);
  --is-color-bg-tertiary: var(--is-slate-700);
  --is-color-border: var(--is-slate-700);
  --is-color-border-subtle: var(--is-slate-800);
  --is-color-text-primary: var(--is-slate-50);
  --is-color-text-secondary: var(--is-slate-300);
  --is-color-text-muted: var(--is-slate-500);
  --is-skeleton-base: #1e2535;
  --is-skeleton-highlight: #2a3348;
  --is-color-primary: var(--is-purple-400);
  --is-color-primary-hover: var(--is-purple-300);
  --is-color-primary-subtle: var(--is-purple-950);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--is-font-sans);
  font-size: var(--is-text-base);
  line-height: 1.5;
  background-color: var(--is-color-bg-primary);
  color: var(--is-color-text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--is-font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--is-color-text-primary);
  line-height: 1.2;
}
h1 {
  font-size: var(--is-text-4xl);
}
h2 {
  font-size: var(--is-text-3xl);
}
h3 {
  font-size: var(--is-text-2xl);
}
h4 {
  font-size: var(--is-text-xl);
}
h5 {
  font-size: var(--is-text-lg);
}
h6 {
  font-size: var(--is-text-base);
}
p {
  line-height: 1.7;
  color: var(--is-color-text-secondary);
}
a {
  color: var(--is-color-primary);
  font-weight: 500;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
code,
kbd,
pre,
samp {
  font-family: var(--is-font-mono);
}
.is-text-4xl {
  font-size: var(--is-text-4xl);
}
.is-text-3xl {
  font-size: var(--is-text-3xl);
}
.is-text-2xl {
  font-size: var(--is-text-2xl);
}
.is-text-xl {
  font-size: var(--is-text-xl);
}
.is-text-lg {
  font-size: var(--is-text-lg);
}
.is-text-base {
  font-size: var(--is-text-base);
}
.is-text-sm {
  font-size: var(--is-text-sm);
}
.is-text-xs {
  font-size: var(--is-text-xs);
}
.is-container {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}
.is-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}
.is-row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.is-col {
  flex: 1 0 0%;
}
.is-col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}
.is-col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
.is-col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.is-col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
.is-col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}
.is-col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.is-col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}
.is-col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}
.is-col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.is-col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}
.is-col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}
.is-col-12 {
  flex: 0 0 auto;
  width: 100%;
}
.is-grid {
  display: grid;
}
.is-grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.is-col-span-1 {
  grid-column: span 1/span 1;
}
.is-grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.is-col-span-2 {
  grid-column: span 2/span 2;
}
.is-grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.is-col-span-3 {
  grid-column: span 3/span 3;
}
.is-grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.is-col-span-4 {
  grid-column: span 4/span 4;
}
.is-grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.is-col-span-5 {
  grid-column: span 5/span 5;
}
.is-grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.is-col-span-6 {
  grid-column: span 6/span 6;
}
.is-grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.is-col-span-7 {
  grid-column: span 7/span 7;
}
.is-grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.is-col-span-8 {
  grid-column: span 8/span 8;
}
.is-grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
.is-col-span-9 {
  grid-column: span 9/span 9;
}
.is-grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
.is-col-span-10 {
  grid-column: span 10/span 10;
}
.is-grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}
.is-col-span-11 {
  grid-column: span 11/span 11;
}
.is-grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.is-col-span-12 {
  grid-column: span 12/span 12;
}
.is-col-span-full {
  grid-column: 1/-1;
}
@media (min-width: 768px) {
  .is-md-grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .is-md-col-span-1 {
    grid-column: span 1/span 1;
  }
  .is-md-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .is-md-col-span-2 {
    grid-column: span 2/span 2;
  }
  .is-md-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .is-md-col-span-3 {
    grid-column: span 3/span 3;
  }
  .is-md-grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .is-md-col-span-4 {
    grid-column: span 4/span 4;
  }
  .is-md-grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .is-md-col-span-5 {
    grid-column: span 5/span 5;
  }
  .is-md-grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .is-md-col-span-6 {
    grid-column: span 6/span 6;
  }
  .is-md-grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .is-md-col-span-7 {
    grid-column: span 7/span 7;
  }
  .is-md-grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .is-md-col-span-8 {
    grid-column: span 8/span 8;
  }
  .is-md-grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .is-md-col-span-9 {
    grid-column: span 9/span 9;
  }
  .is-md-grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .is-md-col-span-10 {
    grid-column: span 10/span 10;
  }
  .is-md-grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .is-md-col-span-11 {
    grid-column: span 11/span 11;
  }
  .is-md-grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .is-md-col-span-12 {
    grid-column: span 12/span 12;
  }
  .is-md-col-span-full {
    grid-column: 1/-1;
  }
}
.is-m-1 {
  margin: 0.25rem !important;
}
.is-mt-1 {
  margin-top: 0.25rem !important;
}
.is-mb-1 {
  margin-bottom: 0.25rem !important;
}
.is-ml-1 {
  margin-left: 0.25rem !important;
}
.is-mr-1 {
  margin-right: 0.25rem !important;
}
.is-my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.is-mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}
.is-p-1 {
  padding: 0.25rem !important;
}
.is-pt-1 {
  padding-top: 0.25rem !important;
}
.is-pb-1 {
  padding-bottom: 0.25rem !important;
}
.is-pl-1 {
  padding-left: 0.25rem !important;
}
.is-pr-1 {
  padding-right: 0.25rem !important;
}
.is-py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.is-px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}
.is-gap-1 {
  gap: 0.25rem !important;
}
.is-m-2 {
  margin: 0.5rem !important;
}
.is-mt-2 {
  margin-top: 0.5rem !important;
}
.is-mb-2 {
  margin-bottom: 0.5rem !important;
}
.is-ml-2 {
  margin-left: 0.5rem !important;
}
.is-mr-2 {
  margin-right: 0.5rem !important;
}
.is-my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.is-mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}
.is-p-2 {
  padding: 0.5rem !important;
}
.is-pt-2 {
  padding-top: 0.5rem !important;
}
.is-pb-2 {
  padding-bottom: 0.5rem !important;
}
.is-pl-2 {
  padding-left: 0.5rem !important;
}
.is-pr-2 {
  padding-right: 0.5rem !important;
}
.is-py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.is-px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.is-gap-2 {
  gap: 0.5rem !important;
}
.is-m-3 {
  margin: 0.75rem !important;
}
.is-mt-3 {
  margin-top: 0.75rem !important;
}
.is-mb-3 {
  margin-bottom: 0.75rem !important;
}
.is-ml-3 {
  margin-left: 0.75rem !important;
}
.is-mr-3 {
  margin-right: 0.75rem !important;
}
.is-my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}
.is-mx-3 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}
.is-p-3 {
  padding: 0.75rem !important;
}
.is-pt-3 {
  padding-top: 0.75rem !important;
}
.is-pb-3 {
  padding-bottom: 0.75rem !important;
}
.is-pl-3 {
  padding-left: 0.75rem !important;
}
.is-pr-3 {
  padding-right: 0.75rem !important;
}
.is-py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}
.is-px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}
.is-gap-3 {
  gap: 0.75rem !important;
}
.is-m-4 {
  margin: 1rem !important;
}
.is-mt-4 {
  margin-top: 1rem !important;
}
.is-mb-4 {
  margin-bottom: 1rem !important;
}
.is-ml-4 {
  margin-left: 1rem !important;
}
.is-mr-4 {
  margin-right: 1rem !important;
}
.is-my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.is-mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}
.is-p-4 {
  padding: 1rem !important;
}
.is-pt-4 {
  padding-top: 1rem !important;
}
.is-pb-4 {
  padding-bottom: 1rem !important;
}
.is-pl-4 {
  padding-left: 1rem !important;
}
.is-pr-4 {
  padding-right: 1rem !important;
}
.is-py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.is-px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.is-gap-4 {
  gap: 1rem !important;
}
.is-m-5 {
  margin: 1.25rem !important;
}
.is-mt-5 {
  margin-top: 1.25rem !important;
}
.is-mb-5 {
  margin-bottom: 1.25rem !important;
}
.is-ml-5 {
  margin-left: 1.25rem !important;
}
.is-mr-5 {
  margin-right: 1.25rem !important;
}
.is-my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}
.is-mx-5 {
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important;
}
.is-p-5 {
  padding: 1.25rem !important;
}
.is-pt-5 {
  padding-top: 1.25rem !important;
}
.is-pb-5 {
  padding-bottom: 1.25rem !important;
}
.is-pl-5 {
  padding-left: 1.25rem !important;
}
.is-pr-5 {
  padding-right: 1.25rem !important;
}
.is-py-5 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}
.is-px-5 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}
.is-gap-5 {
  gap: 1.25rem !important;
}
.is-m-6 {
  margin: 1.5rem !important;
}
.is-mt-6 {
  margin-top: 1.5rem !important;
}
.is-mb-6 {
  margin-bottom: 1.5rem !important;
}
.is-ml-6 {
  margin-left: 1.5rem !important;
}
.is-mr-6 {
  margin-right: 1.5rem !important;
}
.is-my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.is-mx-6 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}
.is-p-6 {
  padding: 1.5rem !important;
}
.is-pt-6 {
  padding-top: 1.5rem !important;
}
.is-pb-6 {
  padding-bottom: 1.5rem !important;
}
.is-pl-6 {
  padding-left: 1.5rem !important;
}
.is-pr-6 {
  padding-right: 1.5rem !important;
}
.is-py-6 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.is-px-6 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.is-gap-6 {
  gap: 1.5rem !important;
}
.is-m-7 {
  margin: 1.75rem !important;
}
.is-mt-7 {
  margin-top: 1.75rem !important;
}
.is-mb-7 {
  margin-bottom: 1.75rem !important;
}
.is-ml-7 {
  margin-left: 1.75rem !important;
}
.is-mr-7 {
  margin-right: 1.75rem !important;
}
.is-my-7 {
  margin-top: 1.75rem !important;
  margin-bottom: 1.75rem !important;
}
.is-mx-7 {
  margin-left: 1.75rem !important;
  margin-right: 1.75rem !important;
}
.is-p-7 {
  padding: 1.75rem !important;
}
.is-pt-7 {
  padding-top: 1.75rem !important;
}
.is-pb-7 {
  padding-bottom: 1.75rem !important;
}
.is-pl-7 {
  padding-left: 1.75rem !important;
}
.is-pr-7 {
  padding-right: 1.75rem !important;
}
.is-py-7 {
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}
.is-px-7 {
  padding-left: 1.75rem !important;
  padding-right: 1.75rem !important;
}
.is-gap-7 {
  gap: 1.75rem !important;
}
.is-m-8 {
  margin: 2rem !important;
}
.is-mt-8 {
  margin-top: 2rem !important;
}
.is-mb-8 {
  margin-bottom: 2rem !important;
}
.is-ml-8 {
  margin-left: 2rem !important;
}
.is-mr-8 {
  margin-right: 2rem !important;
}
.is-my-8 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.is-mx-8 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}
.is-p-8 {
  padding: 2rem !important;
}
.is-pt-8 {
  padding-top: 2rem !important;
}
.is-pb-8 {
  padding-bottom: 2rem !important;
}
.is-pl-8 {
  padding-left: 2rem !important;
}
.is-pr-8 {
  padding-right: 2rem !important;
}
.is-py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.is-px-8 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}
.is-gap-8 {
  gap: 2rem !important;
}
.is-m-9 {
  margin: 2.25rem !important;
}
.is-mt-9 {
  margin-top: 2.25rem !important;
}
.is-mb-9 {
  margin-bottom: 2.25rem !important;
}
.is-ml-9 {
  margin-left: 2.25rem !important;
}
.is-mr-9 {
  margin-right: 2.25rem !important;
}
.is-my-9 {
  margin-top: 2.25rem !important;
  margin-bottom: 2.25rem !important;
}
.is-mx-9 {
  margin-left: 2.25rem !important;
  margin-right: 2.25rem !important;
}
.is-p-9 {
  padding: 2.25rem !important;
}
.is-pt-9 {
  padding-top: 2.25rem !important;
}
.is-pb-9 {
  padding-bottom: 2.25rem !important;
}
.is-pl-9 {
  padding-left: 2.25rem !important;
}
.is-pr-9 {
  padding-right: 2.25rem !important;
}
.is-py-9 {
  padding-top: 2.25rem !important;
  padding-bottom: 2.25rem !important;
}
.is-px-9 {
  padding-left: 2.25rem !important;
  padding-right: 2.25rem !important;
}
.is-gap-9 {
  gap: 2.25rem !important;
}
.is-m-10 {
  margin: 2.5rem !important;
}
.is-mt-10 {
  margin-top: 2.5rem !important;
}
.is-mb-10 {
  margin-bottom: 2.5rem !important;
}
.is-ml-10 {
  margin-left: 2.5rem !important;
}
.is-mr-10 {
  margin-right: 2.5rem !important;
}
.is-my-10 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}
.is-mx-10 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}
.is-p-10 {
  padding: 2.5rem !important;
}
.is-pt-10 {
  padding-top: 2.5rem !important;
}
.is-pb-10 {
  padding-bottom: 2.5rem !important;
}
.is-pl-10 {
  padding-left: 2.5rem !important;
}
.is-pr-10 {
  padding-right: 2.5rem !important;
}
.is-py-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}
.is-px-10 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}
.is-gap-10 {
  gap: 2.5rem !important;
}
.is-m-11 {
  margin: 2.75rem !important;
}
.is-mt-11 {
  margin-top: 2.75rem !important;
}
.is-mb-11 {
  margin-bottom: 2.75rem !important;
}
.is-ml-11 {
  margin-left: 2.75rem !important;
}
.is-mr-11 {
  margin-right: 2.75rem !important;
}
.is-my-11 {
  margin-top: 2.75rem !important;
  margin-bottom: 2.75rem !important;
}
.is-mx-11 {
  margin-left: 2.75rem !important;
  margin-right: 2.75rem !important;
}
.is-p-11 {
  padding: 2.75rem !important;
}
.is-pt-11 {
  padding-top: 2.75rem !important;
}
.is-pb-11 {
  padding-bottom: 2.75rem !important;
}
.is-pl-11 {
  padding-left: 2.75rem !important;
}
.is-pr-11 {
  padding-right: 2.75rem !important;
}
.is-py-11 {
  padding-top: 2.75rem !important;
  padding-bottom: 2.75rem !important;
}
.is-px-11 {
  padding-left: 2.75rem !important;
  padding-right: 2.75rem !important;
}
.is-gap-11 {
  gap: 2.75rem !important;
}
.is-m-12 {
  margin: 3rem !important;
}
.is-mt-12 {
  margin-top: 3rem !important;
}
.is-mb-12 {
  margin-bottom: 3rem !important;
}
.is-ml-12 {
  margin-left: 3rem !important;
}
.is-mr-12 {
  margin-right: 3rem !important;
}
.is-my-12 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.is-mx-12 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}
.is-p-12 {
  padding: 3rem !important;
}
.is-pt-12 {
  padding-top: 3rem !important;
}
.is-pb-12 {
  padding-bottom: 3rem !important;
}
.is-pl-12 {
  padding-left: 3rem !important;
}
.is-pr-12 {
  padding-right: 3rem !important;
}
.is-py-12 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.is-px-12 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}
.is-gap-12 {
  gap: 3rem !important;
}
.is-d-flex {
  display: flex !important;
}
.is-flex-column {
  flex-direction: column !important;
}
.is-justify-content-center {
  justify-content: center !important;
}
.is-justify-content-between {
  justify-content: space-between !important;
}
.is-align-items-center {
  align-items: center !important;
}
.is-text-center {
  text-align: center !important;
}
.is-text-right {
  text-align: right !important;
}
.is-w-100 {
  width: 100% !important;
}
.is-font-light {
  font-weight: 300 !important;
}
.is-font-normal {
  font-weight: 400 !important;
}
.is-font-medium {
  font-weight: 500 !important;
}
.is-font-semibold {
  font-weight: 600 !important;
}
.is-font-bold {
  font-weight: 700 !important;
}
.is-text-uppercase {
  text-transform: uppercase !important;
}
.is-text-lowercase {
  text-transform: lowercase !important;
}
.is-text-capitalize {
  text-transform: capitalize !important;
}
.is-text-no-underline {
  text-decoration: none !important;
}
.is-shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}
.is-shadow,
.is-hover-lift:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}
.is-shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}
.is-shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}
.is-rounded-sm {
  border-radius: 0.125rem !important;
}
.is-rounded {
  border-radius: 0.375rem !important;
}
.is-rounded-lg {
  border-radius: 0.75rem !important;
}
.is-rounded-xl {
  border-radius: 1rem !important;
}
.is-rounded-full {
  border-radius: 9999px !important;
}
.is-text-primary {
  color: var(--is-color-primary) !important;
}
.is-text-secondary {
  color: var(--is-color-text-secondary) !important;
}
.is-text-muted {
  color: var(--is-slate-400) !important;
}
.is-text-white {
  color: var(--is-white) !important;
}
.is-text-error {
  color: var(--is-color-error) !important;
}
.is-bg-primary {
  background-color: var(--is-color-primary) !important;
}
.is-bg-secondary {
  background-color: var(--is-color-bg-secondary) !important;
}
.is-bg-slate-50 {
  background-color: var(--is-slate-50) !important;
}
.is-bg-slate-100 {
  background-color: var(--is-slate-100) !important;
}
.is-bg-white {
  background-color: var(--is-white) !important;
}
.is-overflow-hidden {
  overflow: hidden !important;
}
.is-overflow-auto {
  overflow: auto !important;
}
.is-d-none {
  display: none !important;
}
.is-d-block {
  display: block !important;
}
.is-d-inline-block {
  display: inline-block !important;
}
.is-invisible {
  visibility: hidden !important;
}
.is-z-0 {
  z-index: 0 !important;
}
.is-z-10 {
  z-index: 10 !important;
}
.is-z-20 {
  z-index: 20 !important;
}
.is-z-30 {
  z-index: 30 !important;
}
.is-z-40 {
  z-index: 40 !important;
}
.is-z-50 {
  z-index: 50 !important;
}
.is-transition,
.is-hover-lift {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.is-hover-lift:hover {
  transform: translateY(-2px);
}
@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-12px);
  }
}
@keyframes skeleton-shimmer {
  0% {
    background-position: -300% 0;
  }
  100% {
    background-position: 300% 0;
  }
}
::view-transition-old(root) {
  animation: 350ms cubic-bezier(0.4, 0, 0.2, 1) both slide-out;
}
::view-transition-new(root) {
  animation: 350ms cubic-bezier(0.4, 0, 0.2, 1) both slide-in;
}
.is-tooltip {
  position: absolute;
  z-index: 1300;
  max-width: min(28rem, 100vw - 2rem);
  padding: 0.5rem 0.75rem;
  background: var(--is-slate-900);
  color: var(--is-white);
  font-family: var(--is-font-sans);
  font-size: var(--is-text-xs);
  font-weight: 500;
  line-height: 1.5;
  border-radius: var(--is-radius-md);
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: left;
  pointer-events: none;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.22);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 150ms ease, transform 150ms ease;
}
.is-tooltip--visible {
  opacity: 1;
  transform: translateY(0);
}
.is-tooltip::after {
  content: "";
  position: absolute;
  border: 5px solid transparent;
}
.is-tooltip--top::after {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top-color: var(--is-slate-900);
}
.is-tooltip--bottom {
  transform: translateY(-4px);
}
.is-tooltip--bottom.is-tooltip--visible {
  transform: translateY(0);
}
.is-tooltip--bottom::after {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-color: var(--is-slate-900);
}
.is-tooltip--left {
  transform: translateX(4px);
}
.is-tooltip--left.is-tooltip--visible {
  transform: translateX(0);
}
.is-tooltip--left::after {
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-left-color: var(--is-slate-900);
}
.is-tooltip--right {
  transform: translateX(-4px);
}
.is-tooltip--right.is-tooltip--visible {
  transform: translateX(0);
}
.is-tooltip--right::after {
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-right-color: var(--is-slate-900);
}
[data-theme=dark] .is-tooltip {
  background: var(--is-slate-700);
  color: var(--is-slate-50);
}
[data-theme=dark] .is-tooltip--top::after {
  border-top-color: var(--is-slate-700);
}
[data-theme=dark] .is-tooltip--bottom::after {
  border-bottom-color: var(--is-slate-700);
}
[data-theme=dark] .is-tooltip--left::after {
  border-left-color: var(--is-slate-700);
}
[data-theme=dark] .is-tooltip--right::after {
  border-right-color: var(--is-slate-700);
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
