:root {
  --mr-bg: #f5f4ed;
  --mr-surface: #faf9f5;
  --mr-paper: #ffffff;
  --mr-warm: #ece8dc;
  --mr-warm-deep: #dfd8c9;
  --mr-ink: #141413;
  --mr-ink-soft: #2d2b27;
  --mr-text: #171614;
  --mr-text-soft: #5d5b55;
  --mr-text-muted: #8a877f;
  --mr-line: #e5e0d4;
  --mr-line-deep: #d3ccbb;
  --mr-brand: #c96442;
  --mr-brand-soft: #d97a59;
  --mr-olive: #66715f;
  --mr-success-bg: #dfe8d7;
  --mr-success-text: #4f6550;
  --mr-warning-bg: #eee2ce;
  --mr-warning-text: #8a6840;
  --mr-danger-bg: #f1ddd7;
  --mr-danger-text: #8c584e;
  --mr-shadow: 0 18px 42px rgba(20, 20, 19, 0.06);
  --mr-shadow-soft: 0 8px 24px rgba(20, 20, 19, 0.04);
  --mr-radius-xl: 30px;
  --mr-radius-lg: 24px;
  --mr-radius-md: 18px;
  --mr-radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.mr-editorial {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(201, 100, 66, 0.08), transparent 24%),
    radial-gradient(circle at bottom left, rgba(102, 113, 95, 0.1), transparent 26%),
    linear-gradient(180deg, #f7f5ee 0%, #f3f1e8 100%);
  color: var(--mr-text);
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.mr-editorial a {
  color: inherit;
}

.mr-editorial h1,
.mr-editorial h2,
.mr-editorial h3,
.mr-editorial h4 {
  margin: 0;
  color: var(--mr-text);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.mr-editorial p {
  color: var(--mr-text-soft);
}

.mr-editorial code,
.mr-editorial pre {
  font-family: Consolas, "SFMono-Regular", Menlo, monospace;
}

.mr-editorial code {
  border-radius: 999px;
  background: #f1ede2;
  padding: 0.18rem 0.48rem;
  color: var(--mr-ink-soft);
}

.mr-editorial pre {
  border-radius: var(--mr-radius-md);
  background: #f6f3e8;
  padding: 16px;
  color: var(--mr-text-soft);
  white-space: pre-wrap;
}

.mr-container {
  width: min(1440px, calc(100vw - 40px));
  margin: 0 auto;
}

.mr-kicker {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mr-text-muted);
}

.mr-serif {
  font-family: Georgia, "Times New Roman", serif;
}

.mr-page-title {
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.08;
}

.mr-page-copy {
  font-size: 15px;
  line-height: 1.9;
  color: var(--mr-text-soft);
}

.mr-btn,
.mr-editorial button,
.mr-editorial a.inline-flex,
.mr-editorial a[class*="rounded-full"] {
  border: 0;
  border-radius: 999px;
  transition: 180ms ease;
}

.mr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  text-decoration: none;
  cursor: pointer;
}

.mr-btn:hover,
.mr-editorial button:hover,
.mr-editorial a.inline-flex:hover,
.mr-editorial a[class*="rounded-full"]:hover {
  transform: translateY(-1px);
}

.mr-btn--brand {
  background: var(--mr-brand);
  color: var(--mr-paper);
  box-shadow: 0 0 0 1px var(--mr-brand);
}

.mr-btn--brand:hover {
  background: var(--mr-brand-soft);
  box-shadow: 0 0 0 1px var(--mr-brand-soft);
}

.mr-btn--soft {
  background: var(--mr-warm);
  color: var(--mr-ink-soft);
  box-shadow: 0 0 0 1px var(--mr-line-deep);
}

.mr-btn--ink {
  background: var(--mr-ink);
  color: var(--mr-paper);
  box-shadow: 0 0 0 1px var(--mr-ink);
}

.mr-btn--ghost {
  background: var(--mr-paper);
  color: var(--mr-text-soft);
  box-shadow: 0 0 0 1px var(--mr-line);
}

@keyframes mr-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.mr-btn.mr-btn--loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.mr-btn.mr-btn--loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  margin-left: -8px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: mr-spin 0.6s linear infinite;
}

.mr-btn--soft.mr-btn--loading::after,
.mr-btn--ghost.mr-btn--loading::after {
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-top-color: var(--mr-ink-soft);
}

.mr-editorial input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]),
.mr-editorial select,
.mr-editorial textarea {
  width: 100%;
  border-radius: var(--mr-radius-sm);
  border: 1px solid var(--mr-line);
  background: var(--mr-paper);
  color: var(--mr-text);
  padding: 12px 15px;
  outline: none;
  transition: 160ms ease;
  box-shadow: none;
}

.mr-editorial input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):focus,
.mr-editorial select:focus,
.mr-editorial textarea:focus {
  border-color: rgba(201, 100, 66, 0.5);
  box-shadow: 0 0 0 4px rgba(201, 100, 66, 0.12);
}

.mr-editorial input[type="file"]::-webkit-file-upload-button {
  margin-right: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--mr-warm);
  padding: 8px 14px;
  color: var(--mr-ink-soft);
}

.mr-editorial input[type="file"]::file-selector-button {
  margin-right: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--mr-warm);
  padding: 8px 14px;
  color: var(--mr-ink-soft);
}

.mr-editorial input[type="checkbox"],
.mr-editorial input[type="radio"] {
  accent-color: var(--mr-brand);
}

.mr-editorial input[type="range"] {
  accent-color: var(--mr-brand);
}

.mr-card {
  border-radius: var(--mr-radius-xl);
  border: 1px solid var(--mr-line);
  background: rgba(250, 249, 245, 0.94);
  box-shadow: var(--mr-shadow);
}

.mr-card--paper {
  background: rgba(255, 255, 255, 0.92);
}

.mr-card--soft {
  background: rgba(241, 237, 226, 0.84);
}

.mr-card--dark {
  border-color: rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, #171614 0%, #23211d 100%);
  color: var(--mr-paper);
  box-shadow: 0 18px 42px rgba(20, 20, 19, 0.16);
}

.mr-card--dark p,
.mr-card--dark small,
.mr-card--dark .mr-kicker {
  color: #b8b3a6;
}

.mr-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.mr-pill--brand {
  background: rgba(201, 100, 66, 0.12);
  color: var(--mr-brand);
}

.mr-pill--soft {
  background: var(--mr-warm);
  color: var(--mr-text-soft);
}

.mr-pill--success {
  background: var(--mr-success-bg);
  color: var(--mr-success-text);
}

.mr-pill--warn {
  background: var(--mr-warning-bg);
  color: var(--mr-warning-text);
}

.mr-pill--danger {
  background: var(--mr-danger-bg);
  color: var(--mr-danger-text);
}

.mr-auth-shell {
  min-height: 100vh;
  padding: 28px 0;
}

.mr-auth-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.1fr 0.9fr;
}

.mr-auth-hero,
.mr-auth-panel {
  padding: 32px;
}

.mr-auth-hero {
  min-height: 720px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(201, 100, 66, 0.24), transparent 28%),
    radial-gradient(circle at bottom left, rgba(102, 113, 95, 0.18), transparent 24%),
    linear-gradient(160deg, #f8f5ec 0%, #f1ebde 100%);
  border: 1px solid rgba(211, 204, 187, 0.95);
  box-shadow: var(--mr-shadow);
}

.mr-auth-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 1px rgba(211, 204, 187, 0.95);
}

.mr-auth-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mr-auth-title {
  margin-top: 18px;
  max-width: 9.8em;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.05;
}

.mr-auth-copy {
  margin-top: 18px;
  max-width: 680px;
  font-size: 16px;
  line-height: 1.9;
}

.mr-auth-notes {
  margin-top: 34px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.mr-auth-note {
  border-radius: var(--mr-radius-lg);
  background: rgba(255, 255, 255, 0.72);
  padding: 18px;
  box-shadow: 0 0 0 1px rgba(229, 224, 212, 0.95);
}

.mr-auth-note strong {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  color: var(--mr-text);
}

.mr-auth-panel {
  border-radius: 36px;
  border: 1px solid rgba(211, 204, 187, 0.95);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--mr-shadow);
  backdrop-filter: blur(18px);
}

.mr-auth-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.mr-auth-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: var(--mr-warm);
  box-shadow: 0 0 0 1px var(--mr-line);
}

.auth-tab {
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--mr-text-soft);
}

.auth-tab.active {
  background: var(--mr-brand);
  color: var(--mr-paper);
  box-shadow: 0 0 0 1px var(--mr-brand);
}

.mr-shell-screen {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: var(--mr-bg);
  overflow: hidden;
}

.mr-shell-topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 42px;
  padding: 0 18px;
  border-bottom: 1px solid var(--mr-line);
  background: rgba(250, 249, 245, 0.94);
  color: var(--mr-text-muted);
  font-size: 12px;
}

.mr-shell-topbar strong {
  color: var(--mr-text-soft);
}

.mr-top-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--mr-olive);
  box-shadow: 0 0 0 4px rgba(102, 113, 95, 0.12);
}

.mr-shell-topbar .mr-sep {
  flex: 1;
}

.mr-shell-body {
  flex: 1;
  display: grid;
  grid-template-columns: 254px minmax(0, 1fr) 316px;
  overflow: hidden;
}

.mr-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 16px;
  border-right: 1px solid var(--mr-line);
  background: rgba(250, 249, 245, 0.88);
}

.mr-sidebar-brand,
.mr-sidebar-block,
.mr-sidebar-user {
  border-radius: var(--mr-radius-lg);
  border: 1px solid var(--mr-line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--mr-shadow-soft);
}

.mr-sidebar-brand {
  padding: 18px;
}

.mr-brand-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.mr-brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(201, 100, 66, 0.12);
  box-shadow: 0 0 0 1px rgba(201, 100, 66, 0.16);
}

.mr-brand-name {
  font-size: 20px;
}

.mr-brand-copy {
  margin-top: 4px;
  font-size: 12px;
  color: var(--mr-text-muted);
}

.mr-sidebar-block {
  padding: 16px;
}

.mr-sidebar-stats {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

.mr-mini-stat {
  border-radius: var(--mr-radius-md);
  background: #f7f3e9;
  padding: 12px;
  box-shadow: 0 0 0 1px var(--mr-line);
}

.mr-mini-stat .label {
  font-size: 11px;
  color: var(--mr-text-muted);
}

.mr-mini-stat .value {
  margin-top: 4px;
  font-size: 20px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--mr-text);
}

.mr-nav-group + .mr-nav-group {
  margin-top: 12px;
}

.mr-nav-label {
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mr-text-muted);
}

.mr-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--mr-radius-md);
  color: var(--mr-text-soft);
  text-decoration: none;
  box-shadow: 0 0 0 1px transparent;
}

.mr-nav-item:hover {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 0 1px var(--mr-line);
}

.mr-nav-item.active {
  background: rgba(255, 255, 255, 0.9);
  color: var(--mr-text);
  box-shadow: 0 0 0 1px rgba(201, 100, 66, 0.18), 0 10px 20px rgba(20, 20, 19, 0.05);
}

.mr-nav-icon {
  width: 20px;
  text-align: center;
  font-size: 14px;
}

.mr-nav-copy {
  min-width: 0;
}

.mr-nav-copy strong {
  display: block;
  font-size: 14px;
}

.mr-nav-copy span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: var(--mr-text-muted);
}

.mr-nav-badge {
  margin-left: auto;
}

.mr-sidebar-user {
  margin-top: auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mr-user-avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--mr-ink);
  color: var(--mr-paper);
  font-weight: 700;
}

.mr-user-copy {
  flex: 1;
  min-width: 0;
}

.mr-user-copy strong,
.mr-user-copy span {
  display: block;
}

.mr-user-copy span {
  margin-top: 2px;
  font-size: 12px;
  color: var(--mr-text-muted);
}

.mr-main {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
  background: rgba(245, 244, 237, 0.9);
}

.mr-main-header {
  padding: 10px 16px 0;
}

.mr-main-header-card {
  padding: 12px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.mr-main-header-card p {
  margin: 10px 0 0;
}

.mr-main-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mr-stat-strip {
  padding: 10px 22px 0;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(5, 1fr);
}

.mr-stat-card {
  padding: 10px 14px;
}

.mr-stat-card .value {
  margin-top: 4px;
  font-size: 22px;
  font-family: Georgia, "Times New Roman", serif;
}

.mr-stat-card .label {
  font-size: 12px;
  color: var(--mr-text-muted);
}

.mr-flash-wrap {
  padding: 14px 22px 0;
}

.mr-content-scroll {
  flex: 1;
  overflow: auto;
  min-height: 0;
  padding: 14px 22px 24px;
}

.mr-rail {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px 14px;
  border-left: 1px solid var(--mr-line);
  background: rgba(250, 249, 245, 0.88);
  overflow-y: auto;
  min-height: 0;
}

.mr-rail-card {
  padding: 18px;
}

.mr-rail-summary {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  font-size: 0; /* collapse any orphan text nodes */
}

.mr-rail-summary .mr-kicker {
  font-size: 11px;
}

.mr-rail-summary .value {
  font-size: 20px;
}

.mr-rail-metric {
  border-radius: var(--mr-radius-md);
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.mr-rail-metric .value {
  margin-top: 4px;
  font-size: 20px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--mr-paper);
}

.mr-action-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

.mr-action-card {
  border-radius: var(--mr-radius-md);
  background: #f6f3e9;
  padding: 10px;
  box-shadow: 0 0 0 1px var(--mr-line);
  color: var(--mr-text-soft);
  cursor: pointer;
}

.mr-action-card:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--mr-text);
}

.mr-task-placeholder,
.mr-stream-placeholder {
  border-radius: var(--mr-radius-md);
  padding: 14px;
  background: #f7f3e9;
  box-shadow: 0 0 0 1px var(--mr-line);
  color: var(--mr-text-muted);
}

.mr-editorial ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.mr-editorial ::-webkit-scrollbar-track {
  background: transparent;
}

.mr-editorial ::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(138, 135, 127, 0.35);
}

.mr-editorial [class*="bg-white/85"],
.mr-editorial [class*="bg-white/90"],
.mr-editorial [class*="bg-white/5"],
.mr-editorial [class*="bg-white"],
.mr-editorial [class*="bg-slate-50"],
.mr-editorial [class*="bg-sky-50"],
.mr-editorial [class*="bg-teal-50"],
.mr-editorial [class*="bg-amber-50"] {
  background-color: rgba(250, 249, 245, 0.92) !important;
}

.mr-editorial [class*="bg-slate-100"],
.mr-editorial [class*="bg-slate-200"] {
  background-color: var(--mr-warm) !important;
}

.mr-editorial [class*="bg-slate-900"],
.mr-editorial [class*="bg-slate-950"] {
  background-color: var(--mr-ink) !important;
  color: var(--mr-paper) !important;
}

.mr-editorial [class*="bg-teal-600"],
.mr-editorial [class*="bg-sky-600"] {
  background-color: var(--mr-brand) !important;
  color: var(--mr-paper) !important;
}

.mr-editorial [class*="bg-sky-100"],
.mr-editorial [class*="bg-teal-100"] {
  background-color: rgba(201, 100, 66, 0.12) !important;
  color: var(--mr-brand) !important;
}

.mr-editorial [class*="bg-emerald-100"] {
  background-color: var(--mr-success-bg) !important;
  color: var(--mr-success-text) !important;
}

.mr-editorial [class*="bg-amber-100"] {
  background-color: var(--mr-warning-bg) !important;
  color: var(--mr-warning-text) !important;
}

.mr-editorial [class*="bg-rose-100"] {
  background-color: var(--mr-danger-bg) !important;
  color: var(--mr-danger-text) !important;
}

.mr-editorial [class*="border-white/70"],
.mr-editorial [class*="border-white/60"],
.mr-editorial [class*="border-slate-200"],
.mr-editorial [class*="border-slate-100"],
.mr-editorial [class*="border-sky-200"],
.mr-editorial [class*="border-teal-200"],
.mr-editorial [class*="border-amber-100"],
.mr-editorial [class*="border-dashed"] {
  border-color: var(--mr-line) !important;
}

.mr-editorial [class*="text-slate-900"],
.mr-editorial [class*="text-slate-800"],
.mr-editorial [class*="text-slate-700"] {
  color: var(--mr-text) !important;
}

.mr-editorial [class*="text-slate-600"],
.mr-editorial [class*="text-slate-500"] {
  color: var(--mr-text-soft) !important;
}

.mr-editorial [class*="text-slate-400"] {
  color: var(--mr-text-muted) !important;
}

.mr-editorial [class*="text-teal-600"],
.mr-editorial [class*="text-teal-700"],
.mr-editorial [class*="text-sky-600"],
.mr-editorial [class*="text-sky-700"] {
  color: var(--mr-brand) !important;
}

.mr-editorial [class*="ring-sky-200"],
.mr-editorial [class*="ring-teal-200"],
.mr-editorial [class*="ring-slate-200"],
.mr-editorial [class*="ring-slate-300"],
.mr-editorial [class*="ring-emerald-200"],
.mr-editorial [class*="ring-amber-200"],
.mr-editorial [class*="ring-rose-200"] {
  --tw-ring-color: var(--mr-line) !important;
}

.mr-editorial [class*="shadow-[0_24px_60px_"],
.mr-editorial [class*="shadow-sm"],
.mr-editorial [class*="shadow-lg"],
.mr-editorial [class*="shadow-md"] {
  box-shadow: var(--mr-shadow) !important;
}

.mr-editorial [class*="focus:border-teal-500"]:focus,
.mr-editorial [class*="focus:border-sky-500"]:focus {
  border-color: rgba(201, 100, 66, 0.5) !important;
}

.mr-editorial [class*="focus:ring-teal-100"]:focus,
.mr-editorial [class*="focus:ring-sky-100"]:focus {
  box-shadow: 0 0 0 4px rgba(201, 100, 66, 0.12) !important;
}

.mr-editorial [class*="accent-teal-600"],
.mr-editorial [class*="text-teal-600"][type="checkbox"],
.mr-editorial [class*="text-teal-600"][type="radio"] {
  accent-color: var(--mr-brand) !important;
}

.mr-editorial [class*="rounded-[32px]"] {
  border-radius: var(--mr-radius-xl) !important;
}

.mr-editorial [class*="rounded-3xl"] {
  border-radius: var(--mr-radius-lg) !important;
}

.mr-editorial [class*="rounded-2xl"] {
  border-radius: var(--mr-radius-md) !important;
}

.mr-editorial [class*="rounded-full"] {
  border-radius: 999px !important;
}

.mr-editorial [class*="backdrop-blur"] {
  backdrop-filter: blur(16px);
}

.mr-editorial [class*="bg-slate-950"] textarea,
.mr-editorial [class*="bg-slate-950"] pre,
.mr-editorial .mr-card--dark textarea,
.mr-editorial .mr-card--dark pre {
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--mr-paper) !important;
}

.mr-editorial .fixed[class*="bg-slate-900/35"] {
  background: rgba(20, 20, 19, 0.38) !important;
}

.mr-editorial aside[id$="Drawer"] {
  background: rgba(250, 249, 245, 0.98) !important;
  border-left-color: var(--mr-line) !important;
}

@media (max-width: 1360px) {
  .mr-shell-body {
    grid-template-columns: 236px minmax(0, 1fr) 292px;
  }
}

@media (max-width: 1180px) {
  .mr-auth-grid,
  .mr-shell-body {
    grid-template-columns: 1fr;
  }

  .mr-sidebar,
  .mr-rail {
    overflow: visible;
  }

  .mr-main {
    order: -1;
  }
}

@media (max-width: 860px) {
  .mr-container {
    width: min(100vw - 24px, 100%);
  }

  .mr-auth-shell {
    padding: 14px 0;
  }

  .mr-auth-hero,
  .mr-auth-panel,
  .mr-main-header-card,
  .mr-rail-card {
    padding: 22px;
  }

  .mr-auth-notes,
  .mr-stat-strip,
  .mr-sidebar-stats,
  .mr-action-grid {
    grid-template-columns: 1fr;
  }

  .mr-main-actions,
  .mr-auth-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .mr-shell-topbar {
    flex-wrap: wrap;
    min-height: 56px;
    padding: 10px 14px;
  }
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */ /* 3 */
  tab-size: 4; /* 3 */
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

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

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

.container {
  width: 100%;
}

@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {

  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}

.collapse {
  visibility: collapse;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.inset-0 {
  inset: 0px;
}

.inset-y-0 {
  top: 0px;
  bottom: 0px;
}

.-left-px {
  left: -1px;
}

.-top-7 {
  top: -1.75rem;
}

.bottom-4 {
  bottom: 1rem;
}

.left-4 {
  left: 1rem;
}

.right-0 {
  right: 0px;
}

.z-10 {
  z-index: 10;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.col-span-3 {
  grid-column: span 3 / span 3;
}

.col-span-4 {
  grid-column: span 4 / span 4;
}

.col-span-5 {
  grid-column: span 5 / span 5;
}

.col-span-full {
  grid-column: 1 / -1;
}

.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-1\.5 {
  margin-bottom: 0.375rem;
}

.mb-11 {
  margin-bottom: 2.75rem;
}

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

.mb-2 {
  margin-bottom: 0.5rem;
}

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

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

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

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

.mb-\[18px\] {
  margin-bottom: 18px;
}

.mb-lg {
  margin-bottom: 40px;
}

.mb-md {
  margin-bottom: 24px;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-4 {
  margin-left: 1rem;
}

.ml-auto {
  margin-left: auto;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

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

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

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

.mt-2 {
  margin-top: 0.5rem;
}

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

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

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

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

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

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

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.\!grid {
  display: grid !important;
}

.grid {
  display: grid;
}

.inline-grid {
  display: inline-grid;
}

.hidden {
  display: none;
}

.aspect-\[4\/3\] {
  aspect-ratio: 4/3;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.h-2 {
  height: 0.5rem;
}

.h-20 {
  height: 5rem;
}

.h-3 {
  height: 0.75rem;
}

.h-4 {
  height: 1rem;
}

.h-40 {
  height: 10rem;
}

.h-48 {
  height: 12rem;
}

.h-8 {
  height: 2rem;
}

.h-\[52px\] {
  height: 52px;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.max-h-64 {
  max-height: 16rem;
}

.max-h-\[72vh\] {
  max-height: 72vh;
}

.max-h-\[78vh\] {
  max-height: 78vh;
}

.max-h-\[calc\(100vh-260px\)\] {
  max-height: calc(100vh - 260px);
}

.min-h-\[18px\] {
  min-height: 18px;
}

.min-h-screen {
  min-height: 100vh;
}

.w-0 {
  width: 0px;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-16 {
  width: 4rem;
}

.w-2 {
  width: 0.5rem;
}

.w-20 {
  width: 5rem;
}

.w-24 {
  width: 6rem;
}

.w-28 {
  width: 7rem;
}

.w-4 {
  width: 1rem;
}

.w-64 {
  width: 16rem;
}

.w-72 {
  width: 18rem;
}

.w-8 {
  width: 2rem;
}

.w-\[52px\] {
  width: 52px;
}

.w-fit {
  width: fit-content;
}

.w-full {
  width: 100%;
}

.min-w-0 {
  min-width: 0px;
}

.min-w-\[260px\] {
  min-width: 260px;
}

.min-w-full {
  min-width: 100%;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-\[1100px\] {
  max-width: 1100px;
}

.max-w-\[1440px\] {
  max-width: 1440px;
}

.max-w-\[260px\] {
  max-width: 260px;
}

.max-w-\[420px\] {
  max-width: 420px;
}

.max-w-\[460px\] {
  max-width: 460px;
}

.max-w-\[96vw\] {
  max-width: 96vw;
}

.max-w-full {
  max-width: 100%;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-none {
  max-width: none;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-xs {
  max-width: 20rem;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-initial {
  flex: 0 1 auto;
}

.flex-none {
  flex: none;
}

.flex-shrink {
  flex-shrink: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.shrink-0 {
  flex-shrink: 0;
}

.flex-grow {
  flex-grow: 1;
}

.flex-grow-0 {
  flex-grow: 0;
}

.border-collapse {
  border-collapse: collapse;
}

.border-separate {
  border-collapse: separate;
}

.border-spacing-0 {
  --tw-border-spacing-x: 0px;
  --tw-border-spacing-y: 0px;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.-translate-x-full {
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-full {
  --tw-translate-x: 100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes spin {

  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.cursor-crosshair {
  cursor: crosshair;
}

.cursor-pointer {
  cursor: pointer;
}

.select-none {
  user-select: none;
}

.resize {
  resize: both;
}

.list-inside {
  list-style-position: inside;
}

.list-decimal {
  list-style-type: decimal;
}

.grid-flow-row {
  grid-auto-flow: row;
}

.grid-flow-col {
  grid-auto-flow: column;
}

.grid-flow-dense {
  grid-auto-flow: dense;
}

.grid-flow-row-dense {
  grid-auto-flow: row dense;
}

.grid-flow-col-dense {
  grid-auto-flow: column dense;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-cols-none {
  grid-template-columns: none;
}

.grid-cols-subgrid {
  grid-template-columns: subgrid;
}

.grid-rows-1 {
  grid-template-rows: repeat(1, minmax(0, 1fr));
}

.grid-rows-10 {
  grid-template-rows: repeat(10, minmax(0, 1fr));
}

.grid-rows-11 {
  grid-template-rows: repeat(11, minmax(0, 1fr));
}

.grid-rows-12 {
  grid-template-rows: repeat(12, minmax(0, 1fr));
}

.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.grid-rows-3 {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.grid-rows-4 {
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.grid-rows-5 {
  grid-template-rows: repeat(5, minmax(0, 1fr));
}

.grid-rows-6 {
  grid-template-rows: repeat(6, minmax(0, 1fr));
}

.grid-rows-7 {
  grid-template-rows: repeat(7, minmax(0, 1fr));
}

.grid-rows-8 {
  grid-template-rows: repeat(8, minmax(0, 1fr));
}

.grid-rows-9 {
  grid-template-rows: repeat(9, minmax(0, 1fr));
}

.grid-rows-none {
  grid-template-rows: none;
}

.grid-rows-subgrid {
  grid-template-rows: subgrid;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

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

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

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

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

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

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-3\.5 {
  gap: 0.875rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-gutter {
  gap: 24px;
}

.gap-xl {
  gap: 64px;
}

.space-y-0 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0px * var(--tw-space-y-reverse));
}

.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}

.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.space-y-5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.space-y-base > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(8px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(8px * var(--tw-space-y-reverse));
}

.space-y-md > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(24px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(24px * var(--tw-space-y-reverse));
}

.space-y-xl > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(64px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(64px * var(--tw-space-y-reverse));
}

.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}

.divide-outline-variant > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(220 193 184 / var(--tw-divide-opacity, 1));
}

.divide-slate-100 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(241 245 249 / var(--tw-divide-opacity, 1));
}

.divide-slate-200 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-divide-opacity, 1));
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

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

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

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

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

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.whitespace-pre-wrap {
  white-space: pre-wrap;
}

.break-all {
  word-break: break-all;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-\[24px\] {
  border-radius: 24px;
}

.rounded-\[28px\] {
  border-radius: 28px;
}

.rounded-\[32px\] {
  border-radius: 32px;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-none {
  border-radius: 0px;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.border {
  border-width: 1px;
}

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

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

.border-b {
  border-bottom-width: 1px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-l {
  border-left-width: 1px;
}

.border-l-4 {
  border-left-width: 4px;
}

.border-r {
  border-right-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

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

.border-hidden {
  border-style: hidden;
}

.border-none {
  border-style: none;
}

.border-\[\#c96442\] {
  --tw-border-opacity: 1;
  border-color: rgb(201 100 66 / var(--tw-border-opacity, 1));
}

.border-\[\#e8e6dc\] {
  --tw-border-opacity: 1;
  border-color: rgb(232 230 220 / var(--tw-border-opacity, 1));
}

.border-amber-100 {
  --tw-border-opacity: 1;
  border-color: rgb(254 243 199 / var(--tw-border-opacity, 1));
}

.border-amber-100\/0 {
  border-color: rgb(254 243 199 / 0);
}

.border-amber-100\/10 {
  border-color: rgb(254 243 199 / 0.1);
}

.border-amber-100\/100 {
  border-color: rgb(254 243 199 / 1);
}

.border-amber-100\/15 {
  border-color: rgb(254 243 199 / 0.15);
}

.border-amber-100\/20 {
  border-color: rgb(254 243 199 / 0.2);
}

.border-amber-100\/25 {
  border-color: rgb(254 243 199 / 0.25);
}

.border-amber-100\/30 {
  border-color: rgb(254 243 199 / 0.3);
}

.border-amber-100\/35 {
  border-color: rgb(254 243 199 / 0.35);
}

.border-amber-100\/40 {
  border-color: rgb(254 243 199 / 0.4);
}

.border-amber-100\/45 {
  border-color: rgb(254 243 199 / 0.45);
}

.border-amber-100\/5 {
  border-color: rgb(254 243 199 / 0.05);
}

.border-amber-100\/50 {
  border-color: rgb(254 243 199 / 0.5);
}

.border-amber-100\/55 {
  border-color: rgb(254 243 199 / 0.55);
}

.border-amber-100\/60 {
  border-color: rgb(254 243 199 / 0.6);
}

.border-amber-100\/65 {
  border-color: rgb(254 243 199 / 0.65);
}

.border-amber-100\/70 {
  border-color: rgb(254 243 199 / 0.7);
}

.border-amber-100\/75 {
  border-color: rgb(254 243 199 / 0.75);
}

.border-amber-100\/80 {
  border-color: rgb(254 243 199 / 0.8);
}

.border-amber-100\/85 {
  border-color: rgb(254 243 199 / 0.85);
}

.border-amber-100\/90 {
  border-color: rgb(254 243 199 / 0.9);
}

.border-amber-100\/95 {
  border-color: rgb(254 243 199 / 0.95);
}

.border-amber-200 {
  --tw-border-opacity: 1;
  border-color: rgb(253 230 138 / var(--tw-border-opacity, 1));
}

.border-amber-200\/0 {
  border-color: rgb(253 230 138 / 0);
}

.border-amber-200\/10 {
  border-color: rgb(253 230 138 / 0.1);
}

.border-amber-200\/100 {
  border-color: rgb(253 230 138 / 1);
}

.border-amber-200\/15 {
  border-color: rgb(253 230 138 / 0.15);
}

.border-amber-200\/20 {
  border-color: rgb(253 230 138 / 0.2);
}

.border-amber-200\/25 {
  border-color: rgb(253 230 138 / 0.25);
}

.border-amber-200\/30 {
  border-color: rgb(253 230 138 / 0.3);
}

.border-amber-200\/35 {
  border-color: rgb(253 230 138 / 0.35);
}

.border-amber-200\/40 {
  border-color: rgb(253 230 138 / 0.4);
}

.border-amber-200\/45 {
  border-color: rgb(253 230 138 / 0.45);
}

.border-amber-200\/5 {
  border-color: rgb(253 230 138 / 0.05);
}

.border-amber-200\/50 {
  border-color: rgb(253 230 138 / 0.5);
}

.border-amber-200\/55 {
  border-color: rgb(253 230 138 / 0.55);
}

.border-amber-200\/60 {
  border-color: rgb(253 230 138 / 0.6);
}

.border-amber-200\/65 {
  border-color: rgb(253 230 138 / 0.65);
}

.border-amber-200\/70 {
  border-color: rgb(253 230 138 / 0.7);
}

.border-amber-200\/75 {
  border-color: rgb(253 230 138 / 0.75);
}

.border-amber-200\/80 {
  border-color: rgb(253 230 138 / 0.8);
}

.border-amber-200\/85 {
  border-color: rgb(253 230 138 / 0.85);
}

.border-amber-200\/90 {
  border-color: rgb(253 230 138 / 0.9);
}

.border-amber-200\/95 {
  border-color: rgb(253 230 138 / 0.95);
}

.border-amber-300 {
  --tw-border-opacity: 1;
  border-color: rgb(252 211 77 / var(--tw-border-opacity, 1));
}

.border-amber-300\/0 {
  border-color: rgb(252 211 77 / 0);
}

.border-amber-300\/10 {
  border-color: rgb(252 211 77 / 0.1);
}

.border-amber-300\/100 {
  border-color: rgb(252 211 77 / 1);
}

.border-amber-300\/15 {
  border-color: rgb(252 211 77 / 0.15);
}

.border-amber-300\/20 {
  border-color: rgb(252 211 77 / 0.2);
}

.border-amber-300\/25 {
  border-color: rgb(252 211 77 / 0.25);
}

.border-amber-300\/30 {
  border-color: rgb(252 211 77 / 0.3);
}

.border-amber-300\/35 {
  border-color: rgb(252 211 77 / 0.35);
}

.border-amber-300\/40 {
  border-color: rgb(252 211 77 / 0.4);
}

.border-amber-300\/45 {
  border-color: rgb(252 211 77 / 0.45);
}

.border-amber-300\/5 {
  border-color: rgb(252 211 77 / 0.05);
}

.border-amber-300\/50 {
  border-color: rgb(252 211 77 / 0.5);
}

.border-amber-300\/55 {
  border-color: rgb(252 211 77 / 0.55);
}

.border-amber-300\/60 {
  border-color: rgb(252 211 77 / 0.6);
}

.border-amber-300\/65 {
  border-color: rgb(252 211 77 / 0.65);
}

.border-amber-300\/70 {
  border-color: rgb(252 211 77 / 0.7);
}

.border-amber-300\/75 {
  border-color: rgb(252 211 77 / 0.75);
}

.border-amber-300\/80 {
  border-color: rgb(252 211 77 / 0.8);
}

.border-amber-300\/85 {
  border-color: rgb(252 211 77 / 0.85);
}

.border-amber-300\/90 {
  border-color: rgb(252 211 77 / 0.9);
}

.border-amber-300\/95 {
  border-color: rgb(252 211 77 / 0.95);
}

.border-amber-400 {
  --tw-border-opacity: 1;
  border-color: rgb(251 191 36 / var(--tw-border-opacity, 1));
}

.border-amber-400\/0 {
  border-color: rgb(251 191 36 / 0);
}

.border-amber-400\/10 {
  border-color: rgb(251 191 36 / 0.1);
}

.border-amber-400\/100 {
  border-color: rgb(251 191 36 / 1);
}

.border-amber-400\/15 {
  border-color: rgb(251 191 36 / 0.15);
}

.border-amber-400\/20 {
  border-color: rgb(251 191 36 / 0.2);
}

.border-amber-400\/25 {
  border-color: rgb(251 191 36 / 0.25);
}

.border-amber-400\/30 {
  border-color: rgb(251 191 36 / 0.3);
}

.border-amber-400\/35 {
  border-color: rgb(251 191 36 / 0.35);
}

.border-amber-400\/40 {
  border-color: rgb(251 191 36 / 0.4);
}

.border-amber-400\/45 {
  border-color: rgb(251 191 36 / 0.45);
}

.border-amber-400\/5 {
  border-color: rgb(251 191 36 / 0.05);
}

.border-amber-400\/50 {
  border-color: rgb(251 191 36 / 0.5);
}

.border-amber-400\/55 {
  border-color: rgb(251 191 36 / 0.55);
}

.border-amber-400\/60 {
  border-color: rgb(251 191 36 / 0.6);
}

.border-amber-400\/65 {
  border-color: rgb(251 191 36 / 0.65);
}

.border-amber-400\/70 {
  border-color: rgb(251 191 36 / 0.7);
}

.border-amber-400\/75 {
  border-color: rgb(251 191 36 / 0.75);
}

.border-amber-400\/80 {
  border-color: rgb(251 191 36 / 0.8);
}

.border-amber-400\/85 {
  border-color: rgb(251 191 36 / 0.85);
}

.border-amber-400\/90 {
  border-color: rgb(251 191 36 / 0.9);
}

.border-amber-400\/95 {
  border-color: rgb(251 191 36 / 0.95);
}

.border-amber-50 {
  --tw-border-opacity: 1;
  border-color: rgb(255 251 235 / var(--tw-border-opacity, 1));
}

.border-amber-50\/0 {
  border-color: rgb(255 251 235 / 0);
}

.border-amber-50\/10 {
  border-color: rgb(255 251 235 / 0.1);
}

.border-amber-50\/100 {
  border-color: rgb(255 251 235 / 1);
}

.border-amber-50\/15 {
  border-color: rgb(255 251 235 / 0.15);
}

.border-amber-50\/20 {
  border-color: rgb(255 251 235 / 0.2);
}

.border-amber-50\/25 {
  border-color: rgb(255 251 235 / 0.25);
}

.border-amber-50\/30 {
  border-color: rgb(255 251 235 / 0.3);
}

.border-amber-50\/35 {
  border-color: rgb(255 251 235 / 0.35);
}

.border-amber-50\/40 {
  border-color: rgb(255 251 235 / 0.4);
}

.border-amber-50\/45 {
  border-color: rgb(255 251 235 / 0.45);
}

.border-amber-50\/5 {
  border-color: rgb(255 251 235 / 0.05);
}

.border-amber-50\/50 {
  border-color: rgb(255 251 235 / 0.5);
}

.border-amber-50\/55 {
  border-color: rgb(255 251 235 / 0.55);
}

.border-amber-50\/60 {
  border-color: rgb(255 251 235 / 0.6);
}

.border-amber-50\/65 {
  border-color: rgb(255 251 235 / 0.65);
}

.border-amber-50\/70 {
  border-color: rgb(255 251 235 / 0.7);
}

.border-amber-50\/75 {
  border-color: rgb(255 251 235 / 0.75);
}

.border-amber-50\/80 {
  border-color: rgb(255 251 235 / 0.8);
}

.border-amber-50\/85 {
  border-color: rgb(255 251 235 / 0.85);
}

.border-amber-50\/90 {
  border-color: rgb(255 251 235 / 0.9);
}

.border-amber-50\/95 {
  border-color: rgb(255 251 235 / 0.95);
}

.border-amber-500 {
  --tw-border-opacity: 1;
  border-color: rgb(245 158 11 / var(--tw-border-opacity, 1));
}

.border-amber-500\/0 {
  border-color: rgb(245 158 11 / 0);
}

.border-amber-500\/10 {
  border-color: rgb(245 158 11 / 0.1);
}

.border-amber-500\/100 {
  border-color: rgb(245 158 11 / 1);
}

.border-amber-500\/15 {
  border-color: rgb(245 158 11 / 0.15);
}

.border-amber-500\/20 {
  border-color: rgb(245 158 11 / 0.2);
}

.border-amber-500\/25 {
  border-color: rgb(245 158 11 / 0.25);
}

.border-amber-500\/30 {
  border-color: rgb(245 158 11 / 0.3);
}

.border-amber-500\/35 {
  border-color: rgb(245 158 11 / 0.35);
}

.border-amber-500\/40 {
  border-color: rgb(245 158 11 / 0.4);
}

.border-amber-500\/45 {
  border-color: rgb(245 158 11 / 0.45);
}

.border-amber-500\/5 {
  border-color: rgb(245 158 11 / 0.05);
}

.border-amber-500\/50 {
  border-color: rgb(245 158 11 / 0.5);
}

.border-amber-500\/55 {
  border-color: rgb(245 158 11 / 0.55);
}

.border-amber-500\/60 {
  border-color: rgb(245 158 11 / 0.6);
}

.border-amber-500\/65 {
  border-color: rgb(245 158 11 / 0.65);
}

.border-amber-500\/70 {
  border-color: rgb(245 158 11 / 0.7);
}

.border-amber-500\/75 {
  border-color: rgb(245 158 11 / 0.75);
}

.border-amber-500\/80 {
  border-color: rgb(245 158 11 / 0.8);
}

.border-amber-500\/85 {
  border-color: rgb(245 158 11 / 0.85);
}

.border-amber-500\/90 {
  border-color: rgb(245 158 11 / 0.9);
}

.border-amber-500\/95 {
  border-color: rgb(245 158 11 / 0.95);
}

.border-amber-600 {
  --tw-border-opacity: 1;
  border-color: rgb(217 119 6 / var(--tw-border-opacity, 1));
}

.border-amber-600\/0 {
  border-color: rgb(217 119 6 / 0);
}

.border-amber-600\/10 {
  border-color: rgb(217 119 6 / 0.1);
}

.border-amber-600\/100 {
  border-color: rgb(217 119 6 / 1);
}

.border-amber-600\/15 {
  border-color: rgb(217 119 6 / 0.15);
}

.border-amber-600\/20 {
  border-color: rgb(217 119 6 / 0.2);
}

.border-amber-600\/25 {
  border-color: rgb(217 119 6 / 0.25);
}

.border-amber-600\/30 {
  border-color: rgb(217 119 6 / 0.3);
}

.border-amber-600\/35 {
  border-color: rgb(217 119 6 / 0.35);
}

.border-amber-600\/40 {
  border-color: rgb(217 119 6 / 0.4);
}

.border-amber-600\/45 {
  border-color: rgb(217 119 6 / 0.45);
}

.border-amber-600\/5 {
  border-color: rgb(217 119 6 / 0.05);
}

.border-amber-600\/50 {
  border-color: rgb(217 119 6 / 0.5);
}

.border-amber-600\/55 {
  border-color: rgb(217 119 6 / 0.55);
}

.border-amber-600\/60 {
  border-color: rgb(217 119 6 / 0.6);
}

.border-amber-600\/65 {
  border-color: rgb(217 119 6 / 0.65);
}

.border-amber-600\/70 {
  border-color: rgb(217 119 6 / 0.7);
}

.border-amber-600\/75 {
  border-color: rgb(217 119 6 / 0.75);
}

.border-amber-600\/80 {
  border-color: rgb(217 119 6 / 0.8);
}

.border-amber-600\/85 {
  border-color: rgb(217 119 6 / 0.85);
}

.border-amber-600\/90 {
  border-color: rgb(217 119 6 / 0.9);
}

.border-amber-600\/95 {
  border-color: rgb(217 119 6 / 0.95);
}

.border-amber-700 {
  --tw-border-opacity: 1;
  border-color: rgb(180 83 9 / var(--tw-border-opacity, 1));
}

.border-amber-700\/0 {
  border-color: rgb(180 83 9 / 0);
}

.border-amber-700\/10 {
  border-color: rgb(180 83 9 / 0.1);
}

.border-amber-700\/100 {
  border-color: rgb(180 83 9 / 1);
}

.border-amber-700\/15 {
  border-color: rgb(180 83 9 / 0.15);
}

.border-amber-700\/20 {
  border-color: rgb(180 83 9 / 0.2);
}

.border-amber-700\/25 {
  border-color: rgb(180 83 9 / 0.25);
}

.border-amber-700\/30 {
  border-color: rgb(180 83 9 / 0.3);
}

.border-amber-700\/35 {
  border-color: rgb(180 83 9 / 0.35);
}

.border-amber-700\/40 {
  border-color: rgb(180 83 9 / 0.4);
}

.border-amber-700\/45 {
  border-color: rgb(180 83 9 / 0.45);
}

.border-amber-700\/5 {
  border-color: rgb(180 83 9 / 0.05);
}

.border-amber-700\/50 {
  border-color: rgb(180 83 9 / 0.5);
}

.border-amber-700\/55 {
  border-color: rgb(180 83 9 / 0.55);
}

.border-amber-700\/60 {
  border-color: rgb(180 83 9 / 0.6);
}

.border-amber-700\/65 {
  border-color: rgb(180 83 9 / 0.65);
}

.border-amber-700\/70 {
  border-color: rgb(180 83 9 / 0.7);
}

.border-amber-700\/75 {
  border-color: rgb(180 83 9 / 0.75);
}

.border-amber-700\/80 {
  border-color: rgb(180 83 9 / 0.8);
}

.border-amber-700\/85 {
  border-color: rgb(180 83 9 / 0.85);
}

.border-amber-700\/90 {
  border-color: rgb(180 83 9 / 0.9);
}

.border-amber-700\/95 {
  border-color: rgb(180 83 9 / 0.95);
}

.border-amber-800 {
  --tw-border-opacity: 1;
  border-color: rgb(146 64 14 / var(--tw-border-opacity, 1));
}

.border-amber-800\/0 {
  border-color: rgb(146 64 14 / 0);
}

.border-amber-800\/10 {
  border-color: rgb(146 64 14 / 0.1);
}

.border-amber-800\/100 {
  border-color: rgb(146 64 14 / 1);
}

.border-amber-800\/15 {
  border-color: rgb(146 64 14 / 0.15);
}

.border-amber-800\/20 {
  border-color: rgb(146 64 14 / 0.2);
}

.border-amber-800\/25 {
  border-color: rgb(146 64 14 / 0.25);
}

.border-amber-800\/30 {
  border-color: rgb(146 64 14 / 0.3);
}

.border-amber-800\/35 {
  border-color: rgb(146 64 14 / 0.35);
}

.border-amber-800\/40 {
  border-color: rgb(146 64 14 / 0.4);
}

.border-amber-800\/45 {
  border-color: rgb(146 64 14 / 0.45);
}

.border-amber-800\/5 {
  border-color: rgb(146 64 14 / 0.05);
}

.border-amber-800\/50 {
  border-color: rgb(146 64 14 / 0.5);
}

.border-amber-800\/55 {
  border-color: rgb(146 64 14 / 0.55);
}

.border-amber-800\/60 {
  border-color: rgb(146 64 14 / 0.6);
}

.border-amber-800\/65 {
  border-color: rgb(146 64 14 / 0.65);
}

.border-amber-800\/70 {
  border-color: rgb(146 64 14 / 0.7);
}

.border-amber-800\/75 {
  border-color: rgb(146 64 14 / 0.75);
}

.border-amber-800\/80 {
  border-color: rgb(146 64 14 / 0.8);
}

.border-amber-800\/85 {
  border-color: rgb(146 64 14 / 0.85);
}

.border-amber-800\/90 {
  border-color: rgb(146 64 14 / 0.9);
}

.border-amber-800\/95 {
  border-color: rgb(146 64 14 / 0.95);
}

.border-amber-900 {
  --tw-border-opacity: 1;
  border-color: rgb(120 53 15 / var(--tw-border-opacity, 1));
}

.border-amber-900\/0 {
  border-color: rgb(120 53 15 / 0);
}

.border-amber-900\/10 {
  border-color: rgb(120 53 15 / 0.1);
}

.border-amber-900\/100 {
  border-color: rgb(120 53 15 / 1);
}

.border-amber-900\/15 {
  border-color: rgb(120 53 15 / 0.15);
}

.border-amber-900\/20 {
  border-color: rgb(120 53 15 / 0.2);
}

.border-amber-900\/25 {
  border-color: rgb(120 53 15 / 0.25);
}

.border-amber-900\/30 {
  border-color: rgb(120 53 15 / 0.3);
}

.border-amber-900\/35 {
  border-color: rgb(120 53 15 / 0.35);
}

.border-amber-900\/40 {
  border-color: rgb(120 53 15 / 0.4);
}

.border-amber-900\/45 {
  border-color: rgb(120 53 15 / 0.45);
}

.border-amber-900\/5 {
  border-color: rgb(120 53 15 / 0.05);
}

.border-amber-900\/50 {
  border-color: rgb(120 53 15 / 0.5);
}

.border-amber-900\/55 {
  border-color: rgb(120 53 15 / 0.55);
}

.border-amber-900\/60 {
  border-color: rgb(120 53 15 / 0.6);
}

.border-amber-900\/65 {
  border-color: rgb(120 53 15 / 0.65);
}

.border-amber-900\/70 {
  border-color: rgb(120 53 15 / 0.7);
}

.border-amber-900\/75 {
  border-color: rgb(120 53 15 / 0.75);
}

.border-amber-900\/80 {
  border-color: rgb(120 53 15 / 0.8);
}

.border-amber-900\/85 {
  border-color: rgb(120 53 15 / 0.85);
}

.border-amber-900\/90 {
  border-color: rgb(120 53 15 / 0.9);
}

.border-amber-900\/95 {
  border-color: rgb(120 53 15 / 0.95);
}

.border-blue-100 {
  --tw-border-opacity: 1;
  border-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
}

.border-blue-100\/0 {
  border-color: rgb(219 234 254 / 0);
}

.border-blue-100\/10 {
  border-color: rgb(219 234 254 / 0.1);
}

.border-blue-100\/100 {
  border-color: rgb(219 234 254 / 1);
}

.border-blue-100\/15 {
  border-color: rgb(219 234 254 / 0.15);
}

.border-blue-100\/20 {
  border-color: rgb(219 234 254 / 0.2);
}

.border-blue-100\/25 {
  border-color: rgb(219 234 254 / 0.25);
}

.border-blue-100\/30 {
  border-color: rgb(219 234 254 / 0.3);
}

.border-blue-100\/35 {
  border-color: rgb(219 234 254 / 0.35);
}

.border-blue-100\/40 {
  border-color: rgb(219 234 254 / 0.4);
}

.border-blue-100\/45 {
  border-color: rgb(219 234 254 / 0.45);
}

.border-blue-100\/5 {
  border-color: rgb(219 234 254 / 0.05);
}

.border-blue-100\/50 {
  border-color: rgb(219 234 254 / 0.5);
}

.border-blue-100\/55 {
  border-color: rgb(219 234 254 / 0.55);
}

.border-blue-100\/60 {
  border-color: rgb(219 234 254 / 0.6);
}

.border-blue-100\/65 {
  border-color: rgb(219 234 254 / 0.65);
}

.border-blue-100\/70 {
  border-color: rgb(219 234 254 / 0.7);
}

.border-blue-100\/75 {
  border-color: rgb(219 234 254 / 0.75);
}

.border-blue-100\/80 {
  border-color: rgb(219 234 254 / 0.8);
}

.border-blue-100\/85 {
  border-color: rgb(219 234 254 / 0.85);
}

.border-blue-100\/90 {
  border-color: rgb(219 234 254 / 0.9);
}

.border-blue-100\/95 {
  border-color: rgb(219 234 254 / 0.95);
}

.border-blue-200 {
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}

.border-blue-200\/0 {
  border-color: rgb(191 219 254 / 0);
}

.border-blue-200\/10 {
  border-color: rgb(191 219 254 / 0.1);
}

.border-blue-200\/100 {
  border-color: rgb(191 219 254 / 1);
}

.border-blue-200\/15 {
  border-color: rgb(191 219 254 / 0.15);
}

.border-blue-200\/20 {
  border-color: rgb(191 219 254 / 0.2);
}

.border-blue-200\/25 {
  border-color: rgb(191 219 254 / 0.25);
}

.border-blue-200\/30 {
  border-color: rgb(191 219 254 / 0.3);
}

.border-blue-200\/35 {
  border-color: rgb(191 219 254 / 0.35);
}

.border-blue-200\/40 {
  border-color: rgb(191 219 254 / 0.4);
}

.border-blue-200\/45 {
  border-color: rgb(191 219 254 / 0.45);
}

.border-blue-200\/5 {
  border-color: rgb(191 219 254 / 0.05);
}

.border-blue-200\/50 {
  border-color: rgb(191 219 254 / 0.5);
}

.border-blue-200\/55 {
  border-color: rgb(191 219 254 / 0.55);
}

.border-blue-200\/60 {
  border-color: rgb(191 219 254 / 0.6);
}

.border-blue-200\/65 {
  border-color: rgb(191 219 254 / 0.65);
}

.border-blue-200\/70 {
  border-color: rgb(191 219 254 / 0.7);
}

.border-blue-200\/75 {
  border-color: rgb(191 219 254 / 0.75);
}

.border-blue-200\/80 {
  border-color: rgb(191 219 254 / 0.8);
}

.border-blue-200\/85 {
  border-color: rgb(191 219 254 / 0.85);
}

.border-blue-200\/90 {
  border-color: rgb(191 219 254 / 0.9);
}

.border-blue-200\/95 {
  border-color: rgb(191 219 254 / 0.95);
}

.border-blue-300 {
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}

.border-blue-300\/0 {
  border-color: rgb(147 197 253 / 0);
}

.border-blue-300\/10 {
  border-color: rgb(147 197 253 / 0.1);
}

.border-blue-300\/100 {
  border-color: rgb(147 197 253 / 1);
}

.border-blue-300\/15 {
  border-color: rgb(147 197 253 / 0.15);
}

.border-blue-300\/20 {
  border-color: rgb(147 197 253 / 0.2);
}

.border-blue-300\/25 {
  border-color: rgb(147 197 253 / 0.25);
}

.border-blue-300\/30 {
  border-color: rgb(147 197 253 / 0.3);
}

.border-blue-300\/35 {
  border-color: rgb(147 197 253 / 0.35);
}

.border-blue-300\/40 {
  border-color: rgb(147 197 253 / 0.4);
}

.border-blue-300\/45 {
  border-color: rgb(147 197 253 / 0.45);
}

.border-blue-300\/5 {
  border-color: rgb(147 197 253 / 0.05);
}

.border-blue-300\/50 {
  border-color: rgb(147 197 253 / 0.5);
}

.border-blue-300\/55 {
  border-color: rgb(147 197 253 / 0.55);
}

.border-blue-300\/60 {
  border-color: rgb(147 197 253 / 0.6);
}

.border-blue-300\/65 {
  border-color: rgb(147 197 253 / 0.65);
}

.border-blue-300\/70 {
  border-color: rgb(147 197 253 / 0.7);
}

.border-blue-300\/75 {
  border-color: rgb(147 197 253 / 0.75);
}

.border-blue-300\/80 {
  border-color: rgb(147 197 253 / 0.8);
}

.border-blue-300\/85 {
  border-color: rgb(147 197 253 / 0.85);
}

.border-blue-300\/90 {
  border-color: rgb(147 197 253 / 0.9);
}

.border-blue-300\/95 {
  border-color: rgb(147 197 253 / 0.95);
}

.border-blue-400 {
  --tw-border-opacity: 1;
  border-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
}

.border-blue-400\/0 {
  border-color: rgb(96 165 250 / 0);
}

.border-blue-400\/10 {
  border-color: rgb(96 165 250 / 0.1);
}

.border-blue-400\/100 {
  border-color: rgb(96 165 250 / 1);
}

.border-blue-400\/15 {
  border-color: rgb(96 165 250 / 0.15);
}

.border-blue-400\/20 {
  border-color: rgb(96 165 250 / 0.2);
}

.border-blue-400\/25 {
  border-color: rgb(96 165 250 / 0.25);
}

.border-blue-400\/30 {
  border-color: rgb(96 165 250 / 0.3);
}

.border-blue-400\/35 {
  border-color: rgb(96 165 250 / 0.35);
}

.border-blue-400\/40 {
  border-color: rgb(96 165 250 / 0.4);
}

.border-blue-400\/45 {
  border-color: rgb(96 165 250 / 0.45);
}

.border-blue-400\/5 {
  border-color: rgb(96 165 250 / 0.05);
}

.border-blue-400\/50 {
  border-color: rgb(96 165 250 / 0.5);
}

.border-blue-400\/55 {
  border-color: rgb(96 165 250 / 0.55);
}

.border-blue-400\/60 {
  border-color: rgb(96 165 250 / 0.6);
}

.border-blue-400\/65 {
  border-color: rgb(96 165 250 / 0.65);
}

.border-blue-400\/70 {
  border-color: rgb(96 165 250 / 0.7);
}

.border-blue-400\/75 {
  border-color: rgb(96 165 250 / 0.75);
}

.border-blue-400\/80 {
  border-color: rgb(96 165 250 / 0.8);
}

.border-blue-400\/85 {
  border-color: rgb(96 165 250 / 0.85);
}

.border-blue-400\/90 {
  border-color: rgb(96 165 250 / 0.9);
}

.border-blue-400\/95 {
  border-color: rgb(96 165 250 / 0.95);
}

.border-blue-50 {
  --tw-border-opacity: 1;
  border-color: rgb(239 246 255 / var(--tw-border-opacity, 1));
}

.border-blue-50\/0 {
  border-color: rgb(239 246 255 / 0);
}

.border-blue-50\/10 {
  border-color: rgb(239 246 255 / 0.1);
}

.border-blue-50\/100 {
  border-color: rgb(239 246 255 / 1);
}

.border-blue-50\/15 {
  border-color: rgb(239 246 255 / 0.15);
}

.border-blue-50\/20 {
  border-color: rgb(239 246 255 / 0.2);
}

.border-blue-50\/25 {
  border-color: rgb(239 246 255 / 0.25);
}

.border-blue-50\/30 {
  border-color: rgb(239 246 255 / 0.3);
}

.border-blue-50\/35 {
  border-color: rgb(239 246 255 / 0.35);
}

.border-blue-50\/40 {
  border-color: rgb(239 246 255 / 0.4);
}

.border-blue-50\/45 {
  border-color: rgb(239 246 255 / 0.45);
}

.border-blue-50\/5 {
  border-color: rgb(239 246 255 / 0.05);
}

.border-blue-50\/50 {
  border-color: rgb(239 246 255 / 0.5);
}

.border-blue-50\/55 {
  border-color: rgb(239 246 255 / 0.55);
}

.border-blue-50\/60 {
  border-color: rgb(239 246 255 / 0.6);
}

.border-blue-50\/65 {
  border-color: rgb(239 246 255 / 0.65);
}

.border-blue-50\/70 {
  border-color: rgb(239 246 255 / 0.7);
}

.border-blue-50\/75 {
  border-color: rgb(239 246 255 / 0.75);
}

.border-blue-50\/80 {
  border-color: rgb(239 246 255 / 0.8);
}

.border-blue-50\/85 {
  border-color: rgb(239 246 255 / 0.85);
}

.border-blue-50\/90 {
  border-color: rgb(239 246 255 / 0.9);
}

.border-blue-50\/95 {
  border-color: rgb(239 246 255 / 0.95);
}

.border-blue-500 {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}

.border-blue-500\/0 {
  border-color: rgb(59 130 246 / 0);
}

.border-blue-500\/10 {
  border-color: rgb(59 130 246 / 0.1);
}

.border-blue-500\/100 {
  border-color: rgb(59 130 246 / 1);
}

.border-blue-500\/15 {
  border-color: rgb(59 130 246 / 0.15);
}

.border-blue-500\/20 {
  border-color: rgb(59 130 246 / 0.2);
}

.border-blue-500\/25 {
  border-color: rgb(59 130 246 / 0.25);
}

.border-blue-500\/30 {
  border-color: rgb(59 130 246 / 0.3);
}

.border-blue-500\/35 {
  border-color: rgb(59 130 246 / 0.35);
}

.border-blue-500\/40 {
  border-color: rgb(59 130 246 / 0.4);
}

.border-blue-500\/45 {
  border-color: rgb(59 130 246 / 0.45);
}

.border-blue-500\/5 {
  border-color: rgb(59 130 246 / 0.05);
}

.border-blue-500\/50 {
  border-color: rgb(59 130 246 / 0.5);
}

.border-blue-500\/55 {
  border-color: rgb(59 130 246 / 0.55);
}

.border-blue-500\/60 {
  border-color: rgb(59 130 246 / 0.6);
}

.border-blue-500\/65 {
  border-color: rgb(59 130 246 / 0.65);
}

.border-blue-500\/70 {
  border-color: rgb(59 130 246 / 0.7);
}

.border-blue-500\/75 {
  border-color: rgb(59 130 246 / 0.75);
}

.border-blue-500\/80 {
  border-color: rgb(59 130 246 / 0.8);
}

.border-blue-500\/85 {
  border-color: rgb(59 130 246 / 0.85);
}

.border-blue-500\/90 {
  border-color: rgb(59 130 246 / 0.9);
}

.border-blue-500\/95 {
  border-color: rgb(59 130 246 / 0.95);
}

.border-blue-600 {
  --tw-border-opacity: 1;
  border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}

.border-blue-600\/0 {
  border-color: rgb(37 99 235 / 0);
}

.border-blue-600\/10 {
  border-color: rgb(37 99 235 / 0.1);
}

.border-blue-600\/100 {
  border-color: rgb(37 99 235 / 1);
}

.border-blue-600\/15 {
  border-color: rgb(37 99 235 / 0.15);
}

.border-blue-600\/20 {
  border-color: rgb(37 99 235 / 0.2);
}

.border-blue-600\/25 {
  border-color: rgb(37 99 235 / 0.25);
}

.border-blue-600\/30 {
  border-color: rgb(37 99 235 / 0.3);
}

.border-blue-600\/35 {
  border-color: rgb(37 99 235 / 0.35);
}

.border-blue-600\/40 {
  border-color: rgb(37 99 235 / 0.4);
}

.border-blue-600\/45 {
  border-color: rgb(37 99 235 / 0.45);
}

.border-blue-600\/5 {
  border-color: rgb(37 99 235 / 0.05);
}

.border-blue-600\/50 {
  border-color: rgb(37 99 235 / 0.5);
}

.border-blue-600\/55 {
  border-color: rgb(37 99 235 / 0.55);
}

.border-blue-600\/60 {
  border-color: rgb(37 99 235 / 0.6);
}

.border-blue-600\/65 {
  border-color: rgb(37 99 235 / 0.65);
}

.border-blue-600\/70 {
  border-color: rgb(37 99 235 / 0.7);
}

.border-blue-600\/75 {
  border-color: rgb(37 99 235 / 0.75);
}

.border-blue-600\/80 {
  border-color: rgb(37 99 235 / 0.8);
}

.border-blue-600\/85 {
  border-color: rgb(37 99 235 / 0.85);
}

.border-blue-600\/90 {
  border-color: rgb(37 99 235 / 0.9);
}

.border-blue-600\/95 {
  border-color: rgb(37 99 235 / 0.95);
}

.border-blue-700 {
  --tw-border-opacity: 1;
  border-color: rgb(29 78 216 / var(--tw-border-opacity, 1));
}

.border-blue-700\/0 {
  border-color: rgb(29 78 216 / 0);
}

.border-blue-700\/10 {
  border-color: rgb(29 78 216 / 0.1);
}

.border-blue-700\/100 {
  border-color: rgb(29 78 216 / 1);
}

.border-blue-700\/15 {
  border-color: rgb(29 78 216 / 0.15);
}

.border-blue-700\/20 {
  border-color: rgb(29 78 216 / 0.2);
}

.border-blue-700\/25 {
  border-color: rgb(29 78 216 / 0.25);
}

.border-blue-700\/30 {
  border-color: rgb(29 78 216 / 0.3);
}

.border-blue-700\/35 {
  border-color: rgb(29 78 216 / 0.35);
}

.border-blue-700\/40 {
  border-color: rgb(29 78 216 / 0.4);
}

.border-blue-700\/45 {
  border-color: rgb(29 78 216 / 0.45);
}

.border-blue-700\/5 {
  border-color: rgb(29 78 216 / 0.05);
}

.border-blue-700\/50 {
  border-color: rgb(29 78 216 / 0.5);
}

.border-blue-700\/55 {
  border-color: rgb(29 78 216 / 0.55);
}

.border-blue-700\/60 {
  border-color: rgb(29 78 216 / 0.6);
}

.border-blue-700\/65 {
  border-color: rgb(29 78 216 / 0.65);
}

.border-blue-700\/70 {
  border-color: rgb(29 78 216 / 0.7);
}

.border-blue-700\/75 {
  border-color: rgb(29 78 216 / 0.75);
}

.border-blue-700\/80 {
  border-color: rgb(29 78 216 / 0.8);
}

.border-blue-700\/85 {
  border-color: rgb(29 78 216 / 0.85);
}

.border-blue-700\/90 {
  border-color: rgb(29 78 216 / 0.9);
}

.border-blue-700\/95 {
  border-color: rgb(29 78 216 / 0.95);
}

.border-blue-800 {
  --tw-border-opacity: 1;
  border-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
}

.border-blue-800\/0 {
  border-color: rgb(30 64 175 / 0);
}

.border-blue-800\/10 {
  border-color: rgb(30 64 175 / 0.1);
}

.border-blue-800\/100 {
  border-color: rgb(30 64 175 / 1);
}

.border-blue-800\/15 {
  border-color: rgb(30 64 175 / 0.15);
}

.border-blue-800\/20 {
  border-color: rgb(30 64 175 / 0.2);
}

.border-blue-800\/25 {
  border-color: rgb(30 64 175 / 0.25);
}

.border-blue-800\/30 {
  border-color: rgb(30 64 175 / 0.3);
}

.border-blue-800\/35 {
  border-color: rgb(30 64 175 / 0.35);
}

.border-blue-800\/40 {
  border-color: rgb(30 64 175 / 0.4);
}

.border-blue-800\/45 {
  border-color: rgb(30 64 175 / 0.45);
}

.border-blue-800\/5 {
  border-color: rgb(30 64 175 / 0.05);
}

.border-blue-800\/50 {
  border-color: rgb(30 64 175 / 0.5);
}

.border-blue-800\/55 {
  border-color: rgb(30 64 175 / 0.55);
}

.border-blue-800\/60 {
  border-color: rgb(30 64 175 / 0.6);
}

.border-blue-800\/65 {
  border-color: rgb(30 64 175 / 0.65);
}

.border-blue-800\/70 {
  border-color: rgb(30 64 175 / 0.7);
}

.border-blue-800\/75 {
  border-color: rgb(30 64 175 / 0.75);
}

.border-blue-800\/80 {
  border-color: rgb(30 64 175 / 0.8);
}

.border-blue-800\/85 {
  border-color: rgb(30 64 175 / 0.85);
}

.border-blue-800\/90 {
  border-color: rgb(30 64 175 / 0.9);
}

.border-blue-800\/95 {
  border-color: rgb(30 64 175 / 0.95);
}

.border-blue-900 {
  --tw-border-opacity: 1;
  border-color: rgb(30 58 138 / var(--tw-border-opacity, 1));
}

.border-blue-900\/0 {
  border-color: rgb(30 58 138 / 0);
}

.border-blue-900\/10 {
  border-color: rgb(30 58 138 / 0.1);
}

.border-blue-900\/100 {
  border-color: rgb(30 58 138 / 1);
}

.border-blue-900\/15 {
  border-color: rgb(30 58 138 / 0.15);
}

.border-blue-900\/20 {
  border-color: rgb(30 58 138 / 0.2);
}

.border-blue-900\/25 {
  border-color: rgb(30 58 138 / 0.25);
}

.border-blue-900\/30 {
  border-color: rgb(30 58 138 / 0.3);
}

.border-blue-900\/35 {
  border-color: rgb(30 58 138 / 0.35);
}

.border-blue-900\/40 {
  border-color: rgb(30 58 138 / 0.4);
}

.border-blue-900\/45 {
  border-color: rgb(30 58 138 / 0.45);
}

.border-blue-900\/5 {
  border-color: rgb(30 58 138 / 0.05);
}

.border-blue-900\/50 {
  border-color: rgb(30 58 138 / 0.5);
}

.border-blue-900\/55 {
  border-color: rgb(30 58 138 / 0.55);
}

.border-blue-900\/60 {
  border-color: rgb(30 58 138 / 0.6);
}

.border-blue-900\/65 {
  border-color: rgb(30 58 138 / 0.65);
}

.border-blue-900\/70 {
  border-color: rgb(30 58 138 / 0.7);
}

.border-blue-900\/75 {
  border-color: rgb(30 58 138 / 0.75);
}

.border-blue-900\/80 {
  border-color: rgb(30 58 138 / 0.8);
}

.border-blue-900\/85 {
  border-color: rgb(30 58 138 / 0.85);
}

.border-blue-900\/90 {
  border-color: rgb(30 58 138 / 0.9);
}

.border-blue-900\/95 {
  border-color: rgb(30 58 138 / 0.95);
}

.border-emerald-100 {
  --tw-border-opacity: 1;
  border-color: rgb(209 250 229 / var(--tw-border-opacity, 1));
}

.border-emerald-100\/0 {
  border-color: rgb(209 250 229 / 0);
}

.border-emerald-100\/10 {
  border-color: rgb(209 250 229 / 0.1);
}

.border-emerald-100\/100 {
  border-color: rgb(209 250 229 / 1);
}

.border-emerald-100\/15 {
  border-color: rgb(209 250 229 / 0.15);
}

.border-emerald-100\/20 {
  border-color: rgb(209 250 229 / 0.2);
}

.border-emerald-100\/25 {
  border-color: rgb(209 250 229 / 0.25);
}

.border-emerald-100\/30 {
  border-color: rgb(209 250 229 / 0.3);
}

.border-emerald-100\/35 {
  border-color: rgb(209 250 229 / 0.35);
}

.border-emerald-100\/40 {
  border-color: rgb(209 250 229 / 0.4);
}

.border-emerald-100\/45 {
  border-color: rgb(209 250 229 / 0.45);
}

.border-emerald-100\/5 {
  border-color: rgb(209 250 229 / 0.05);
}

.border-emerald-100\/50 {
  border-color: rgb(209 250 229 / 0.5);
}

.border-emerald-100\/55 {
  border-color: rgb(209 250 229 / 0.55);
}

.border-emerald-100\/60 {
  border-color: rgb(209 250 229 / 0.6);
}

.border-emerald-100\/65 {
  border-color: rgb(209 250 229 / 0.65);
}

.border-emerald-100\/70 {
  border-color: rgb(209 250 229 / 0.7);
}

.border-emerald-100\/75 {
  border-color: rgb(209 250 229 / 0.75);
}

.border-emerald-100\/80 {
  border-color: rgb(209 250 229 / 0.8);
}

.border-emerald-100\/85 {
  border-color: rgb(209 250 229 / 0.85);
}

.border-emerald-100\/90 {
  border-color: rgb(209 250 229 / 0.9);
}

.border-emerald-100\/95 {
  border-color: rgb(209 250 229 / 0.95);
}

.border-emerald-200 {
  --tw-border-opacity: 1;
  border-color: rgb(167 243 208 / var(--tw-border-opacity, 1));
}

.border-emerald-200\/0 {
  border-color: rgb(167 243 208 / 0);
}

.border-emerald-200\/10 {
  border-color: rgb(167 243 208 / 0.1);
}

.border-emerald-200\/100 {
  border-color: rgb(167 243 208 / 1);
}

.border-emerald-200\/15 {
  border-color: rgb(167 243 208 / 0.15);
}

.border-emerald-200\/20 {
  border-color: rgb(167 243 208 / 0.2);
}

.border-emerald-200\/25 {
  border-color: rgb(167 243 208 / 0.25);
}

.border-emerald-200\/30 {
  border-color: rgb(167 243 208 / 0.3);
}

.border-emerald-200\/35 {
  border-color: rgb(167 243 208 / 0.35);
}

.border-emerald-200\/40 {
  border-color: rgb(167 243 208 / 0.4);
}

.border-emerald-200\/45 {
  border-color: rgb(167 243 208 / 0.45);
}

.border-emerald-200\/5 {
  border-color: rgb(167 243 208 / 0.05);
}

.border-emerald-200\/50 {
  border-color: rgb(167 243 208 / 0.5);
}

.border-emerald-200\/55 {
  border-color: rgb(167 243 208 / 0.55);
}

.border-emerald-200\/60 {
  border-color: rgb(167 243 208 / 0.6);
}

.border-emerald-200\/65 {
  border-color: rgb(167 243 208 / 0.65);
}

.border-emerald-200\/70 {
  border-color: rgb(167 243 208 / 0.7);
}

.border-emerald-200\/75 {
  border-color: rgb(167 243 208 / 0.75);
}

.border-emerald-200\/80 {
  border-color: rgb(167 243 208 / 0.8);
}

.border-emerald-200\/85 {
  border-color: rgb(167 243 208 / 0.85);
}

.border-emerald-200\/90 {
  border-color: rgb(167 243 208 / 0.9);
}

.border-emerald-200\/95 {
  border-color: rgb(167 243 208 / 0.95);
}

.border-emerald-300 {
  --tw-border-opacity: 1;
  border-color: rgb(110 231 183 / var(--tw-border-opacity, 1));
}

.border-emerald-300\/0 {
  border-color: rgb(110 231 183 / 0);
}

.border-emerald-300\/10 {
  border-color: rgb(110 231 183 / 0.1);
}

.border-emerald-300\/100 {
  border-color: rgb(110 231 183 / 1);
}

.border-emerald-300\/15 {
  border-color: rgb(110 231 183 / 0.15);
}

.border-emerald-300\/20 {
  border-color: rgb(110 231 183 / 0.2);
}

.border-emerald-300\/25 {
  border-color: rgb(110 231 183 / 0.25);
}

.border-emerald-300\/30 {
  border-color: rgb(110 231 183 / 0.3);
}

.border-emerald-300\/35 {
  border-color: rgb(110 231 183 / 0.35);
}

.border-emerald-300\/40 {
  border-color: rgb(110 231 183 / 0.4);
}

.border-emerald-300\/45 {
  border-color: rgb(110 231 183 / 0.45);
}

.border-emerald-300\/5 {
  border-color: rgb(110 231 183 / 0.05);
}

.border-emerald-300\/50 {
  border-color: rgb(110 231 183 / 0.5);
}

.border-emerald-300\/55 {
  border-color: rgb(110 231 183 / 0.55);
}

.border-emerald-300\/60 {
  border-color: rgb(110 231 183 / 0.6);
}

.border-emerald-300\/65 {
  border-color: rgb(110 231 183 / 0.65);
}

.border-emerald-300\/70 {
  border-color: rgb(110 231 183 / 0.7);
}

.border-emerald-300\/75 {
  border-color: rgb(110 231 183 / 0.75);
}

.border-emerald-300\/80 {
  border-color: rgb(110 231 183 / 0.8);
}

.border-emerald-300\/85 {
  border-color: rgb(110 231 183 / 0.85);
}

.border-emerald-300\/90 {
  border-color: rgb(110 231 183 / 0.9);
}

.border-emerald-300\/95 {
  border-color: rgb(110 231 183 / 0.95);
}

.border-emerald-400 {
  --tw-border-opacity: 1;
  border-color: rgb(52 211 153 / var(--tw-border-opacity, 1));
}

.border-emerald-400\/0 {
  border-color: rgb(52 211 153 / 0);
}

.border-emerald-400\/10 {
  border-color: rgb(52 211 153 / 0.1);
}

.border-emerald-400\/100 {
  border-color: rgb(52 211 153 / 1);
}

.border-emerald-400\/15 {
  border-color: rgb(52 211 153 / 0.15);
}

.border-emerald-400\/20 {
  border-color: rgb(52 211 153 / 0.2);
}

.border-emerald-400\/25 {
  border-color: rgb(52 211 153 / 0.25);
}

.border-emerald-400\/30 {
  border-color: rgb(52 211 153 / 0.3);
}

.border-emerald-400\/35 {
  border-color: rgb(52 211 153 / 0.35);
}

.border-emerald-400\/40 {
  border-color: rgb(52 211 153 / 0.4);
}

.border-emerald-400\/45 {
  border-color: rgb(52 211 153 / 0.45);
}

.border-emerald-400\/5 {
  border-color: rgb(52 211 153 / 0.05);
}

.border-emerald-400\/50 {
  border-color: rgb(52 211 153 / 0.5);
}

.border-emerald-400\/55 {
  border-color: rgb(52 211 153 / 0.55);
}

.border-emerald-400\/60 {
  border-color: rgb(52 211 153 / 0.6);
}

.border-emerald-400\/65 {
  border-color: rgb(52 211 153 / 0.65);
}

.border-emerald-400\/70 {
  border-color: rgb(52 211 153 / 0.7);
}

.border-emerald-400\/75 {
  border-color: rgb(52 211 153 / 0.75);
}

.border-emerald-400\/80 {
  border-color: rgb(52 211 153 / 0.8);
}

.border-emerald-400\/85 {
  border-color: rgb(52 211 153 / 0.85);
}

.border-emerald-400\/90 {
  border-color: rgb(52 211 153 / 0.9);
}

.border-emerald-400\/95 {
  border-color: rgb(52 211 153 / 0.95);
}

.border-emerald-50 {
  --tw-border-opacity: 1;
  border-color: rgb(236 253 245 / var(--tw-border-opacity, 1));
}

.border-emerald-50\/0 {
  border-color: rgb(236 253 245 / 0);
}

.border-emerald-50\/10 {
  border-color: rgb(236 253 245 / 0.1);
}

.border-emerald-50\/100 {
  border-color: rgb(236 253 245 / 1);
}

.border-emerald-50\/15 {
  border-color: rgb(236 253 245 / 0.15);
}

.border-emerald-50\/20 {
  border-color: rgb(236 253 245 / 0.2);
}

.border-emerald-50\/25 {
  border-color: rgb(236 253 245 / 0.25);
}

.border-emerald-50\/30 {
  border-color: rgb(236 253 245 / 0.3);
}

.border-emerald-50\/35 {
  border-color: rgb(236 253 245 / 0.35);
}

.border-emerald-50\/40 {
  border-color: rgb(236 253 245 / 0.4);
}

.border-emerald-50\/45 {
  border-color: rgb(236 253 245 / 0.45);
}

.border-emerald-50\/5 {
  border-color: rgb(236 253 245 / 0.05);
}

.border-emerald-50\/50 {
  border-color: rgb(236 253 245 / 0.5);
}

.border-emerald-50\/55 {
  border-color: rgb(236 253 245 / 0.55);
}

.border-emerald-50\/60 {
  border-color: rgb(236 253 245 / 0.6);
}

.border-emerald-50\/65 {
  border-color: rgb(236 253 245 / 0.65);
}

.border-emerald-50\/70 {
  border-color: rgb(236 253 245 / 0.7);
}

.border-emerald-50\/75 {
  border-color: rgb(236 253 245 / 0.75);
}

.border-emerald-50\/80 {
  border-color: rgb(236 253 245 / 0.8);
}

.border-emerald-50\/85 {
  border-color: rgb(236 253 245 / 0.85);
}

.border-emerald-50\/90 {
  border-color: rgb(236 253 245 / 0.9);
}

.border-emerald-50\/95 {
  border-color: rgb(236 253 245 / 0.95);
}

.border-emerald-500 {
  --tw-border-opacity: 1;
  border-color: rgb(16 185 129 / var(--tw-border-opacity, 1));
}

.border-emerald-500\/0 {
  border-color: rgb(16 185 129 / 0);
}

.border-emerald-500\/10 {
  border-color: rgb(16 185 129 / 0.1);
}

.border-emerald-500\/100 {
  border-color: rgb(16 185 129 / 1);
}

.border-emerald-500\/15 {
  border-color: rgb(16 185 129 / 0.15);
}

.border-emerald-500\/20 {
  border-color: rgb(16 185 129 / 0.2);
}

.border-emerald-500\/25 {
  border-color: rgb(16 185 129 / 0.25);
}

.border-emerald-500\/30 {
  border-color: rgb(16 185 129 / 0.3);
}

.border-emerald-500\/35 {
  border-color: rgb(16 185 129 / 0.35);
}

.border-emerald-500\/40 {
  border-color: rgb(16 185 129 / 0.4);
}

.border-emerald-500\/45 {
  border-color: rgb(16 185 129 / 0.45);
}

.border-emerald-500\/5 {
  border-color: rgb(16 185 129 / 0.05);
}

.border-emerald-500\/50 {
  border-color: rgb(16 185 129 / 0.5);
}

.border-emerald-500\/55 {
  border-color: rgb(16 185 129 / 0.55);
}

.border-emerald-500\/60 {
  border-color: rgb(16 185 129 / 0.6);
}

.border-emerald-500\/65 {
  border-color: rgb(16 185 129 / 0.65);
}

.border-emerald-500\/70 {
  border-color: rgb(16 185 129 / 0.7);
}

.border-emerald-500\/75 {
  border-color: rgb(16 185 129 / 0.75);
}

.border-emerald-500\/80 {
  border-color: rgb(16 185 129 / 0.8);
}

.border-emerald-500\/85 {
  border-color: rgb(16 185 129 / 0.85);
}

.border-emerald-500\/90 {
  border-color: rgb(16 185 129 / 0.9);
}

.border-emerald-500\/95 {
  border-color: rgb(16 185 129 / 0.95);
}

.border-emerald-600 {
  --tw-border-opacity: 1;
  border-color: rgb(5 150 105 / var(--tw-border-opacity, 1));
}

.border-emerald-600\/0 {
  border-color: rgb(5 150 105 / 0);
}

.border-emerald-600\/10 {
  border-color: rgb(5 150 105 / 0.1);
}

.border-emerald-600\/100 {
  border-color: rgb(5 150 105 / 1);
}

.border-emerald-600\/15 {
  border-color: rgb(5 150 105 / 0.15);
}

.border-emerald-600\/20 {
  border-color: rgb(5 150 105 / 0.2);
}

.border-emerald-600\/25 {
  border-color: rgb(5 150 105 / 0.25);
}

.border-emerald-600\/30 {
  border-color: rgb(5 150 105 / 0.3);
}

.border-emerald-600\/35 {
  border-color: rgb(5 150 105 / 0.35);
}

.border-emerald-600\/40 {
  border-color: rgb(5 150 105 / 0.4);
}

.border-emerald-600\/45 {
  border-color: rgb(5 150 105 / 0.45);
}

.border-emerald-600\/5 {
  border-color: rgb(5 150 105 / 0.05);
}

.border-emerald-600\/50 {
  border-color: rgb(5 150 105 / 0.5);
}

.border-emerald-600\/55 {
  border-color: rgb(5 150 105 / 0.55);
}

.border-emerald-600\/60 {
  border-color: rgb(5 150 105 / 0.6);
}

.border-emerald-600\/65 {
  border-color: rgb(5 150 105 / 0.65);
}

.border-emerald-600\/70 {
  border-color: rgb(5 150 105 / 0.7);
}

.border-emerald-600\/75 {
  border-color: rgb(5 150 105 / 0.75);
}

.border-emerald-600\/80 {
  border-color: rgb(5 150 105 / 0.8);
}

.border-emerald-600\/85 {
  border-color: rgb(5 150 105 / 0.85);
}

.border-emerald-600\/90 {
  border-color: rgb(5 150 105 / 0.9);
}

.border-emerald-600\/95 {
  border-color: rgb(5 150 105 / 0.95);
}

.border-emerald-700 {
  --tw-border-opacity: 1;
  border-color: rgb(4 120 87 / var(--tw-border-opacity, 1));
}

.border-emerald-700\/0 {
  border-color: rgb(4 120 87 / 0);
}

.border-emerald-700\/10 {
  border-color: rgb(4 120 87 / 0.1);
}

.border-emerald-700\/100 {
  border-color: rgb(4 120 87 / 1);
}

.border-emerald-700\/15 {
  border-color: rgb(4 120 87 / 0.15);
}

.border-emerald-700\/20 {
  border-color: rgb(4 120 87 / 0.2);
}

.border-emerald-700\/25 {
  border-color: rgb(4 120 87 / 0.25);
}

.border-emerald-700\/30 {
  border-color: rgb(4 120 87 / 0.3);
}

.border-emerald-700\/35 {
  border-color: rgb(4 120 87 / 0.35);
}

.border-emerald-700\/40 {
  border-color: rgb(4 120 87 / 0.4);
}

.border-emerald-700\/45 {
  border-color: rgb(4 120 87 / 0.45);
}

.border-emerald-700\/5 {
  border-color: rgb(4 120 87 / 0.05);
}

.border-emerald-700\/50 {
  border-color: rgb(4 120 87 / 0.5);
}

.border-emerald-700\/55 {
  border-color: rgb(4 120 87 / 0.55);
}

.border-emerald-700\/60 {
  border-color: rgb(4 120 87 / 0.6);
}

.border-emerald-700\/65 {
  border-color: rgb(4 120 87 / 0.65);
}

.border-emerald-700\/70 {
  border-color: rgb(4 120 87 / 0.7);
}

.border-emerald-700\/75 {
  border-color: rgb(4 120 87 / 0.75);
}

.border-emerald-700\/80 {
  border-color: rgb(4 120 87 / 0.8);
}

.border-emerald-700\/85 {
  border-color: rgb(4 120 87 / 0.85);
}

.border-emerald-700\/90 {
  border-color: rgb(4 120 87 / 0.9);
}

.border-emerald-700\/95 {
  border-color: rgb(4 120 87 / 0.95);
}

.border-emerald-800 {
  --tw-border-opacity: 1;
  border-color: rgb(6 95 70 / var(--tw-border-opacity, 1));
}

.border-emerald-800\/0 {
  border-color: rgb(6 95 70 / 0);
}

.border-emerald-800\/10 {
  border-color: rgb(6 95 70 / 0.1);
}

.border-emerald-800\/100 {
  border-color: rgb(6 95 70 / 1);
}

.border-emerald-800\/15 {
  border-color: rgb(6 95 70 / 0.15);
}

.border-emerald-800\/20 {
  border-color: rgb(6 95 70 / 0.2);
}

.border-emerald-800\/25 {
  border-color: rgb(6 95 70 / 0.25);
}

.border-emerald-800\/30 {
  border-color: rgb(6 95 70 / 0.3);
}

.border-emerald-800\/35 {
  border-color: rgb(6 95 70 / 0.35);
}

.border-emerald-800\/40 {
  border-color: rgb(6 95 70 / 0.4);
}

.border-emerald-800\/45 {
  border-color: rgb(6 95 70 / 0.45);
}

.border-emerald-800\/5 {
  border-color: rgb(6 95 70 / 0.05);
}

.border-emerald-800\/50 {
  border-color: rgb(6 95 70 / 0.5);
}

.border-emerald-800\/55 {
  border-color: rgb(6 95 70 / 0.55);
}

.border-emerald-800\/60 {
  border-color: rgb(6 95 70 / 0.6);
}

.border-emerald-800\/65 {
  border-color: rgb(6 95 70 / 0.65);
}

.border-emerald-800\/70 {
  border-color: rgb(6 95 70 / 0.7);
}

.border-emerald-800\/75 {
  border-color: rgb(6 95 70 / 0.75);
}

.border-emerald-800\/80 {
  border-color: rgb(6 95 70 / 0.8);
}

.border-emerald-800\/85 {
  border-color: rgb(6 95 70 / 0.85);
}

.border-emerald-800\/90 {
  border-color: rgb(6 95 70 / 0.9);
}

.border-emerald-800\/95 {
  border-color: rgb(6 95 70 / 0.95);
}

.border-emerald-900 {
  --tw-border-opacity: 1;
  border-color: rgb(6 78 59 / var(--tw-border-opacity, 1));
}

.border-emerald-900\/0 {
  border-color: rgb(6 78 59 / 0);
}

.border-emerald-900\/10 {
  border-color: rgb(6 78 59 / 0.1);
}

.border-emerald-900\/100 {
  border-color: rgb(6 78 59 / 1);
}

.border-emerald-900\/15 {
  border-color: rgb(6 78 59 / 0.15);
}

.border-emerald-900\/20 {
  border-color: rgb(6 78 59 / 0.2);
}

.border-emerald-900\/25 {
  border-color: rgb(6 78 59 / 0.25);
}

.border-emerald-900\/30 {
  border-color: rgb(6 78 59 / 0.3);
}

.border-emerald-900\/35 {
  border-color: rgb(6 78 59 / 0.35);
}

.border-emerald-900\/40 {
  border-color: rgb(6 78 59 / 0.4);
}

.border-emerald-900\/45 {
  border-color: rgb(6 78 59 / 0.45);
}

.border-emerald-900\/5 {
  border-color: rgb(6 78 59 / 0.05);
}

.border-emerald-900\/50 {
  border-color: rgb(6 78 59 / 0.5);
}

.border-emerald-900\/55 {
  border-color: rgb(6 78 59 / 0.55);
}

.border-emerald-900\/60 {
  border-color: rgb(6 78 59 / 0.6);
}

.border-emerald-900\/65 {
  border-color: rgb(6 78 59 / 0.65);
}

.border-emerald-900\/70 {
  border-color: rgb(6 78 59 / 0.7);
}

.border-emerald-900\/75 {
  border-color: rgb(6 78 59 / 0.75);
}

.border-emerald-900\/80 {
  border-color: rgb(6 78 59 / 0.8);
}

.border-emerald-900\/85 {
  border-color: rgb(6 78 59 / 0.85);
}

.border-emerald-900\/90 {
  border-color: rgb(6 78 59 / 0.9);
}

.border-emerald-900\/95 {
  border-color: rgb(6 78 59 / 0.95);
}

.border-orange-100 {
  --tw-border-opacity: 1;
  border-color: rgb(255 237 213 / var(--tw-border-opacity, 1));
}

.border-orange-100\/0 {
  border-color: rgb(255 237 213 / 0);
}

.border-orange-100\/10 {
  border-color: rgb(255 237 213 / 0.1);
}

.border-orange-100\/100 {
  border-color: rgb(255 237 213 / 1);
}

.border-orange-100\/15 {
  border-color: rgb(255 237 213 / 0.15);
}

.border-orange-100\/20 {
  border-color: rgb(255 237 213 / 0.2);
}

.border-orange-100\/25 {
  border-color: rgb(255 237 213 / 0.25);
}

.border-orange-100\/30 {
  border-color: rgb(255 237 213 / 0.3);
}

.border-orange-100\/35 {
  border-color: rgb(255 237 213 / 0.35);
}

.border-orange-100\/40 {
  border-color: rgb(255 237 213 / 0.4);
}

.border-orange-100\/45 {
  border-color: rgb(255 237 213 / 0.45);
}

.border-orange-100\/5 {
  border-color: rgb(255 237 213 / 0.05);
}

.border-orange-100\/50 {
  border-color: rgb(255 237 213 / 0.5);
}

.border-orange-100\/55 {
  border-color: rgb(255 237 213 / 0.55);
}

.border-orange-100\/60 {
  border-color: rgb(255 237 213 / 0.6);
}

.border-orange-100\/65 {
  border-color: rgb(255 237 213 / 0.65);
}

.border-orange-100\/70 {
  border-color: rgb(255 237 213 / 0.7);
}

.border-orange-100\/75 {
  border-color: rgb(255 237 213 / 0.75);
}

.border-orange-100\/80 {
  border-color: rgb(255 237 213 / 0.8);
}

.border-orange-100\/85 {
  border-color: rgb(255 237 213 / 0.85);
}

.border-orange-100\/90 {
  border-color: rgb(255 237 213 / 0.9);
}

.border-orange-100\/95 {
  border-color: rgb(255 237 213 / 0.95);
}

.border-orange-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 215 170 / var(--tw-border-opacity, 1));
}

.border-orange-200\/0 {
  border-color: rgb(254 215 170 / 0);
}

.border-orange-200\/10 {
  border-color: rgb(254 215 170 / 0.1);
}

.border-orange-200\/100 {
  border-color: rgb(254 215 170 / 1);
}

.border-orange-200\/15 {
  border-color: rgb(254 215 170 / 0.15);
}

.border-orange-200\/20 {
  border-color: rgb(254 215 170 / 0.2);
}

.border-orange-200\/25 {
  border-color: rgb(254 215 170 / 0.25);
}

.border-orange-200\/30 {
  border-color: rgb(254 215 170 / 0.3);
}

.border-orange-200\/35 {
  border-color: rgb(254 215 170 / 0.35);
}

.border-orange-200\/40 {
  border-color: rgb(254 215 170 / 0.4);
}

.border-orange-200\/45 {
  border-color: rgb(254 215 170 / 0.45);
}

.border-orange-200\/5 {
  border-color: rgb(254 215 170 / 0.05);
}

.border-orange-200\/50 {
  border-color: rgb(254 215 170 / 0.5);
}

.border-orange-200\/55 {
  border-color: rgb(254 215 170 / 0.55);
}

.border-orange-200\/60 {
  border-color: rgb(254 215 170 / 0.6);
}

.border-orange-200\/65 {
  border-color: rgb(254 215 170 / 0.65);
}

.border-orange-200\/70 {
  border-color: rgb(254 215 170 / 0.7);
}

.border-orange-200\/75 {
  border-color: rgb(254 215 170 / 0.75);
}

.border-orange-200\/80 {
  border-color: rgb(254 215 170 / 0.8);
}

.border-orange-200\/85 {
  border-color: rgb(254 215 170 / 0.85);
}

.border-orange-200\/90 {
  border-color: rgb(254 215 170 / 0.9);
}

.border-orange-200\/95 {
  border-color: rgb(254 215 170 / 0.95);
}

.border-orange-300 {
  --tw-border-opacity: 1;
  border-color: rgb(253 186 116 / var(--tw-border-opacity, 1));
}

.border-orange-300\/0 {
  border-color: rgb(253 186 116 / 0);
}

.border-orange-300\/10 {
  border-color: rgb(253 186 116 / 0.1);
}

.border-orange-300\/100 {
  border-color: rgb(253 186 116 / 1);
}

.border-orange-300\/15 {
  border-color: rgb(253 186 116 / 0.15);
}

.border-orange-300\/20 {
  border-color: rgb(253 186 116 / 0.2);
}

.border-orange-300\/25 {
  border-color: rgb(253 186 116 / 0.25);
}

.border-orange-300\/30 {
  border-color: rgb(253 186 116 / 0.3);
}

.border-orange-300\/35 {
  border-color: rgb(253 186 116 / 0.35);
}

.border-orange-300\/40 {
  border-color: rgb(253 186 116 / 0.4);
}

.border-orange-300\/45 {
  border-color: rgb(253 186 116 / 0.45);
}

.border-orange-300\/5 {
  border-color: rgb(253 186 116 / 0.05);
}

.border-orange-300\/50 {
  border-color: rgb(253 186 116 / 0.5);
}

.border-orange-300\/55 {
  border-color: rgb(253 186 116 / 0.55);
}

.border-orange-300\/60 {
  border-color: rgb(253 186 116 / 0.6);
}

.border-orange-300\/65 {
  border-color: rgb(253 186 116 / 0.65);
}

.border-orange-300\/70 {
  border-color: rgb(253 186 116 / 0.7);
}

.border-orange-300\/75 {
  border-color: rgb(253 186 116 / 0.75);
}

.border-orange-300\/80 {
  border-color: rgb(253 186 116 / 0.8);
}

.border-orange-300\/85 {
  border-color: rgb(253 186 116 / 0.85);
}

.border-orange-300\/90 {
  border-color: rgb(253 186 116 / 0.9);
}

.border-orange-300\/95 {
  border-color: rgb(253 186 116 / 0.95);
}

.border-orange-400 {
  --tw-border-opacity: 1;
  border-color: rgb(251 146 60 / var(--tw-border-opacity, 1));
}

.border-orange-400\/0 {
  border-color: rgb(251 146 60 / 0);
}

.border-orange-400\/10 {
  border-color: rgb(251 146 60 / 0.1);
}

.border-orange-400\/100 {
  border-color: rgb(251 146 60 / 1);
}

.border-orange-400\/15 {
  border-color: rgb(251 146 60 / 0.15);
}

.border-orange-400\/20 {
  border-color: rgb(251 146 60 / 0.2);
}

.border-orange-400\/25 {
  border-color: rgb(251 146 60 / 0.25);
}

.border-orange-400\/30 {
  border-color: rgb(251 146 60 / 0.3);
}

.border-orange-400\/35 {
  border-color: rgb(251 146 60 / 0.35);
}

.border-orange-400\/40 {
  border-color: rgb(251 146 60 / 0.4);
}

.border-orange-400\/45 {
  border-color: rgb(251 146 60 / 0.45);
}

.border-orange-400\/5 {
  border-color: rgb(251 146 60 / 0.05);
}

.border-orange-400\/50 {
  border-color: rgb(251 146 60 / 0.5);
}

.border-orange-400\/55 {
  border-color: rgb(251 146 60 / 0.55);
}

.border-orange-400\/60 {
  border-color: rgb(251 146 60 / 0.6);
}

.border-orange-400\/65 {
  border-color: rgb(251 146 60 / 0.65);
}

.border-orange-400\/70 {
  border-color: rgb(251 146 60 / 0.7);
}

.border-orange-400\/75 {
  border-color: rgb(251 146 60 / 0.75);
}

.border-orange-400\/80 {
  border-color: rgb(251 146 60 / 0.8);
}

.border-orange-400\/85 {
  border-color: rgb(251 146 60 / 0.85);
}

.border-orange-400\/90 {
  border-color: rgb(251 146 60 / 0.9);
}

.border-orange-400\/95 {
  border-color: rgb(251 146 60 / 0.95);
}

.border-orange-50 {
  --tw-border-opacity: 1;
  border-color: rgb(255 247 237 / var(--tw-border-opacity, 1));
}

.border-orange-50\/0 {
  border-color: rgb(255 247 237 / 0);
}

.border-orange-50\/10 {
  border-color: rgb(255 247 237 / 0.1);
}

.border-orange-50\/100 {
  border-color: rgb(255 247 237 / 1);
}

.border-orange-50\/15 {
  border-color: rgb(255 247 237 / 0.15);
}

.border-orange-50\/20 {
  border-color: rgb(255 247 237 / 0.2);
}

.border-orange-50\/25 {
  border-color: rgb(255 247 237 / 0.25);
}

.border-orange-50\/30 {
  border-color: rgb(255 247 237 / 0.3);
}

.border-orange-50\/35 {
  border-color: rgb(255 247 237 / 0.35);
}

.border-orange-50\/40 {
  border-color: rgb(255 247 237 / 0.4);
}

.border-orange-50\/45 {
  border-color: rgb(255 247 237 / 0.45);
}

.border-orange-50\/5 {
  border-color: rgb(255 247 237 / 0.05);
}

.border-orange-50\/50 {
  border-color: rgb(255 247 237 / 0.5);
}

.border-orange-50\/55 {
  border-color: rgb(255 247 237 / 0.55);
}

.border-orange-50\/60 {
  border-color: rgb(255 247 237 / 0.6);
}

.border-orange-50\/65 {
  border-color: rgb(255 247 237 / 0.65);
}

.border-orange-50\/70 {
  border-color: rgb(255 247 237 / 0.7);
}

.border-orange-50\/75 {
  border-color: rgb(255 247 237 / 0.75);
}

.border-orange-50\/80 {
  border-color: rgb(255 247 237 / 0.8);
}

.border-orange-50\/85 {
  border-color: rgb(255 247 237 / 0.85);
}

.border-orange-50\/90 {
  border-color: rgb(255 247 237 / 0.9);
}

.border-orange-50\/95 {
  border-color: rgb(255 247 237 / 0.95);
}

.border-orange-500 {
  --tw-border-opacity: 1;
  border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
}

.border-orange-500\/0 {
  border-color: rgb(249 115 22 / 0);
}

.border-orange-500\/10 {
  border-color: rgb(249 115 22 / 0.1);
}

.border-orange-500\/100 {
  border-color: rgb(249 115 22 / 1);
}

.border-orange-500\/15 {
  border-color: rgb(249 115 22 / 0.15);
}

.border-orange-500\/20 {
  border-color: rgb(249 115 22 / 0.2);
}

.border-orange-500\/25 {
  border-color: rgb(249 115 22 / 0.25);
}

.border-orange-500\/30 {
  border-color: rgb(249 115 22 / 0.3);
}

.border-orange-500\/35 {
  border-color: rgb(249 115 22 / 0.35);
}

.border-orange-500\/40 {
  border-color: rgb(249 115 22 / 0.4);
}

.border-orange-500\/45 {
  border-color: rgb(249 115 22 / 0.45);
}

.border-orange-500\/5 {
  border-color: rgb(249 115 22 / 0.05);
}

.border-orange-500\/50 {
  border-color: rgb(249 115 22 / 0.5);
}

.border-orange-500\/55 {
  border-color: rgb(249 115 22 / 0.55);
}

.border-orange-500\/60 {
  border-color: rgb(249 115 22 / 0.6);
}

.border-orange-500\/65 {
  border-color: rgb(249 115 22 / 0.65);
}

.border-orange-500\/70 {
  border-color: rgb(249 115 22 / 0.7);
}

.border-orange-500\/75 {
  border-color: rgb(249 115 22 / 0.75);
}

.border-orange-500\/80 {
  border-color: rgb(249 115 22 / 0.8);
}

.border-orange-500\/85 {
  border-color: rgb(249 115 22 / 0.85);
}

.border-orange-500\/90 {
  border-color: rgb(249 115 22 / 0.9);
}

.border-orange-500\/95 {
  border-color: rgb(249 115 22 / 0.95);
}

.border-orange-600 {
  --tw-border-opacity: 1;
  border-color: rgb(234 88 12 / var(--tw-border-opacity, 1));
}

.border-orange-600\/0 {
  border-color: rgb(234 88 12 / 0);
}

.border-orange-600\/10 {
  border-color: rgb(234 88 12 / 0.1);
}

.border-orange-600\/100 {
  border-color: rgb(234 88 12 / 1);
}

.border-orange-600\/15 {
  border-color: rgb(234 88 12 / 0.15);
}

.border-orange-600\/20 {
  border-color: rgb(234 88 12 / 0.2);
}

.border-orange-600\/25 {
  border-color: rgb(234 88 12 / 0.25);
}

.border-orange-600\/30 {
  border-color: rgb(234 88 12 / 0.3);
}

.border-orange-600\/35 {
  border-color: rgb(234 88 12 / 0.35);
}

.border-orange-600\/40 {
  border-color: rgb(234 88 12 / 0.4);
}

.border-orange-600\/45 {
  border-color: rgb(234 88 12 / 0.45);
}

.border-orange-600\/5 {
  border-color: rgb(234 88 12 / 0.05);
}

.border-orange-600\/50 {
  border-color: rgb(234 88 12 / 0.5);
}

.border-orange-600\/55 {
  border-color: rgb(234 88 12 / 0.55);
}

.border-orange-600\/60 {
  border-color: rgb(234 88 12 / 0.6);
}

.border-orange-600\/65 {
  border-color: rgb(234 88 12 / 0.65);
}

.border-orange-600\/70 {
  border-color: rgb(234 88 12 / 0.7);
}

.border-orange-600\/75 {
  border-color: rgb(234 88 12 / 0.75);
}

.border-orange-600\/80 {
  border-color: rgb(234 88 12 / 0.8);
}

.border-orange-600\/85 {
  border-color: rgb(234 88 12 / 0.85);
}

.border-orange-600\/90 {
  border-color: rgb(234 88 12 / 0.9);
}

.border-orange-600\/95 {
  border-color: rgb(234 88 12 / 0.95);
}

.border-orange-700 {
  --tw-border-opacity: 1;
  border-color: rgb(194 65 12 / var(--tw-border-opacity, 1));
}

.border-orange-700\/0 {
  border-color: rgb(194 65 12 / 0);
}

.border-orange-700\/10 {
  border-color: rgb(194 65 12 / 0.1);
}

.border-orange-700\/100 {
  border-color: rgb(194 65 12 / 1);
}

.border-orange-700\/15 {
  border-color: rgb(194 65 12 / 0.15);
}

.border-orange-700\/20 {
  border-color: rgb(194 65 12 / 0.2);
}

.border-orange-700\/25 {
  border-color: rgb(194 65 12 / 0.25);
}

.border-orange-700\/30 {
  border-color: rgb(194 65 12 / 0.3);
}

.border-orange-700\/35 {
  border-color: rgb(194 65 12 / 0.35);
}

.border-orange-700\/40 {
  border-color: rgb(194 65 12 / 0.4);
}

.border-orange-700\/45 {
  border-color: rgb(194 65 12 / 0.45);
}

.border-orange-700\/5 {
  border-color: rgb(194 65 12 / 0.05);
}

.border-orange-700\/50 {
  border-color: rgb(194 65 12 / 0.5);
}

.border-orange-700\/55 {
  border-color: rgb(194 65 12 / 0.55);
}

.border-orange-700\/60 {
  border-color: rgb(194 65 12 / 0.6);
}

.border-orange-700\/65 {
  border-color: rgb(194 65 12 / 0.65);
}

.border-orange-700\/70 {
  border-color: rgb(194 65 12 / 0.7);
}

.border-orange-700\/75 {
  border-color: rgb(194 65 12 / 0.75);
}

.border-orange-700\/80 {
  border-color: rgb(194 65 12 / 0.8);
}

.border-orange-700\/85 {
  border-color: rgb(194 65 12 / 0.85);
}

.border-orange-700\/90 {
  border-color: rgb(194 65 12 / 0.9);
}

.border-orange-700\/95 {
  border-color: rgb(194 65 12 / 0.95);
}

.border-orange-800 {
  --tw-border-opacity: 1;
  border-color: rgb(154 52 18 / var(--tw-border-opacity, 1));
}

.border-orange-800\/0 {
  border-color: rgb(154 52 18 / 0);
}

.border-orange-800\/10 {
  border-color: rgb(154 52 18 / 0.1);
}

.border-orange-800\/100 {
  border-color: rgb(154 52 18 / 1);
}

.border-orange-800\/15 {
  border-color: rgb(154 52 18 / 0.15);
}

.border-orange-800\/20 {
  border-color: rgb(154 52 18 / 0.2);
}

.border-orange-800\/25 {
  border-color: rgb(154 52 18 / 0.25);
}

.border-orange-800\/30 {
  border-color: rgb(154 52 18 / 0.3);
}

.border-orange-800\/35 {
  border-color: rgb(154 52 18 / 0.35);
}

.border-orange-800\/40 {
  border-color: rgb(154 52 18 / 0.4);
}

.border-orange-800\/45 {
  border-color: rgb(154 52 18 / 0.45);
}

.border-orange-800\/5 {
  border-color: rgb(154 52 18 / 0.05);
}

.border-orange-800\/50 {
  border-color: rgb(154 52 18 / 0.5);
}

.border-orange-800\/55 {
  border-color: rgb(154 52 18 / 0.55);
}

.border-orange-800\/60 {
  border-color: rgb(154 52 18 / 0.6);
}

.border-orange-800\/65 {
  border-color: rgb(154 52 18 / 0.65);
}

.border-orange-800\/70 {
  border-color: rgb(154 52 18 / 0.7);
}

.border-orange-800\/75 {
  border-color: rgb(154 52 18 / 0.75);
}

.border-orange-800\/80 {
  border-color: rgb(154 52 18 / 0.8);
}

.border-orange-800\/85 {
  border-color: rgb(154 52 18 / 0.85);
}

.border-orange-800\/90 {
  border-color: rgb(154 52 18 / 0.9);
}

.border-orange-800\/95 {
  border-color: rgb(154 52 18 / 0.95);
}

.border-orange-900 {
  --tw-border-opacity: 1;
  border-color: rgb(124 45 18 / var(--tw-border-opacity, 1));
}

.border-orange-900\/0 {
  border-color: rgb(124 45 18 / 0);
}

.border-orange-900\/10 {
  border-color: rgb(124 45 18 / 0.1);
}

.border-orange-900\/100 {
  border-color: rgb(124 45 18 / 1);
}

.border-orange-900\/15 {
  border-color: rgb(124 45 18 / 0.15);
}

.border-orange-900\/20 {
  border-color: rgb(124 45 18 / 0.2);
}

.border-orange-900\/25 {
  border-color: rgb(124 45 18 / 0.25);
}

.border-orange-900\/30 {
  border-color: rgb(124 45 18 / 0.3);
}

.border-orange-900\/35 {
  border-color: rgb(124 45 18 / 0.35);
}

.border-orange-900\/40 {
  border-color: rgb(124 45 18 / 0.4);
}

.border-orange-900\/45 {
  border-color: rgb(124 45 18 / 0.45);
}

.border-orange-900\/5 {
  border-color: rgb(124 45 18 / 0.05);
}

.border-orange-900\/50 {
  border-color: rgb(124 45 18 / 0.5);
}

.border-orange-900\/55 {
  border-color: rgb(124 45 18 / 0.55);
}

.border-orange-900\/60 {
  border-color: rgb(124 45 18 / 0.6);
}

.border-orange-900\/65 {
  border-color: rgb(124 45 18 / 0.65);
}

.border-orange-900\/70 {
  border-color: rgb(124 45 18 / 0.7);
}

.border-orange-900\/75 {
  border-color: rgb(124 45 18 / 0.75);
}

.border-orange-900\/80 {
  border-color: rgb(124 45 18 / 0.8);
}

.border-orange-900\/85 {
  border-color: rgb(124 45 18 / 0.85);
}

.border-orange-900\/90 {
  border-color: rgb(124 45 18 / 0.9);
}

.border-orange-900\/95 {
  border-color: rgb(124 45 18 / 0.95);
}

.border-outline-variant {
  --tw-border-opacity: 1;
  border-color: rgb(220 193 184 / var(--tw-border-opacity, 1));
}

.border-primary {
  --tw-border-opacity: 1;
  border-color: rgb(154 64 33 / var(--tw-border-opacity, 1));
}

.border-rose-100 {
  --tw-border-opacity: 1;
  border-color: rgb(255 228 230 / var(--tw-border-opacity, 1));
}

.border-rose-100\/0 {
  border-color: rgb(255 228 230 / 0);
}

.border-rose-100\/10 {
  border-color: rgb(255 228 230 / 0.1);
}

.border-rose-100\/100 {
  border-color: rgb(255 228 230 / 1);
}

.border-rose-100\/15 {
  border-color: rgb(255 228 230 / 0.15);
}

.border-rose-100\/20 {
  border-color: rgb(255 228 230 / 0.2);
}

.border-rose-100\/25 {
  border-color: rgb(255 228 230 / 0.25);
}

.border-rose-100\/30 {
  border-color: rgb(255 228 230 / 0.3);
}

.border-rose-100\/35 {
  border-color: rgb(255 228 230 / 0.35);
}

.border-rose-100\/40 {
  border-color: rgb(255 228 230 / 0.4);
}

.border-rose-100\/45 {
  border-color: rgb(255 228 230 / 0.45);
}

.border-rose-100\/5 {
  border-color: rgb(255 228 230 / 0.05);
}

.border-rose-100\/50 {
  border-color: rgb(255 228 230 / 0.5);
}

.border-rose-100\/55 {
  border-color: rgb(255 228 230 / 0.55);
}

.border-rose-100\/60 {
  border-color: rgb(255 228 230 / 0.6);
}

.border-rose-100\/65 {
  border-color: rgb(255 228 230 / 0.65);
}

.border-rose-100\/70 {
  border-color: rgb(255 228 230 / 0.7);
}

.border-rose-100\/75 {
  border-color: rgb(255 228 230 / 0.75);
}

.border-rose-100\/80 {
  border-color: rgb(255 228 230 / 0.8);
}

.border-rose-100\/85 {
  border-color: rgb(255 228 230 / 0.85);
}

.border-rose-100\/90 {
  border-color: rgb(255 228 230 / 0.9);
}

.border-rose-100\/95 {
  border-color: rgb(255 228 230 / 0.95);
}

.border-rose-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 205 211 / var(--tw-border-opacity, 1));
}

.border-rose-200\/0 {
  border-color: rgb(254 205 211 / 0);
}

.border-rose-200\/10 {
  border-color: rgb(254 205 211 / 0.1);
}

.border-rose-200\/100 {
  border-color: rgb(254 205 211 / 1);
}

.border-rose-200\/15 {
  border-color: rgb(254 205 211 / 0.15);
}

.border-rose-200\/20 {
  border-color: rgb(254 205 211 / 0.2);
}

.border-rose-200\/25 {
  border-color: rgb(254 205 211 / 0.25);
}

.border-rose-200\/30 {
  border-color: rgb(254 205 211 / 0.3);
}

.border-rose-200\/35 {
  border-color: rgb(254 205 211 / 0.35);
}

.border-rose-200\/40 {
  border-color: rgb(254 205 211 / 0.4);
}

.border-rose-200\/45 {
  border-color: rgb(254 205 211 / 0.45);
}

.border-rose-200\/5 {
  border-color: rgb(254 205 211 / 0.05);
}

.border-rose-200\/50 {
  border-color: rgb(254 205 211 / 0.5);
}

.border-rose-200\/55 {
  border-color: rgb(254 205 211 / 0.55);
}

.border-rose-200\/60 {
  border-color: rgb(254 205 211 / 0.6);
}

.border-rose-200\/65 {
  border-color: rgb(254 205 211 / 0.65);
}

.border-rose-200\/70 {
  border-color: rgb(254 205 211 / 0.7);
}

.border-rose-200\/75 {
  border-color: rgb(254 205 211 / 0.75);
}

.border-rose-200\/80 {
  border-color: rgb(254 205 211 / 0.8);
}

.border-rose-200\/85 {
  border-color: rgb(254 205 211 / 0.85);
}

.border-rose-200\/90 {
  border-color: rgb(254 205 211 / 0.9);
}

.border-rose-200\/95 {
  border-color: rgb(254 205 211 / 0.95);
}

.border-rose-300 {
  --tw-border-opacity: 1;
  border-color: rgb(253 164 175 / var(--tw-border-opacity, 1));
}

.border-rose-300\/0 {
  border-color: rgb(253 164 175 / 0);
}

.border-rose-300\/10 {
  border-color: rgb(253 164 175 / 0.1);
}

.border-rose-300\/100 {
  border-color: rgb(253 164 175 / 1);
}

.border-rose-300\/15 {
  border-color: rgb(253 164 175 / 0.15);
}

.border-rose-300\/20 {
  border-color: rgb(253 164 175 / 0.2);
}

.border-rose-300\/25 {
  border-color: rgb(253 164 175 / 0.25);
}

.border-rose-300\/30 {
  border-color: rgb(253 164 175 / 0.3);
}

.border-rose-300\/35 {
  border-color: rgb(253 164 175 / 0.35);
}

.border-rose-300\/40 {
  border-color: rgb(253 164 175 / 0.4);
}

.border-rose-300\/45 {
  border-color: rgb(253 164 175 / 0.45);
}

.border-rose-300\/5 {
  border-color: rgb(253 164 175 / 0.05);
}

.border-rose-300\/50 {
  border-color: rgb(253 164 175 / 0.5);
}

.border-rose-300\/55 {
  border-color: rgb(253 164 175 / 0.55);
}

.border-rose-300\/60 {
  border-color: rgb(253 164 175 / 0.6);
}

.border-rose-300\/65 {
  border-color: rgb(253 164 175 / 0.65);
}

.border-rose-300\/70 {
  border-color: rgb(253 164 175 / 0.7);
}

.border-rose-300\/75 {
  border-color: rgb(253 164 175 / 0.75);
}

.border-rose-300\/80 {
  border-color: rgb(253 164 175 / 0.8);
}

.border-rose-300\/85 {
  border-color: rgb(253 164 175 / 0.85);
}

.border-rose-300\/90 {
  border-color: rgb(253 164 175 / 0.9);
}

.border-rose-300\/95 {
  border-color: rgb(253 164 175 / 0.95);
}

.border-rose-400 {
  --tw-border-opacity: 1;
  border-color: rgb(251 113 133 / var(--tw-border-opacity, 1));
}

.border-rose-400\/0 {
  border-color: rgb(251 113 133 / 0);
}

.border-rose-400\/10 {
  border-color: rgb(251 113 133 / 0.1);
}

.border-rose-400\/100 {
  border-color: rgb(251 113 133 / 1);
}

.border-rose-400\/15 {
  border-color: rgb(251 113 133 / 0.15);
}

.border-rose-400\/20 {
  border-color: rgb(251 113 133 / 0.2);
}

.border-rose-400\/25 {
  border-color: rgb(251 113 133 / 0.25);
}

.border-rose-400\/30 {
  border-color: rgb(251 113 133 / 0.3);
}

.border-rose-400\/35 {
  border-color: rgb(251 113 133 / 0.35);
}

.border-rose-400\/40 {
  border-color: rgb(251 113 133 / 0.4);
}

.border-rose-400\/45 {
  border-color: rgb(251 113 133 / 0.45);
}

.border-rose-400\/5 {
  border-color: rgb(251 113 133 / 0.05);
}

.border-rose-400\/50 {
  border-color: rgb(251 113 133 / 0.5);
}

.border-rose-400\/55 {
  border-color: rgb(251 113 133 / 0.55);
}

.border-rose-400\/60 {
  border-color: rgb(251 113 133 / 0.6);
}

.border-rose-400\/65 {
  border-color: rgb(251 113 133 / 0.65);
}

.border-rose-400\/70 {
  border-color: rgb(251 113 133 / 0.7);
}

.border-rose-400\/75 {
  border-color: rgb(251 113 133 / 0.75);
}

.border-rose-400\/80 {
  border-color: rgb(251 113 133 / 0.8);
}

.border-rose-400\/85 {
  border-color: rgb(251 113 133 / 0.85);
}

.border-rose-400\/90 {
  border-color: rgb(251 113 133 / 0.9);
}

.border-rose-400\/95 {
  border-color: rgb(251 113 133 / 0.95);
}

.border-rose-50 {
  --tw-border-opacity: 1;
  border-color: rgb(255 241 242 / var(--tw-border-opacity, 1));
}

.border-rose-50\/0 {
  border-color: rgb(255 241 242 / 0);
}

.border-rose-50\/10 {
  border-color: rgb(255 241 242 / 0.1);
}

.border-rose-50\/100 {
  border-color: rgb(255 241 242 / 1);
}

.border-rose-50\/15 {
  border-color: rgb(255 241 242 / 0.15);
}

.border-rose-50\/20 {
  border-color: rgb(255 241 242 / 0.2);
}

.border-rose-50\/25 {
  border-color: rgb(255 241 242 / 0.25);
}

.border-rose-50\/30 {
  border-color: rgb(255 241 242 / 0.3);
}

.border-rose-50\/35 {
  border-color: rgb(255 241 242 / 0.35);
}

.border-rose-50\/40 {
  border-color: rgb(255 241 242 / 0.4);
}

.border-rose-50\/45 {
  border-color: rgb(255 241 242 / 0.45);
}

.border-rose-50\/5 {
  border-color: rgb(255 241 242 / 0.05);
}

.border-rose-50\/50 {
  border-color: rgb(255 241 242 / 0.5);
}

.border-rose-50\/55 {
  border-color: rgb(255 241 242 / 0.55);
}

.border-rose-50\/60 {
  border-color: rgb(255 241 242 / 0.6);
}

.border-rose-50\/65 {
  border-color: rgb(255 241 242 / 0.65);
}

.border-rose-50\/70 {
  border-color: rgb(255 241 242 / 0.7);
}

.border-rose-50\/75 {
  border-color: rgb(255 241 242 / 0.75);
}

.border-rose-50\/80 {
  border-color: rgb(255 241 242 / 0.8);
}

.border-rose-50\/85 {
  border-color: rgb(255 241 242 / 0.85);
}

.border-rose-50\/90 {
  border-color: rgb(255 241 242 / 0.9);
}

.border-rose-50\/95 {
  border-color: rgb(255 241 242 / 0.95);
}

.border-rose-500 {
  --tw-border-opacity: 1;
  border-color: rgb(244 63 94 / var(--tw-border-opacity, 1));
}

.border-rose-500\/0 {
  border-color: rgb(244 63 94 / 0);
}

.border-rose-500\/10 {
  border-color: rgb(244 63 94 / 0.1);
}

.border-rose-500\/100 {
  border-color: rgb(244 63 94 / 1);
}

.border-rose-500\/15 {
  border-color: rgb(244 63 94 / 0.15);
}

.border-rose-500\/20 {
  border-color: rgb(244 63 94 / 0.2);
}

.border-rose-500\/25 {
  border-color: rgb(244 63 94 / 0.25);
}

.border-rose-500\/30 {
  border-color: rgb(244 63 94 / 0.3);
}

.border-rose-500\/35 {
  border-color: rgb(244 63 94 / 0.35);
}

.border-rose-500\/40 {
  border-color: rgb(244 63 94 / 0.4);
}

.border-rose-500\/45 {
  border-color: rgb(244 63 94 / 0.45);
}

.border-rose-500\/5 {
  border-color: rgb(244 63 94 / 0.05);
}

.border-rose-500\/50 {
  border-color: rgb(244 63 94 / 0.5);
}

.border-rose-500\/55 {
  border-color: rgb(244 63 94 / 0.55);
}

.border-rose-500\/60 {
  border-color: rgb(244 63 94 / 0.6);
}

.border-rose-500\/65 {
  border-color: rgb(244 63 94 / 0.65);
}

.border-rose-500\/70 {
  border-color: rgb(244 63 94 / 0.7);
}

.border-rose-500\/75 {
  border-color: rgb(244 63 94 / 0.75);
}

.border-rose-500\/80 {
  border-color: rgb(244 63 94 / 0.8);
}

.border-rose-500\/85 {
  border-color: rgb(244 63 94 / 0.85);
}

.border-rose-500\/90 {
  border-color: rgb(244 63 94 / 0.9);
}

.border-rose-500\/95 {
  border-color: rgb(244 63 94 / 0.95);
}

.border-rose-600 {
  --tw-border-opacity: 1;
  border-color: rgb(225 29 72 / var(--tw-border-opacity, 1));
}

.border-rose-600\/0 {
  border-color: rgb(225 29 72 / 0);
}

.border-rose-600\/10 {
  border-color: rgb(225 29 72 / 0.1);
}

.border-rose-600\/100 {
  border-color: rgb(225 29 72 / 1);
}

.border-rose-600\/15 {
  border-color: rgb(225 29 72 / 0.15);
}

.border-rose-600\/20 {
  border-color: rgb(225 29 72 / 0.2);
}

.border-rose-600\/25 {
  border-color: rgb(225 29 72 / 0.25);
}

.border-rose-600\/30 {
  border-color: rgb(225 29 72 / 0.3);
}

.border-rose-600\/35 {
  border-color: rgb(225 29 72 / 0.35);
}

.border-rose-600\/40 {
  border-color: rgb(225 29 72 / 0.4);
}

.border-rose-600\/45 {
  border-color: rgb(225 29 72 / 0.45);
}

.border-rose-600\/5 {
  border-color: rgb(225 29 72 / 0.05);
}

.border-rose-600\/50 {
  border-color: rgb(225 29 72 / 0.5);
}

.border-rose-600\/55 {
  border-color: rgb(225 29 72 / 0.55);
}

.border-rose-600\/60 {
  border-color: rgb(225 29 72 / 0.6);
}

.border-rose-600\/65 {
  border-color: rgb(225 29 72 / 0.65);
}

.border-rose-600\/70 {
  border-color: rgb(225 29 72 / 0.7);
}

.border-rose-600\/75 {
  border-color: rgb(225 29 72 / 0.75);
}

.border-rose-600\/80 {
  border-color: rgb(225 29 72 / 0.8);
}

.border-rose-600\/85 {
  border-color: rgb(225 29 72 / 0.85);
}

.border-rose-600\/90 {
  border-color: rgb(225 29 72 / 0.9);
}

.border-rose-600\/95 {
  border-color: rgb(225 29 72 / 0.95);
}

.border-rose-700 {
  --tw-border-opacity: 1;
  border-color: rgb(190 18 60 / var(--tw-border-opacity, 1));
}

.border-rose-700\/0 {
  border-color: rgb(190 18 60 / 0);
}

.border-rose-700\/10 {
  border-color: rgb(190 18 60 / 0.1);
}

.border-rose-700\/100 {
  border-color: rgb(190 18 60 / 1);
}

.border-rose-700\/15 {
  border-color: rgb(190 18 60 / 0.15);
}

.border-rose-700\/20 {
  border-color: rgb(190 18 60 / 0.2);
}

.border-rose-700\/25 {
  border-color: rgb(190 18 60 / 0.25);
}

.border-rose-700\/30 {
  border-color: rgb(190 18 60 / 0.3);
}

.border-rose-700\/35 {
  border-color: rgb(190 18 60 / 0.35);
}

.border-rose-700\/40 {
  border-color: rgb(190 18 60 / 0.4);
}

.border-rose-700\/45 {
  border-color: rgb(190 18 60 / 0.45);
}

.border-rose-700\/5 {
  border-color: rgb(190 18 60 / 0.05);
}

.border-rose-700\/50 {
  border-color: rgb(190 18 60 / 0.5);
}

.border-rose-700\/55 {
  border-color: rgb(190 18 60 / 0.55);
}

.border-rose-700\/60 {
  border-color: rgb(190 18 60 / 0.6);
}

.border-rose-700\/65 {
  border-color: rgb(190 18 60 / 0.65);
}

.border-rose-700\/70 {
  border-color: rgb(190 18 60 / 0.7);
}

.border-rose-700\/75 {
  border-color: rgb(190 18 60 / 0.75);
}

.border-rose-700\/80 {
  border-color: rgb(190 18 60 / 0.8);
}

.border-rose-700\/85 {
  border-color: rgb(190 18 60 / 0.85);
}

.border-rose-700\/90 {
  border-color: rgb(190 18 60 / 0.9);
}

.border-rose-700\/95 {
  border-color: rgb(190 18 60 / 0.95);
}

.border-rose-800 {
  --tw-border-opacity: 1;
  border-color: rgb(159 18 57 / var(--tw-border-opacity, 1));
}

.border-rose-800\/0 {
  border-color: rgb(159 18 57 / 0);
}

.border-rose-800\/10 {
  border-color: rgb(159 18 57 / 0.1);
}

.border-rose-800\/100 {
  border-color: rgb(159 18 57 / 1);
}

.border-rose-800\/15 {
  border-color: rgb(159 18 57 / 0.15);
}

.border-rose-800\/20 {
  border-color: rgb(159 18 57 / 0.2);
}

.border-rose-800\/25 {
  border-color: rgb(159 18 57 / 0.25);
}

.border-rose-800\/30 {
  border-color: rgb(159 18 57 / 0.3);
}

.border-rose-800\/35 {
  border-color: rgb(159 18 57 / 0.35);
}

.border-rose-800\/40 {
  border-color: rgb(159 18 57 / 0.4);
}

.border-rose-800\/45 {
  border-color: rgb(159 18 57 / 0.45);
}

.border-rose-800\/5 {
  border-color: rgb(159 18 57 / 0.05);
}

.border-rose-800\/50 {
  border-color: rgb(159 18 57 / 0.5);
}

.border-rose-800\/55 {
  border-color: rgb(159 18 57 / 0.55);
}

.border-rose-800\/60 {
  border-color: rgb(159 18 57 / 0.6);
}

.border-rose-800\/65 {
  border-color: rgb(159 18 57 / 0.65);
}

.border-rose-800\/70 {
  border-color: rgb(159 18 57 / 0.7);
}

.border-rose-800\/75 {
  border-color: rgb(159 18 57 / 0.75);
}

.border-rose-800\/80 {
  border-color: rgb(159 18 57 / 0.8);
}

.border-rose-800\/85 {
  border-color: rgb(159 18 57 / 0.85);
}

.border-rose-800\/90 {
  border-color: rgb(159 18 57 / 0.9);
}

.border-rose-800\/95 {
  border-color: rgb(159 18 57 / 0.95);
}

.border-rose-900 {
  --tw-border-opacity: 1;
  border-color: rgb(136 19 55 / var(--tw-border-opacity, 1));
}

.border-rose-900\/0 {
  border-color: rgb(136 19 55 / 0);
}

.border-rose-900\/10 {
  border-color: rgb(136 19 55 / 0.1);
}

.border-rose-900\/100 {
  border-color: rgb(136 19 55 / 1);
}

.border-rose-900\/15 {
  border-color: rgb(136 19 55 / 0.15);
}

.border-rose-900\/20 {
  border-color: rgb(136 19 55 / 0.2);
}

.border-rose-900\/25 {
  border-color: rgb(136 19 55 / 0.25);
}

.border-rose-900\/30 {
  border-color: rgb(136 19 55 / 0.3);
}

.border-rose-900\/35 {
  border-color: rgb(136 19 55 / 0.35);
}

.border-rose-900\/40 {
  border-color: rgb(136 19 55 / 0.4);
}

.border-rose-900\/45 {
  border-color: rgb(136 19 55 / 0.45);
}

.border-rose-900\/5 {
  border-color: rgb(136 19 55 / 0.05);
}

.border-rose-900\/50 {
  border-color: rgb(136 19 55 / 0.5);
}

.border-rose-900\/55 {
  border-color: rgb(136 19 55 / 0.55);
}

.border-rose-900\/60 {
  border-color: rgb(136 19 55 / 0.6);
}

.border-rose-900\/65 {
  border-color: rgb(136 19 55 / 0.65);
}

.border-rose-900\/70 {
  border-color: rgb(136 19 55 / 0.7);
}

.border-rose-900\/75 {
  border-color: rgb(136 19 55 / 0.75);
}

.border-rose-900\/80 {
  border-color: rgb(136 19 55 / 0.8);
}

.border-rose-900\/85 {
  border-color: rgb(136 19 55 / 0.85);
}

.border-rose-900\/90 {
  border-color: rgb(136 19 55 / 0.9);
}

.border-rose-900\/95 {
  border-color: rgb(136 19 55 / 0.95);
}

.border-sky-100 {
  --tw-border-opacity: 1;
  border-color: rgb(224 242 254 / var(--tw-border-opacity, 1));
}

.border-sky-100\/0 {
  border-color: rgb(224 242 254 / 0);
}

.border-sky-100\/10 {
  border-color: rgb(224 242 254 / 0.1);
}

.border-sky-100\/100 {
  border-color: rgb(224 242 254 / 1);
}

.border-sky-100\/15 {
  border-color: rgb(224 242 254 / 0.15);
}

.border-sky-100\/20 {
  border-color: rgb(224 242 254 / 0.2);
}

.border-sky-100\/25 {
  border-color: rgb(224 242 254 / 0.25);
}

.border-sky-100\/30 {
  border-color: rgb(224 242 254 / 0.3);
}

.border-sky-100\/35 {
  border-color: rgb(224 242 254 / 0.35);
}

.border-sky-100\/40 {
  border-color: rgb(224 242 254 / 0.4);
}

.border-sky-100\/45 {
  border-color: rgb(224 242 254 / 0.45);
}

.border-sky-100\/5 {
  border-color: rgb(224 242 254 / 0.05);
}

.border-sky-100\/50 {
  border-color: rgb(224 242 254 / 0.5);
}

.border-sky-100\/55 {
  border-color: rgb(224 242 254 / 0.55);
}

.border-sky-100\/60 {
  border-color: rgb(224 242 254 / 0.6);
}

.border-sky-100\/65 {
  border-color: rgb(224 242 254 / 0.65);
}

.border-sky-100\/70 {
  border-color: rgb(224 242 254 / 0.7);
}

.border-sky-100\/75 {
  border-color: rgb(224 242 254 / 0.75);
}

.border-sky-100\/80 {
  border-color: rgb(224 242 254 / 0.8);
}

.border-sky-100\/85 {
  border-color: rgb(224 242 254 / 0.85);
}

.border-sky-100\/90 {
  border-color: rgb(224 242 254 / 0.9);
}

.border-sky-100\/95 {
  border-color: rgb(224 242 254 / 0.95);
}

.border-sky-200 {
  --tw-border-opacity: 1;
  border-color: rgb(186 230 253 / var(--tw-border-opacity, 1));
}

.border-sky-200\/0 {
  border-color: rgb(186 230 253 / 0);
}

.border-sky-200\/10 {
  border-color: rgb(186 230 253 / 0.1);
}

.border-sky-200\/100 {
  border-color: rgb(186 230 253 / 1);
}

.border-sky-200\/15 {
  border-color: rgb(186 230 253 / 0.15);
}

.border-sky-200\/20 {
  border-color: rgb(186 230 253 / 0.2);
}

.border-sky-200\/25 {
  border-color: rgb(186 230 253 / 0.25);
}

.border-sky-200\/30 {
  border-color: rgb(186 230 253 / 0.3);
}

.border-sky-200\/35 {
  border-color: rgb(186 230 253 / 0.35);
}

.border-sky-200\/40 {
  border-color: rgb(186 230 253 / 0.4);
}

.border-sky-200\/45 {
  border-color: rgb(186 230 253 / 0.45);
}

.border-sky-200\/5 {
  border-color: rgb(186 230 253 / 0.05);
}

.border-sky-200\/50 {
  border-color: rgb(186 230 253 / 0.5);
}

.border-sky-200\/55 {
  border-color: rgb(186 230 253 / 0.55);
}

.border-sky-200\/60 {
  border-color: rgb(186 230 253 / 0.6);
}

.border-sky-200\/65 {
  border-color: rgb(186 230 253 / 0.65);
}

.border-sky-200\/70 {
  border-color: rgb(186 230 253 / 0.7);
}

.border-sky-200\/75 {
  border-color: rgb(186 230 253 / 0.75);
}

.border-sky-200\/80 {
  border-color: rgb(186 230 253 / 0.8);
}

.border-sky-200\/85 {
  border-color: rgb(186 230 253 / 0.85);
}

.border-sky-200\/90 {
  border-color: rgb(186 230 253 / 0.9);
}

.border-sky-200\/95 {
  border-color: rgb(186 230 253 / 0.95);
}

.border-sky-300 {
  --tw-border-opacity: 1;
  border-color: rgb(125 211 252 / var(--tw-border-opacity, 1));
}

.border-sky-300\/0 {
  border-color: rgb(125 211 252 / 0);
}

.border-sky-300\/10 {
  border-color: rgb(125 211 252 / 0.1);
}

.border-sky-300\/100 {
  border-color: rgb(125 211 252 / 1);
}

.border-sky-300\/15 {
  border-color: rgb(125 211 252 / 0.15);
}

.border-sky-300\/20 {
  border-color: rgb(125 211 252 / 0.2);
}

.border-sky-300\/25 {
  border-color: rgb(125 211 252 / 0.25);
}

.border-sky-300\/30 {
  border-color: rgb(125 211 252 / 0.3);
}

.border-sky-300\/35 {
  border-color: rgb(125 211 252 / 0.35);
}

.border-sky-300\/40 {
  border-color: rgb(125 211 252 / 0.4);
}

.border-sky-300\/45 {
  border-color: rgb(125 211 252 / 0.45);
}

.border-sky-300\/5 {
  border-color: rgb(125 211 252 / 0.05);
}

.border-sky-300\/50 {
  border-color: rgb(125 211 252 / 0.5);
}

.border-sky-300\/55 {
  border-color: rgb(125 211 252 / 0.55);
}

.border-sky-300\/60 {
  border-color: rgb(125 211 252 / 0.6);
}

.border-sky-300\/65 {
  border-color: rgb(125 211 252 / 0.65);
}

.border-sky-300\/70 {
  border-color: rgb(125 211 252 / 0.7);
}

.border-sky-300\/75 {
  border-color: rgb(125 211 252 / 0.75);
}

.border-sky-300\/80 {
  border-color: rgb(125 211 252 / 0.8);
}

.border-sky-300\/85 {
  border-color: rgb(125 211 252 / 0.85);
}

.border-sky-300\/90 {
  border-color: rgb(125 211 252 / 0.9);
}

.border-sky-300\/95 {
  border-color: rgb(125 211 252 / 0.95);
}

.border-sky-400 {
  --tw-border-opacity: 1;
  border-color: rgb(56 189 248 / var(--tw-border-opacity, 1));
}

.border-sky-400\/0 {
  border-color: rgb(56 189 248 / 0);
}

.border-sky-400\/10 {
  border-color: rgb(56 189 248 / 0.1);
}

.border-sky-400\/100 {
  border-color: rgb(56 189 248 / 1);
}

.border-sky-400\/15 {
  border-color: rgb(56 189 248 / 0.15);
}

.border-sky-400\/20 {
  border-color: rgb(56 189 248 / 0.2);
}

.border-sky-400\/25 {
  border-color: rgb(56 189 248 / 0.25);
}

.border-sky-400\/30 {
  border-color: rgb(56 189 248 / 0.3);
}

.border-sky-400\/35 {
  border-color: rgb(56 189 248 / 0.35);
}

.border-sky-400\/40 {
  border-color: rgb(56 189 248 / 0.4);
}

.border-sky-400\/45 {
  border-color: rgb(56 189 248 / 0.45);
}

.border-sky-400\/5 {
  border-color: rgb(56 189 248 / 0.05);
}

.border-sky-400\/50 {
  border-color: rgb(56 189 248 / 0.5);
}

.border-sky-400\/55 {
  border-color: rgb(56 189 248 / 0.55);
}

.border-sky-400\/60 {
  border-color: rgb(56 189 248 / 0.6);
}

.border-sky-400\/65 {
  border-color: rgb(56 189 248 / 0.65);
}

.border-sky-400\/70 {
  border-color: rgb(56 189 248 / 0.7);
}

.border-sky-400\/75 {
  border-color: rgb(56 189 248 / 0.75);
}

.border-sky-400\/80 {
  border-color: rgb(56 189 248 / 0.8);
}

.border-sky-400\/85 {
  border-color: rgb(56 189 248 / 0.85);
}

.border-sky-400\/90 {
  border-color: rgb(56 189 248 / 0.9);
}

.border-sky-400\/95 {
  border-color: rgb(56 189 248 / 0.95);
}

.border-sky-50 {
  --tw-border-opacity: 1;
  border-color: rgb(240 249 255 / var(--tw-border-opacity, 1));
}

.border-sky-50\/0 {
  border-color: rgb(240 249 255 / 0);
}

.border-sky-50\/10 {
  border-color: rgb(240 249 255 / 0.1);
}

.border-sky-50\/100 {
  border-color: rgb(240 249 255 / 1);
}

.border-sky-50\/15 {
  border-color: rgb(240 249 255 / 0.15);
}

.border-sky-50\/20 {
  border-color: rgb(240 249 255 / 0.2);
}

.border-sky-50\/25 {
  border-color: rgb(240 249 255 / 0.25);
}

.border-sky-50\/30 {
  border-color: rgb(240 249 255 / 0.3);
}

.border-sky-50\/35 {
  border-color: rgb(240 249 255 / 0.35);
}

.border-sky-50\/40 {
  border-color: rgb(240 249 255 / 0.4);
}

.border-sky-50\/45 {
  border-color: rgb(240 249 255 / 0.45);
}

.border-sky-50\/5 {
  border-color: rgb(240 249 255 / 0.05);
}

.border-sky-50\/50 {
  border-color: rgb(240 249 255 / 0.5);
}

.border-sky-50\/55 {
  border-color: rgb(240 249 255 / 0.55);
}

.border-sky-50\/60 {
  border-color: rgb(240 249 255 / 0.6);
}

.border-sky-50\/65 {
  border-color: rgb(240 249 255 / 0.65);
}

.border-sky-50\/70 {
  border-color: rgb(240 249 255 / 0.7);
}

.border-sky-50\/75 {
  border-color: rgb(240 249 255 / 0.75);
}

.border-sky-50\/80 {
  border-color: rgb(240 249 255 / 0.8);
}

.border-sky-50\/85 {
  border-color: rgb(240 249 255 / 0.85);
}

.border-sky-50\/90 {
  border-color: rgb(240 249 255 / 0.9);
}

.border-sky-50\/95 {
  border-color: rgb(240 249 255 / 0.95);
}

.border-sky-500 {
  --tw-border-opacity: 1;
  border-color: rgb(14 165 233 / var(--tw-border-opacity, 1));
}

.border-sky-500\/0 {
  border-color: rgb(14 165 233 / 0);
}

.border-sky-500\/10 {
  border-color: rgb(14 165 233 / 0.1);
}

.border-sky-500\/100 {
  border-color: rgb(14 165 233 / 1);
}

.border-sky-500\/15 {
  border-color: rgb(14 165 233 / 0.15);
}

.border-sky-500\/20 {
  border-color: rgb(14 165 233 / 0.2);
}

.border-sky-500\/25 {
  border-color: rgb(14 165 233 / 0.25);
}

.border-sky-500\/30 {
  border-color: rgb(14 165 233 / 0.3);
}

.border-sky-500\/35 {
  border-color: rgb(14 165 233 / 0.35);
}

.border-sky-500\/40 {
  border-color: rgb(14 165 233 / 0.4);
}

.border-sky-500\/45 {
  border-color: rgb(14 165 233 / 0.45);
}

.border-sky-500\/5 {
  border-color: rgb(14 165 233 / 0.05);
}

.border-sky-500\/50 {
  border-color: rgb(14 165 233 / 0.5);
}

.border-sky-500\/55 {
  border-color: rgb(14 165 233 / 0.55);
}

.border-sky-500\/60 {
  border-color: rgb(14 165 233 / 0.6);
}

.border-sky-500\/65 {
  border-color: rgb(14 165 233 / 0.65);
}

.border-sky-500\/70 {
  border-color: rgb(14 165 233 / 0.7);
}

.border-sky-500\/75 {
  border-color: rgb(14 165 233 / 0.75);
}

.border-sky-500\/80 {
  border-color: rgb(14 165 233 / 0.8);
}

.border-sky-500\/85 {
  border-color: rgb(14 165 233 / 0.85);
}

.border-sky-500\/90 {
  border-color: rgb(14 165 233 / 0.9);
}

.border-sky-500\/95 {
  border-color: rgb(14 165 233 / 0.95);
}

.border-sky-600 {
  --tw-border-opacity: 1;
  border-color: rgb(2 132 199 / var(--tw-border-opacity, 1));
}

.border-sky-600\/0 {
  border-color: rgb(2 132 199 / 0);
}

.border-sky-600\/10 {
  border-color: rgb(2 132 199 / 0.1);
}

.border-sky-600\/100 {
  border-color: rgb(2 132 199 / 1);
}

.border-sky-600\/15 {
  border-color: rgb(2 132 199 / 0.15);
}

.border-sky-600\/20 {
  border-color: rgb(2 132 199 / 0.2);
}

.border-sky-600\/25 {
  border-color: rgb(2 132 199 / 0.25);
}

.border-sky-600\/30 {
  border-color: rgb(2 132 199 / 0.3);
}

.border-sky-600\/35 {
  border-color: rgb(2 132 199 / 0.35);
}

.border-sky-600\/40 {
  border-color: rgb(2 132 199 / 0.4);
}

.border-sky-600\/45 {
  border-color: rgb(2 132 199 / 0.45);
}

.border-sky-600\/5 {
  border-color: rgb(2 132 199 / 0.05);
}

.border-sky-600\/50 {
  border-color: rgb(2 132 199 / 0.5);
}

.border-sky-600\/55 {
  border-color: rgb(2 132 199 / 0.55);
}

.border-sky-600\/60 {
  border-color: rgb(2 132 199 / 0.6);
}

.border-sky-600\/65 {
  border-color: rgb(2 132 199 / 0.65);
}

.border-sky-600\/70 {
  border-color: rgb(2 132 199 / 0.7);
}

.border-sky-600\/75 {
  border-color: rgb(2 132 199 / 0.75);
}

.border-sky-600\/80 {
  border-color: rgb(2 132 199 / 0.8);
}

.border-sky-600\/85 {
  border-color: rgb(2 132 199 / 0.85);
}

.border-sky-600\/90 {
  border-color: rgb(2 132 199 / 0.9);
}

.border-sky-600\/95 {
  border-color: rgb(2 132 199 / 0.95);
}

.border-sky-700 {
  --tw-border-opacity: 1;
  border-color: rgb(3 105 161 / var(--tw-border-opacity, 1));
}

.border-sky-700\/0 {
  border-color: rgb(3 105 161 / 0);
}

.border-sky-700\/10 {
  border-color: rgb(3 105 161 / 0.1);
}

.border-sky-700\/100 {
  border-color: rgb(3 105 161 / 1);
}

.border-sky-700\/15 {
  border-color: rgb(3 105 161 / 0.15);
}

.border-sky-700\/20 {
  border-color: rgb(3 105 161 / 0.2);
}

.border-sky-700\/25 {
  border-color: rgb(3 105 161 / 0.25);
}

.border-sky-700\/30 {
  border-color: rgb(3 105 161 / 0.3);
}

.border-sky-700\/35 {
  border-color: rgb(3 105 161 / 0.35);
}

.border-sky-700\/40 {
  border-color: rgb(3 105 161 / 0.4);
}

.border-sky-700\/45 {
  border-color: rgb(3 105 161 / 0.45);
}

.border-sky-700\/5 {
  border-color: rgb(3 105 161 / 0.05);
}

.border-sky-700\/50 {
  border-color: rgb(3 105 161 / 0.5);
}

.border-sky-700\/55 {
  border-color: rgb(3 105 161 / 0.55);
}

.border-sky-700\/60 {
  border-color: rgb(3 105 161 / 0.6);
}

.border-sky-700\/65 {
  border-color: rgb(3 105 161 / 0.65);
}

.border-sky-700\/70 {
  border-color: rgb(3 105 161 / 0.7);
}

.border-sky-700\/75 {
  border-color: rgb(3 105 161 / 0.75);
}

.border-sky-700\/80 {
  border-color: rgb(3 105 161 / 0.8);
}

.border-sky-700\/85 {
  border-color: rgb(3 105 161 / 0.85);
}

.border-sky-700\/90 {
  border-color: rgb(3 105 161 / 0.9);
}

.border-sky-700\/95 {
  border-color: rgb(3 105 161 / 0.95);
}

.border-sky-800 {
  --tw-border-opacity: 1;
  border-color: rgb(7 89 133 / var(--tw-border-opacity, 1));
}

.border-sky-800\/0 {
  border-color: rgb(7 89 133 / 0);
}

.border-sky-800\/10 {
  border-color: rgb(7 89 133 / 0.1);
}

.border-sky-800\/100 {
  border-color: rgb(7 89 133 / 1);
}

.border-sky-800\/15 {
  border-color: rgb(7 89 133 / 0.15);
}

.border-sky-800\/20 {
  border-color: rgb(7 89 133 / 0.2);
}

.border-sky-800\/25 {
  border-color: rgb(7 89 133 / 0.25);
}

.border-sky-800\/30 {
  border-color: rgb(7 89 133 / 0.3);
}

.border-sky-800\/35 {
  border-color: rgb(7 89 133 / 0.35);
}

.border-sky-800\/40 {
  border-color: rgb(7 89 133 / 0.4);
}

.border-sky-800\/45 {
  border-color: rgb(7 89 133 / 0.45);
}

.border-sky-800\/5 {
  border-color: rgb(7 89 133 / 0.05);
}

.border-sky-800\/50 {
  border-color: rgb(7 89 133 / 0.5);
}

.border-sky-800\/55 {
  border-color: rgb(7 89 133 / 0.55);
}

.border-sky-800\/60 {
  border-color: rgb(7 89 133 / 0.6);
}

.border-sky-800\/65 {
  border-color: rgb(7 89 133 / 0.65);
}

.border-sky-800\/70 {
  border-color: rgb(7 89 133 / 0.7);
}

.border-sky-800\/75 {
  border-color: rgb(7 89 133 / 0.75);
}

.border-sky-800\/80 {
  border-color: rgb(7 89 133 / 0.8);
}

.border-sky-800\/85 {
  border-color: rgb(7 89 133 / 0.85);
}

.border-sky-800\/90 {
  border-color: rgb(7 89 133 / 0.9);
}

.border-sky-800\/95 {
  border-color: rgb(7 89 133 / 0.95);
}

.border-sky-900 {
  --tw-border-opacity: 1;
  border-color: rgb(12 74 110 / var(--tw-border-opacity, 1));
}

.border-sky-900\/0 {
  border-color: rgb(12 74 110 / 0);
}

.border-sky-900\/10 {
  border-color: rgb(12 74 110 / 0.1);
}

.border-sky-900\/100 {
  border-color: rgb(12 74 110 / 1);
}

.border-sky-900\/15 {
  border-color: rgb(12 74 110 / 0.15);
}

.border-sky-900\/20 {
  border-color: rgb(12 74 110 / 0.2);
}

.border-sky-900\/25 {
  border-color: rgb(12 74 110 / 0.25);
}

.border-sky-900\/30 {
  border-color: rgb(12 74 110 / 0.3);
}

.border-sky-900\/35 {
  border-color: rgb(12 74 110 / 0.35);
}

.border-sky-900\/40 {
  border-color: rgb(12 74 110 / 0.4);
}

.border-sky-900\/45 {
  border-color: rgb(12 74 110 / 0.45);
}

.border-sky-900\/5 {
  border-color: rgb(12 74 110 / 0.05);
}

.border-sky-900\/50 {
  border-color: rgb(12 74 110 / 0.5);
}

.border-sky-900\/55 {
  border-color: rgb(12 74 110 / 0.55);
}

.border-sky-900\/60 {
  border-color: rgb(12 74 110 / 0.6);
}

.border-sky-900\/65 {
  border-color: rgb(12 74 110 / 0.65);
}

.border-sky-900\/70 {
  border-color: rgb(12 74 110 / 0.7);
}

.border-sky-900\/75 {
  border-color: rgb(12 74 110 / 0.75);
}

.border-sky-900\/80 {
  border-color: rgb(12 74 110 / 0.8);
}

.border-sky-900\/85 {
  border-color: rgb(12 74 110 / 0.85);
}

.border-sky-900\/90 {
  border-color: rgb(12 74 110 / 0.9);
}

.border-sky-900\/95 {
  border-color: rgb(12 74 110 / 0.95);
}

.border-slate-100 {
  --tw-border-opacity: 1;
  border-color: rgb(241 245 249 / var(--tw-border-opacity, 1));
}

.border-slate-100\/0 {
  border-color: rgb(241 245 249 / 0);
}

.border-slate-100\/10 {
  border-color: rgb(241 245 249 / 0.1);
}

.border-slate-100\/100 {
  border-color: rgb(241 245 249 / 1);
}

.border-slate-100\/15 {
  border-color: rgb(241 245 249 / 0.15);
}

.border-slate-100\/20 {
  border-color: rgb(241 245 249 / 0.2);
}

.border-slate-100\/25 {
  border-color: rgb(241 245 249 / 0.25);
}

.border-slate-100\/30 {
  border-color: rgb(241 245 249 / 0.3);
}

.border-slate-100\/35 {
  border-color: rgb(241 245 249 / 0.35);
}

.border-slate-100\/40 {
  border-color: rgb(241 245 249 / 0.4);
}

.border-slate-100\/45 {
  border-color: rgb(241 245 249 / 0.45);
}

.border-slate-100\/5 {
  border-color: rgb(241 245 249 / 0.05);
}

.border-slate-100\/50 {
  border-color: rgb(241 245 249 / 0.5);
}

.border-slate-100\/55 {
  border-color: rgb(241 245 249 / 0.55);
}

.border-slate-100\/60 {
  border-color: rgb(241 245 249 / 0.6);
}

.border-slate-100\/65 {
  border-color: rgb(241 245 249 / 0.65);
}

.border-slate-100\/70 {
  border-color: rgb(241 245 249 / 0.7);
}

.border-slate-100\/75 {
  border-color: rgb(241 245 249 / 0.75);
}

.border-slate-100\/80 {
  border-color: rgb(241 245 249 / 0.8);
}

.border-slate-100\/85 {
  border-color: rgb(241 245 249 / 0.85);
}

.border-slate-100\/90 {
  border-color: rgb(241 245 249 / 0.9);
}

.border-slate-100\/95 {
  border-color: rgb(241 245 249 / 0.95);
}

.border-slate-200 {
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}

.border-slate-200\/0 {
  border-color: rgb(226 232 240 / 0);
}

.border-slate-200\/10 {
  border-color: rgb(226 232 240 / 0.1);
}

.border-slate-200\/100 {
  border-color: rgb(226 232 240 / 1);
}

.border-slate-200\/15 {
  border-color: rgb(226 232 240 / 0.15);
}

.border-slate-200\/20 {
  border-color: rgb(226 232 240 / 0.2);
}

.border-slate-200\/25 {
  border-color: rgb(226 232 240 / 0.25);
}

.border-slate-200\/30 {
  border-color: rgb(226 232 240 / 0.3);
}

.border-slate-200\/35 {
  border-color: rgb(226 232 240 / 0.35);
}

.border-slate-200\/40 {
  border-color: rgb(226 232 240 / 0.4);
}

.border-slate-200\/45 {
  border-color: rgb(226 232 240 / 0.45);
}

.border-slate-200\/5 {
  border-color: rgb(226 232 240 / 0.05);
}

.border-slate-200\/50 {
  border-color: rgb(226 232 240 / 0.5);
}

.border-slate-200\/55 {
  border-color: rgb(226 232 240 / 0.55);
}

.border-slate-200\/60 {
  border-color: rgb(226 232 240 / 0.6);
}

.border-slate-200\/65 {
  border-color: rgb(226 232 240 / 0.65);
}

.border-slate-200\/70 {
  border-color: rgb(226 232 240 / 0.7);
}

.border-slate-200\/75 {
  border-color: rgb(226 232 240 / 0.75);
}

.border-slate-200\/80 {
  border-color: rgb(226 232 240 / 0.8);
}

.border-slate-200\/85 {
  border-color: rgb(226 232 240 / 0.85);
}

.border-slate-200\/90 {
  border-color: rgb(226 232 240 / 0.9);
}

.border-slate-200\/95 {
  border-color: rgb(226 232 240 / 0.95);
}

.border-slate-300 {
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
}

.border-slate-300\/0 {
  border-color: rgb(203 213 225 / 0);
}

.border-slate-300\/10 {
  border-color: rgb(203 213 225 / 0.1);
}

.border-slate-300\/100 {
  border-color: rgb(203 213 225 / 1);
}

.border-slate-300\/15 {
  border-color: rgb(203 213 225 / 0.15);
}

.border-slate-300\/20 {
  border-color: rgb(203 213 225 / 0.2);
}

.border-slate-300\/25 {
  border-color: rgb(203 213 225 / 0.25);
}

.border-slate-300\/30 {
  border-color: rgb(203 213 225 / 0.3);
}

.border-slate-300\/35 {
  border-color: rgb(203 213 225 / 0.35);
}

.border-slate-300\/40 {
  border-color: rgb(203 213 225 / 0.4);
}

.border-slate-300\/45 {
  border-color: rgb(203 213 225 / 0.45);
}

.border-slate-300\/5 {
  border-color: rgb(203 213 225 / 0.05);
}

.border-slate-300\/50 {
  border-color: rgb(203 213 225 / 0.5);
}

.border-slate-300\/55 {
  border-color: rgb(203 213 225 / 0.55);
}

.border-slate-300\/60 {
  border-color: rgb(203 213 225 / 0.6);
}

.border-slate-300\/65 {
  border-color: rgb(203 213 225 / 0.65);
}

.border-slate-300\/70 {
  border-color: rgb(203 213 225 / 0.7);
}

.border-slate-300\/75 {
  border-color: rgb(203 213 225 / 0.75);
}

.border-slate-300\/80 {
  border-color: rgb(203 213 225 / 0.8);
}

.border-slate-300\/85 {
  border-color: rgb(203 213 225 / 0.85);
}

.border-slate-300\/90 {
  border-color: rgb(203 213 225 / 0.9);
}

.border-slate-300\/95 {
  border-color: rgb(203 213 225 / 0.95);
}

.border-slate-400 {
  --tw-border-opacity: 1;
  border-color: rgb(148 163 184 / var(--tw-border-opacity, 1));
}

.border-slate-400\/0 {
  border-color: rgb(148 163 184 / 0);
}

.border-slate-400\/10 {
  border-color: rgb(148 163 184 / 0.1);
}

.border-slate-400\/100 {
  border-color: rgb(148 163 184 / 1);
}

.border-slate-400\/15 {
  border-color: rgb(148 163 184 / 0.15);
}

.border-slate-400\/20 {
  border-color: rgb(148 163 184 / 0.2);
}

.border-slate-400\/25 {
  border-color: rgb(148 163 184 / 0.25);
}

.border-slate-400\/30 {
  border-color: rgb(148 163 184 / 0.3);
}

.border-slate-400\/35 {
  border-color: rgb(148 163 184 / 0.35);
}

.border-slate-400\/40 {
  border-color: rgb(148 163 184 / 0.4);
}

.border-slate-400\/45 {
  border-color: rgb(148 163 184 / 0.45);
}

.border-slate-400\/5 {
  border-color: rgb(148 163 184 / 0.05);
}

.border-slate-400\/50 {
  border-color: rgb(148 163 184 / 0.5);
}

.border-slate-400\/55 {
  border-color: rgb(148 163 184 / 0.55);
}

.border-slate-400\/60 {
  border-color: rgb(148 163 184 / 0.6);
}

.border-slate-400\/65 {
  border-color: rgb(148 163 184 / 0.65);
}

.border-slate-400\/70 {
  border-color: rgb(148 163 184 / 0.7);
}

.border-slate-400\/75 {
  border-color: rgb(148 163 184 / 0.75);
}

.border-slate-400\/80 {
  border-color: rgb(148 163 184 / 0.8);
}

.border-slate-400\/85 {
  border-color: rgb(148 163 184 / 0.85);
}

.border-slate-400\/90 {
  border-color: rgb(148 163 184 / 0.9);
}

.border-slate-400\/95 {
  border-color: rgb(148 163 184 / 0.95);
}

.border-slate-50 {
  --tw-border-opacity: 1;
  border-color: rgb(248 250 252 / var(--tw-border-opacity, 1));
}

.border-slate-50\/0 {
  border-color: rgb(248 250 252 / 0);
}

.border-slate-50\/10 {
  border-color: rgb(248 250 252 / 0.1);
}

.border-slate-50\/100 {
  border-color: rgb(248 250 252 / 1);
}

.border-slate-50\/15 {
  border-color: rgb(248 250 252 / 0.15);
}

.border-slate-50\/20 {
  border-color: rgb(248 250 252 / 0.2);
}

.border-slate-50\/25 {
  border-color: rgb(248 250 252 / 0.25);
}

.border-slate-50\/30 {
  border-color: rgb(248 250 252 / 0.3);
}

.border-slate-50\/35 {
  border-color: rgb(248 250 252 / 0.35);
}

.border-slate-50\/40 {
  border-color: rgb(248 250 252 / 0.4);
}

.border-slate-50\/45 {
  border-color: rgb(248 250 252 / 0.45);
}

.border-slate-50\/5 {
  border-color: rgb(248 250 252 / 0.05);
}

.border-slate-50\/50 {
  border-color: rgb(248 250 252 / 0.5);
}

.border-slate-50\/55 {
  border-color: rgb(248 250 252 / 0.55);
}

.border-slate-50\/60 {
  border-color: rgb(248 250 252 / 0.6);
}

.border-slate-50\/65 {
  border-color: rgb(248 250 252 / 0.65);
}

.border-slate-50\/70 {
  border-color: rgb(248 250 252 / 0.7);
}

.border-slate-50\/75 {
  border-color: rgb(248 250 252 / 0.75);
}

.border-slate-50\/80 {
  border-color: rgb(248 250 252 / 0.8);
}

.border-slate-50\/85 {
  border-color: rgb(248 250 252 / 0.85);
}

.border-slate-50\/90 {
  border-color: rgb(248 250 252 / 0.9);
}

.border-slate-50\/95 {
  border-color: rgb(248 250 252 / 0.95);
}

.border-slate-500 {
  --tw-border-opacity: 1;
  border-color: rgb(100 116 139 / var(--tw-border-opacity, 1));
}

.border-slate-500\/0 {
  border-color: rgb(100 116 139 / 0);
}

.border-slate-500\/10 {
  border-color: rgb(100 116 139 / 0.1);
}

.border-slate-500\/100 {
  border-color: rgb(100 116 139 / 1);
}

.border-slate-500\/15 {
  border-color: rgb(100 116 139 / 0.15);
}

.border-slate-500\/20 {
  border-color: rgb(100 116 139 / 0.2);
}

.border-slate-500\/25 {
  border-color: rgb(100 116 139 / 0.25);
}

.border-slate-500\/30 {
  border-color: rgb(100 116 139 / 0.3);
}

.border-slate-500\/35 {
  border-color: rgb(100 116 139 / 0.35);
}

.border-slate-500\/40 {
  border-color: rgb(100 116 139 / 0.4);
}

.border-slate-500\/45 {
  border-color: rgb(100 116 139 / 0.45);
}

.border-slate-500\/5 {
  border-color: rgb(100 116 139 / 0.05);
}

.border-slate-500\/50 {
  border-color: rgb(100 116 139 / 0.5);
}

.border-slate-500\/55 {
  border-color: rgb(100 116 139 / 0.55);
}

.border-slate-500\/60 {
  border-color: rgb(100 116 139 / 0.6);
}

.border-slate-500\/65 {
  border-color: rgb(100 116 139 / 0.65);
}

.border-slate-500\/70 {
  border-color: rgb(100 116 139 / 0.7);
}

.border-slate-500\/75 {
  border-color: rgb(100 116 139 / 0.75);
}

.border-slate-500\/80 {
  border-color: rgb(100 116 139 / 0.8);
}

.border-slate-500\/85 {
  border-color: rgb(100 116 139 / 0.85);
}

.border-slate-500\/90 {
  border-color: rgb(100 116 139 / 0.9);
}

.border-slate-500\/95 {
  border-color: rgb(100 116 139 / 0.95);
}

.border-slate-600 {
  --tw-border-opacity: 1;
  border-color: rgb(71 85 105 / var(--tw-border-opacity, 1));
}

.border-slate-600\/0 {
  border-color: rgb(71 85 105 / 0);
}

.border-slate-600\/10 {
  border-color: rgb(71 85 105 / 0.1);
}

.border-slate-600\/100 {
  border-color: rgb(71 85 105 / 1);
}

.border-slate-600\/15 {
  border-color: rgb(71 85 105 / 0.15);
}

.border-slate-600\/20 {
  border-color: rgb(71 85 105 / 0.2);
}

.border-slate-600\/25 {
  border-color: rgb(71 85 105 / 0.25);
}

.border-slate-600\/30 {
  border-color: rgb(71 85 105 / 0.3);
}

.border-slate-600\/35 {
  border-color: rgb(71 85 105 / 0.35);
}

.border-slate-600\/40 {
  border-color: rgb(71 85 105 / 0.4);
}

.border-slate-600\/45 {
  border-color: rgb(71 85 105 / 0.45);
}

.border-slate-600\/5 {
  border-color: rgb(71 85 105 / 0.05);
}

.border-slate-600\/50 {
  border-color: rgb(71 85 105 / 0.5);
}

.border-slate-600\/55 {
  border-color: rgb(71 85 105 / 0.55);
}

.border-slate-600\/60 {
  border-color: rgb(71 85 105 / 0.6);
}

.border-slate-600\/65 {
  border-color: rgb(71 85 105 / 0.65);
}

.border-slate-600\/70 {
  border-color: rgb(71 85 105 / 0.7);
}

.border-slate-600\/75 {
  border-color: rgb(71 85 105 / 0.75);
}

.border-slate-600\/80 {
  border-color: rgb(71 85 105 / 0.8);
}

.border-slate-600\/85 {
  border-color: rgb(71 85 105 / 0.85);
}

.border-slate-600\/90 {
  border-color: rgb(71 85 105 / 0.9);
}

.border-slate-600\/95 {
  border-color: rgb(71 85 105 / 0.95);
}

.border-slate-700 {
  --tw-border-opacity: 1;
  border-color: rgb(51 65 85 / var(--tw-border-opacity, 1));
}

.border-slate-700\/0 {
  border-color: rgb(51 65 85 / 0);
}

.border-slate-700\/10 {
  border-color: rgb(51 65 85 / 0.1);
}

.border-slate-700\/100 {
  border-color: rgb(51 65 85 / 1);
}

.border-slate-700\/15 {
  border-color: rgb(51 65 85 / 0.15);
}

.border-slate-700\/20 {
  border-color: rgb(51 65 85 / 0.2);
}

.border-slate-700\/25 {
  border-color: rgb(51 65 85 / 0.25);
}

.border-slate-700\/30 {
  border-color: rgb(51 65 85 / 0.3);
}

.border-slate-700\/35 {
  border-color: rgb(51 65 85 / 0.35);
}

.border-slate-700\/40 {
  border-color: rgb(51 65 85 / 0.4);
}

.border-slate-700\/45 {
  border-color: rgb(51 65 85 / 0.45);
}

.border-slate-700\/5 {
  border-color: rgb(51 65 85 / 0.05);
}

.border-slate-700\/50 {
  border-color: rgb(51 65 85 / 0.5);
}

.border-slate-700\/55 {
  border-color: rgb(51 65 85 / 0.55);
}

.border-slate-700\/60 {
  border-color: rgb(51 65 85 / 0.6);
}

.border-slate-700\/65 {
  border-color: rgb(51 65 85 / 0.65);
}

.border-slate-700\/70 {
  border-color: rgb(51 65 85 / 0.7);
}

.border-slate-700\/75 {
  border-color: rgb(51 65 85 / 0.75);
}

.border-slate-700\/80 {
  border-color: rgb(51 65 85 / 0.8);
}

.border-slate-700\/85 {
  border-color: rgb(51 65 85 / 0.85);
}

.border-slate-700\/90 {
  border-color: rgb(51 65 85 / 0.9);
}

.border-slate-700\/95 {
  border-color: rgb(51 65 85 / 0.95);
}

.border-slate-800 {
  --tw-border-opacity: 1;
  border-color: rgb(30 41 59 / var(--tw-border-opacity, 1));
}

.border-slate-800\/0 {
  border-color: rgb(30 41 59 / 0);
}

.border-slate-800\/10 {
  border-color: rgb(30 41 59 / 0.1);
}

.border-slate-800\/100 {
  border-color: rgb(30 41 59 / 1);
}

.border-slate-800\/15 {
  border-color: rgb(30 41 59 / 0.15);
}

.border-slate-800\/20 {
  border-color: rgb(30 41 59 / 0.2);
}

.border-slate-800\/25 {
  border-color: rgb(30 41 59 / 0.25);
}

.border-slate-800\/30 {
  border-color: rgb(30 41 59 / 0.3);
}

.border-slate-800\/35 {
  border-color: rgb(30 41 59 / 0.35);
}

.border-slate-800\/40 {
  border-color: rgb(30 41 59 / 0.4);
}

.border-slate-800\/45 {
  border-color: rgb(30 41 59 / 0.45);
}

.border-slate-800\/5 {
  border-color: rgb(30 41 59 / 0.05);
}

.border-slate-800\/50 {
  border-color: rgb(30 41 59 / 0.5);
}

.border-slate-800\/55 {
  border-color: rgb(30 41 59 / 0.55);
}

.border-slate-800\/60 {
  border-color: rgb(30 41 59 / 0.6);
}

.border-slate-800\/65 {
  border-color: rgb(30 41 59 / 0.65);
}

.border-slate-800\/70 {
  border-color: rgb(30 41 59 / 0.7);
}

.border-slate-800\/75 {
  border-color: rgb(30 41 59 / 0.75);
}

.border-slate-800\/80 {
  border-color: rgb(30 41 59 / 0.8);
}

.border-slate-800\/85 {
  border-color: rgb(30 41 59 / 0.85);
}

.border-slate-800\/90 {
  border-color: rgb(30 41 59 / 0.9);
}

.border-slate-800\/95 {
  border-color: rgb(30 41 59 / 0.95);
}

.border-slate-900 {
  --tw-border-opacity: 1;
  border-color: rgb(15 23 42 / var(--tw-border-opacity, 1));
}

.border-slate-900\/0 {
  border-color: rgb(15 23 42 / 0);
}

.border-slate-900\/10 {
  border-color: rgb(15 23 42 / 0.1);
}

.border-slate-900\/100 {
  border-color: rgb(15 23 42 / 1);
}

.border-slate-900\/15 {
  border-color: rgb(15 23 42 / 0.15);
}

.border-slate-900\/20 {
  border-color: rgb(15 23 42 / 0.2);
}

.border-slate-900\/25 {
  border-color: rgb(15 23 42 / 0.25);
}

.border-slate-900\/30 {
  border-color: rgb(15 23 42 / 0.3);
}

.border-slate-900\/35 {
  border-color: rgb(15 23 42 / 0.35);
}

.border-slate-900\/40 {
  border-color: rgb(15 23 42 / 0.4);
}

.border-slate-900\/45 {
  border-color: rgb(15 23 42 / 0.45);
}

.border-slate-900\/5 {
  border-color: rgb(15 23 42 / 0.05);
}

.border-slate-900\/50 {
  border-color: rgb(15 23 42 / 0.5);
}

.border-slate-900\/55 {
  border-color: rgb(15 23 42 / 0.55);
}

.border-slate-900\/60 {
  border-color: rgb(15 23 42 / 0.6);
}

.border-slate-900\/65 {
  border-color: rgb(15 23 42 / 0.65);
}

.border-slate-900\/70 {
  border-color: rgb(15 23 42 / 0.7);
}

.border-slate-900\/75 {
  border-color: rgb(15 23 42 / 0.75);
}

.border-slate-900\/80 {
  border-color: rgb(15 23 42 / 0.8);
}

.border-slate-900\/85 {
  border-color: rgb(15 23 42 / 0.85);
}

.border-slate-900\/90 {
  border-color: rgb(15 23 42 / 0.9);
}

.border-slate-900\/95 {
  border-color: rgb(15 23 42 / 0.95);
}

.border-stone-100 {
  --tw-border-opacity: 1;
  border-color: rgb(245 245 244 / var(--tw-border-opacity, 1));
}

.border-stone-100\/0 {
  border-color: rgb(245 245 244 / 0);
}

.border-stone-100\/10 {
  border-color: rgb(245 245 244 / 0.1);
}

.border-stone-100\/100 {
  border-color: rgb(245 245 244 / 1);
}

.border-stone-100\/15 {
  border-color: rgb(245 245 244 / 0.15);
}

.border-stone-100\/20 {
  border-color: rgb(245 245 244 / 0.2);
}

.border-stone-100\/25 {
  border-color: rgb(245 245 244 / 0.25);
}

.border-stone-100\/30 {
  border-color: rgb(245 245 244 / 0.3);
}

.border-stone-100\/35 {
  border-color: rgb(245 245 244 / 0.35);
}

.border-stone-100\/40 {
  border-color: rgb(245 245 244 / 0.4);
}

.border-stone-100\/45 {
  border-color: rgb(245 245 244 / 0.45);
}

.border-stone-100\/5 {
  border-color: rgb(245 245 244 / 0.05);
}

.border-stone-100\/50 {
  border-color: rgb(245 245 244 / 0.5);
}

.border-stone-100\/55 {
  border-color: rgb(245 245 244 / 0.55);
}

.border-stone-100\/60 {
  border-color: rgb(245 245 244 / 0.6);
}

.border-stone-100\/65 {
  border-color: rgb(245 245 244 / 0.65);
}

.border-stone-100\/70 {
  border-color: rgb(245 245 244 / 0.7);
}

.border-stone-100\/75 {
  border-color: rgb(245 245 244 / 0.75);
}

.border-stone-100\/80 {
  border-color: rgb(245 245 244 / 0.8);
}

.border-stone-100\/85 {
  border-color: rgb(245 245 244 / 0.85);
}

.border-stone-100\/90 {
  border-color: rgb(245 245 244 / 0.9);
}

.border-stone-100\/95 {
  border-color: rgb(245 245 244 / 0.95);
}

.border-stone-200 {
  --tw-border-opacity: 1;
  border-color: rgb(231 229 228 / var(--tw-border-opacity, 1));
}

.border-stone-200\/0 {
  border-color: rgb(231 229 228 / 0);
}

.border-stone-200\/10 {
  border-color: rgb(231 229 228 / 0.1);
}

.border-stone-200\/100 {
  border-color: rgb(231 229 228 / 1);
}

.border-stone-200\/15 {
  border-color: rgb(231 229 228 / 0.15);
}

.border-stone-200\/20 {
  border-color: rgb(231 229 228 / 0.2);
}

.border-stone-200\/25 {
  border-color: rgb(231 229 228 / 0.25);
}

.border-stone-200\/30 {
  border-color: rgb(231 229 228 / 0.3);
}

.border-stone-200\/35 {
  border-color: rgb(231 229 228 / 0.35);
}

.border-stone-200\/40 {
  border-color: rgb(231 229 228 / 0.4);
}

.border-stone-200\/45 {
  border-color: rgb(231 229 228 / 0.45);
}

.border-stone-200\/5 {
  border-color: rgb(231 229 228 / 0.05);
}

.border-stone-200\/50 {
  border-color: rgb(231 229 228 / 0.5);
}

.border-stone-200\/55 {
  border-color: rgb(231 229 228 / 0.55);
}

.border-stone-200\/60 {
  border-color: rgb(231 229 228 / 0.6);
}

.border-stone-200\/65 {
  border-color: rgb(231 229 228 / 0.65);
}

.border-stone-200\/70 {
  border-color: rgb(231 229 228 / 0.7);
}

.border-stone-200\/75 {
  border-color: rgb(231 229 228 / 0.75);
}

.border-stone-200\/80 {
  border-color: rgb(231 229 228 / 0.8);
}

.border-stone-200\/85 {
  border-color: rgb(231 229 228 / 0.85);
}

.border-stone-200\/90 {
  border-color: rgb(231 229 228 / 0.9);
}

.border-stone-200\/95 {
  border-color: rgb(231 229 228 / 0.95);
}

.border-stone-300 {
  --tw-border-opacity: 1;
  border-color: rgb(214 211 209 / var(--tw-border-opacity, 1));
}

.border-stone-300\/0 {
  border-color: rgb(214 211 209 / 0);
}

.border-stone-300\/10 {
  border-color: rgb(214 211 209 / 0.1);
}

.border-stone-300\/100 {
  border-color: rgb(214 211 209 / 1);
}

.border-stone-300\/15 {
  border-color: rgb(214 211 209 / 0.15);
}

.border-stone-300\/20 {
  border-color: rgb(214 211 209 / 0.2);
}

.border-stone-300\/25 {
  border-color: rgb(214 211 209 / 0.25);
}

.border-stone-300\/30 {
  border-color: rgb(214 211 209 / 0.3);
}

.border-stone-300\/35 {
  border-color: rgb(214 211 209 / 0.35);
}

.border-stone-300\/40 {
  border-color: rgb(214 211 209 / 0.4);
}

.border-stone-300\/45 {
  border-color: rgb(214 211 209 / 0.45);
}

.border-stone-300\/5 {
  border-color: rgb(214 211 209 / 0.05);
}

.border-stone-300\/50 {
  border-color: rgb(214 211 209 / 0.5);
}

.border-stone-300\/55 {
  border-color: rgb(214 211 209 / 0.55);
}

.border-stone-300\/60 {
  border-color: rgb(214 211 209 / 0.6);
}

.border-stone-300\/65 {
  border-color: rgb(214 211 209 / 0.65);
}

.border-stone-300\/70 {
  border-color: rgb(214 211 209 / 0.7);
}

.border-stone-300\/75 {
  border-color: rgb(214 211 209 / 0.75);
}

.border-stone-300\/80 {
  border-color: rgb(214 211 209 / 0.8);
}

.border-stone-300\/85 {
  border-color: rgb(214 211 209 / 0.85);
}

.border-stone-300\/90 {
  border-color: rgb(214 211 209 / 0.9);
}

.border-stone-300\/95 {
  border-color: rgb(214 211 209 / 0.95);
}

.border-stone-400 {
  --tw-border-opacity: 1;
  border-color: rgb(168 162 158 / var(--tw-border-opacity, 1));
}

.border-stone-400\/0 {
  border-color: rgb(168 162 158 / 0);
}

.border-stone-400\/10 {
  border-color: rgb(168 162 158 / 0.1);
}

.border-stone-400\/100 {
  border-color: rgb(168 162 158 / 1);
}

.border-stone-400\/15 {
  border-color: rgb(168 162 158 / 0.15);
}

.border-stone-400\/20 {
  border-color: rgb(168 162 158 / 0.2);
}

.border-stone-400\/25 {
  border-color: rgb(168 162 158 / 0.25);
}

.border-stone-400\/30 {
  border-color: rgb(168 162 158 / 0.3);
}

.border-stone-400\/35 {
  border-color: rgb(168 162 158 / 0.35);
}

.border-stone-400\/40 {
  border-color: rgb(168 162 158 / 0.4);
}

.border-stone-400\/45 {
  border-color: rgb(168 162 158 / 0.45);
}

.border-stone-400\/5 {
  border-color: rgb(168 162 158 / 0.05);
}

.border-stone-400\/50 {
  border-color: rgb(168 162 158 / 0.5);
}

.border-stone-400\/55 {
  border-color: rgb(168 162 158 / 0.55);
}

.border-stone-400\/60 {
  border-color: rgb(168 162 158 / 0.6);
}

.border-stone-400\/65 {
  border-color: rgb(168 162 158 / 0.65);
}

.border-stone-400\/70 {
  border-color: rgb(168 162 158 / 0.7);
}

.border-stone-400\/75 {
  border-color: rgb(168 162 158 / 0.75);
}

.border-stone-400\/80 {
  border-color: rgb(168 162 158 / 0.8);
}

.border-stone-400\/85 {
  border-color: rgb(168 162 158 / 0.85);
}

.border-stone-400\/90 {
  border-color: rgb(168 162 158 / 0.9);
}

.border-stone-400\/95 {
  border-color: rgb(168 162 158 / 0.95);
}

.border-stone-50 {
  --tw-border-opacity: 1;
  border-color: rgb(250 250 249 / var(--tw-border-opacity, 1));
}

.border-stone-50\/0 {
  border-color: rgb(250 250 249 / 0);
}

.border-stone-50\/10 {
  border-color: rgb(250 250 249 / 0.1);
}

.border-stone-50\/100 {
  border-color: rgb(250 250 249 / 1);
}

.border-stone-50\/15 {
  border-color: rgb(250 250 249 / 0.15);
}

.border-stone-50\/20 {
  border-color: rgb(250 250 249 / 0.2);
}

.border-stone-50\/25 {
  border-color: rgb(250 250 249 / 0.25);
}

.border-stone-50\/30 {
  border-color: rgb(250 250 249 / 0.3);
}

.border-stone-50\/35 {
  border-color: rgb(250 250 249 / 0.35);
}

.border-stone-50\/40 {
  border-color: rgb(250 250 249 / 0.4);
}

.border-stone-50\/45 {
  border-color: rgb(250 250 249 / 0.45);
}

.border-stone-50\/5 {
  border-color: rgb(250 250 249 / 0.05);
}

.border-stone-50\/50 {
  border-color: rgb(250 250 249 / 0.5);
}

.border-stone-50\/55 {
  border-color: rgb(250 250 249 / 0.55);
}

.border-stone-50\/60 {
  border-color: rgb(250 250 249 / 0.6);
}

.border-stone-50\/65 {
  border-color: rgb(250 250 249 / 0.65);
}

.border-stone-50\/70 {
  border-color: rgb(250 250 249 / 0.7);
}

.border-stone-50\/75 {
  border-color: rgb(250 250 249 / 0.75);
}

.border-stone-50\/80 {
  border-color: rgb(250 250 249 / 0.8);
}

.border-stone-50\/85 {
  border-color: rgb(250 250 249 / 0.85);
}

.border-stone-50\/90 {
  border-color: rgb(250 250 249 / 0.9);
}

.border-stone-50\/95 {
  border-color: rgb(250 250 249 / 0.95);
}

.border-stone-500 {
  --tw-border-opacity: 1;
  border-color: rgb(120 113 108 / var(--tw-border-opacity, 1));
}

.border-stone-500\/0 {
  border-color: rgb(120 113 108 / 0);
}

.border-stone-500\/10 {
  border-color: rgb(120 113 108 / 0.1);
}

.border-stone-500\/100 {
  border-color: rgb(120 113 108 / 1);
}

.border-stone-500\/15 {
  border-color: rgb(120 113 108 / 0.15);
}

.border-stone-500\/20 {
  border-color: rgb(120 113 108 / 0.2);
}

.border-stone-500\/25 {
  border-color: rgb(120 113 108 / 0.25);
}

.border-stone-500\/30 {
  border-color: rgb(120 113 108 / 0.3);
}

.border-stone-500\/35 {
  border-color: rgb(120 113 108 / 0.35);
}

.border-stone-500\/40 {
  border-color: rgb(120 113 108 / 0.4);
}

.border-stone-500\/45 {
  border-color: rgb(120 113 108 / 0.45);
}

.border-stone-500\/5 {
  border-color: rgb(120 113 108 / 0.05);
}

.border-stone-500\/50 {
  border-color: rgb(120 113 108 / 0.5);
}

.border-stone-500\/55 {
  border-color: rgb(120 113 108 / 0.55);
}

.border-stone-500\/60 {
  border-color: rgb(120 113 108 / 0.6);
}

.border-stone-500\/65 {
  border-color: rgb(120 113 108 / 0.65);
}

.border-stone-500\/70 {
  border-color: rgb(120 113 108 / 0.7);
}

.border-stone-500\/75 {
  border-color: rgb(120 113 108 / 0.75);
}

.border-stone-500\/80 {
  border-color: rgb(120 113 108 / 0.8);
}

.border-stone-500\/85 {
  border-color: rgb(120 113 108 / 0.85);
}

.border-stone-500\/90 {
  border-color: rgb(120 113 108 / 0.9);
}

.border-stone-500\/95 {
  border-color: rgb(120 113 108 / 0.95);
}

.border-stone-600 {
  --tw-border-opacity: 1;
  border-color: rgb(87 83 78 / var(--tw-border-opacity, 1));
}

.border-stone-600\/0 {
  border-color: rgb(87 83 78 / 0);
}

.border-stone-600\/10 {
  border-color: rgb(87 83 78 / 0.1);
}

.border-stone-600\/100 {
  border-color: rgb(87 83 78 / 1);
}

.border-stone-600\/15 {
  border-color: rgb(87 83 78 / 0.15);
}

.border-stone-600\/20 {
  border-color: rgb(87 83 78 / 0.2);
}

.border-stone-600\/25 {
  border-color: rgb(87 83 78 / 0.25);
}

.border-stone-600\/30 {
  border-color: rgb(87 83 78 / 0.3);
}

.border-stone-600\/35 {
  border-color: rgb(87 83 78 / 0.35);
}

.border-stone-600\/40 {
  border-color: rgb(87 83 78 / 0.4);
}

.border-stone-600\/45 {
  border-color: rgb(87 83 78 / 0.45);
}

.border-stone-600\/5 {
  border-color: rgb(87 83 78 / 0.05);
}

.border-stone-600\/50 {
  border-color: rgb(87 83 78 / 0.5);
}

.border-stone-600\/55 {
  border-color: rgb(87 83 78 / 0.55);
}

.border-stone-600\/60 {
  border-color: rgb(87 83 78 / 0.6);
}

.border-stone-600\/65 {
  border-color: rgb(87 83 78 / 0.65);
}

.border-stone-600\/70 {
  border-color: rgb(87 83 78 / 0.7);
}

.border-stone-600\/75 {
  border-color: rgb(87 83 78 / 0.75);
}

.border-stone-600\/80 {
  border-color: rgb(87 83 78 / 0.8);
}

.border-stone-600\/85 {
  border-color: rgb(87 83 78 / 0.85);
}

.border-stone-600\/90 {
  border-color: rgb(87 83 78 / 0.9);
}

.border-stone-600\/95 {
  border-color: rgb(87 83 78 / 0.95);
}

.border-stone-700 {
  --tw-border-opacity: 1;
  border-color: rgb(68 64 60 / var(--tw-border-opacity, 1));
}

.border-stone-700\/0 {
  border-color: rgb(68 64 60 / 0);
}

.border-stone-700\/10 {
  border-color: rgb(68 64 60 / 0.1);
}

.border-stone-700\/100 {
  border-color: rgb(68 64 60 / 1);
}

.border-stone-700\/15 {
  border-color: rgb(68 64 60 / 0.15);
}

.border-stone-700\/20 {
  border-color: rgb(68 64 60 / 0.2);
}

.border-stone-700\/25 {
  border-color: rgb(68 64 60 / 0.25);
}

.border-stone-700\/30 {
  border-color: rgb(68 64 60 / 0.3);
}

.border-stone-700\/35 {
  border-color: rgb(68 64 60 / 0.35);
}

.border-stone-700\/40 {
  border-color: rgb(68 64 60 / 0.4);
}

.border-stone-700\/45 {
  border-color: rgb(68 64 60 / 0.45);
}

.border-stone-700\/5 {
  border-color: rgb(68 64 60 / 0.05);
}

.border-stone-700\/50 {
  border-color: rgb(68 64 60 / 0.5);
}

.border-stone-700\/55 {
  border-color: rgb(68 64 60 / 0.55);
}

.border-stone-700\/60 {
  border-color: rgb(68 64 60 / 0.6);
}

.border-stone-700\/65 {
  border-color: rgb(68 64 60 / 0.65);
}

.border-stone-700\/70 {
  border-color: rgb(68 64 60 / 0.7);
}

.border-stone-700\/75 {
  border-color: rgb(68 64 60 / 0.75);
}

.border-stone-700\/80 {
  border-color: rgb(68 64 60 / 0.8);
}

.border-stone-700\/85 {
  border-color: rgb(68 64 60 / 0.85);
}

.border-stone-700\/90 {
  border-color: rgb(68 64 60 / 0.9);
}

.border-stone-700\/95 {
  border-color: rgb(68 64 60 / 0.95);
}

.border-stone-800 {
  --tw-border-opacity: 1;
  border-color: rgb(41 37 36 / var(--tw-border-opacity, 1));
}

.border-stone-800\/0 {
  border-color: rgb(41 37 36 / 0);
}

.border-stone-800\/10 {
  border-color: rgb(41 37 36 / 0.1);
}

.border-stone-800\/100 {
  border-color: rgb(41 37 36 / 1);
}

.border-stone-800\/15 {
  border-color: rgb(41 37 36 / 0.15);
}

.border-stone-800\/20 {
  border-color: rgb(41 37 36 / 0.2);
}

.border-stone-800\/25 {
  border-color: rgb(41 37 36 / 0.25);
}

.border-stone-800\/30 {
  border-color: rgb(41 37 36 / 0.3);
}

.border-stone-800\/35 {
  border-color: rgb(41 37 36 / 0.35);
}

.border-stone-800\/40 {
  border-color: rgb(41 37 36 / 0.4);
}

.border-stone-800\/45 {
  border-color: rgb(41 37 36 / 0.45);
}

.border-stone-800\/5 {
  border-color: rgb(41 37 36 / 0.05);
}

.border-stone-800\/50 {
  border-color: rgb(41 37 36 / 0.5);
}

.border-stone-800\/55 {
  border-color: rgb(41 37 36 / 0.55);
}

.border-stone-800\/60 {
  border-color: rgb(41 37 36 / 0.6);
}

.border-stone-800\/65 {
  border-color: rgb(41 37 36 / 0.65);
}

.border-stone-800\/70 {
  border-color: rgb(41 37 36 / 0.7);
}

.border-stone-800\/75 {
  border-color: rgb(41 37 36 / 0.75);
}

.border-stone-800\/80 {
  border-color: rgb(41 37 36 / 0.8);
}

.border-stone-800\/85 {
  border-color: rgb(41 37 36 / 0.85);
}

.border-stone-800\/90 {
  border-color: rgb(41 37 36 / 0.9);
}

.border-stone-800\/95 {
  border-color: rgb(41 37 36 / 0.95);
}

.border-stone-900 {
  --tw-border-opacity: 1;
  border-color: rgb(28 25 23 / var(--tw-border-opacity, 1));
}

.border-stone-900\/0 {
  border-color: rgb(28 25 23 / 0);
}

.border-stone-900\/10 {
  border-color: rgb(28 25 23 / 0.1);
}

.border-stone-900\/100 {
  border-color: rgb(28 25 23 / 1);
}

.border-stone-900\/15 {
  border-color: rgb(28 25 23 / 0.15);
}

.border-stone-900\/20 {
  border-color: rgb(28 25 23 / 0.2);
}

.border-stone-900\/25 {
  border-color: rgb(28 25 23 / 0.25);
}

.border-stone-900\/30 {
  border-color: rgb(28 25 23 / 0.3);
}

.border-stone-900\/35 {
  border-color: rgb(28 25 23 / 0.35);
}

.border-stone-900\/40 {
  border-color: rgb(28 25 23 / 0.4);
}

.border-stone-900\/45 {
  border-color: rgb(28 25 23 / 0.45);
}

.border-stone-900\/5 {
  border-color: rgb(28 25 23 / 0.05);
}

.border-stone-900\/50 {
  border-color: rgb(28 25 23 / 0.5);
}

.border-stone-900\/55 {
  border-color: rgb(28 25 23 / 0.55);
}

.border-stone-900\/60 {
  border-color: rgb(28 25 23 / 0.6);
}

.border-stone-900\/65 {
  border-color: rgb(28 25 23 / 0.65);
}

.border-stone-900\/70 {
  border-color: rgb(28 25 23 / 0.7);
}

.border-stone-900\/75 {
  border-color: rgb(28 25 23 / 0.75);
}

.border-stone-900\/80 {
  border-color: rgb(28 25 23 / 0.8);
}

.border-stone-900\/85 {
  border-color: rgb(28 25 23 / 0.85);
}

.border-stone-900\/90 {
  border-color: rgb(28 25 23 / 0.9);
}

.border-stone-900\/95 {
  border-color: rgb(28 25 23 / 0.95);
}

.border-teal-100 {
  --tw-border-opacity: 1;
  border-color: rgb(204 251 241 / var(--tw-border-opacity, 1));
}

.border-teal-100\/0 {
  border-color: rgb(204 251 241 / 0);
}

.border-teal-100\/10 {
  border-color: rgb(204 251 241 / 0.1);
}

.border-teal-100\/100 {
  border-color: rgb(204 251 241 / 1);
}

.border-teal-100\/15 {
  border-color: rgb(204 251 241 / 0.15);
}

.border-teal-100\/20 {
  border-color: rgb(204 251 241 / 0.2);
}

.border-teal-100\/25 {
  border-color: rgb(204 251 241 / 0.25);
}

.border-teal-100\/30 {
  border-color: rgb(204 251 241 / 0.3);
}

.border-teal-100\/35 {
  border-color: rgb(204 251 241 / 0.35);
}

.border-teal-100\/40 {
  border-color: rgb(204 251 241 / 0.4);
}

.border-teal-100\/45 {
  border-color: rgb(204 251 241 / 0.45);
}

.border-teal-100\/5 {
  border-color: rgb(204 251 241 / 0.05);
}

.border-teal-100\/50 {
  border-color: rgb(204 251 241 / 0.5);
}

.border-teal-100\/55 {
  border-color: rgb(204 251 241 / 0.55);
}

.border-teal-100\/60 {
  border-color: rgb(204 251 241 / 0.6);
}

.border-teal-100\/65 {
  border-color: rgb(204 251 241 / 0.65);
}

.border-teal-100\/70 {
  border-color: rgb(204 251 241 / 0.7);
}

.border-teal-100\/75 {
  border-color: rgb(204 251 241 / 0.75);
}

.border-teal-100\/80 {
  border-color: rgb(204 251 241 / 0.8);
}

.border-teal-100\/85 {
  border-color: rgb(204 251 241 / 0.85);
}

.border-teal-100\/90 {
  border-color: rgb(204 251 241 / 0.9);
}

.border-teal-100\/95 {
  border-color: rgb(204 251 241 / 0.95);
}

.border-teal-200 {
  --tw-border-opacity: 1;
  border-color: rgb(153 246 228 / var(--tw-border-opacity, 1));
}

.border-teal-200\/0 {
  border-color: rgb(153 246 228 / 0);
}

.border-teal-200\/10 {
  border-color: rgb(153 246 228 / 0.1);
}

.border-teal-200\/100 {
  border-color: rgb(153 246 228 / 1);
}

.border-teal-200\/15 {
  border-color: rgb(153 246 228 / 0.15);
}

.border-teal-200\/20 {
  border-color: rgb(153 246 228 / 0.2);
}

.border-teal-200\/25 {
  border-color: rgb(153 246 228 / 0.25);
}

.border-teal-200\/30 {
  border-color: rgb(153 246 228 / 0.3);
}

.border-teal-200\/35 {
  border-color: rgb(153 246 228 / 0.35);
}

.border-teal-200\/40 {
  border-color: rgb(153 246 228 / 0.4);
}

.border-teal-200\/45 {
  border-color: rgb(153 246 228 / 0.45);
}

.border-teal-200\/5 {
  border-color: rgb(153 246 228 / 0.05);
}

.border-teal-200\/50 {
  border-color: rgb(153 246 228 / 0.5);
}

.border-teal-200\/55 {
  border-color: rgb(153 246 228 / 0.55);
}

.border-teal-200\/60 {
  border-color: rgb(153 246 228 / 0.6);
}

.border-teal-200\/65 {
  border-color: rgb(153 246 228 / 0.65);
}

.border-teal-200\/70 {
  border-color: rgb(153 246 228 / 0.7);
}

.border-teal-200\/75 {
  border-color: rgb(153 246 228 / 0.75);
}

.border-teal-200\/80 {
  border-color: rgb(153 246 228 / 0.8);
}

.border-teal-200\/85 {
  border-color: rgb(153 246 228 / 0.85);
}

.border-teal-200\/90 {
  border-color: rgb(153 246 228 / 0.9);
}

.border-teal-200\/95 {
  border-color: rgb(153 246 228 / 0.95);
}

.border-teal-300 {
  --tw-border-opacity: 1;
  border-color: rgb(94 234 212 / var(--tw-border-opacity, 1));
}

.border-teal-300\/0 {
  border-color: rgb(94 234 212 / 0);
}

.border-teal-300\/10 {
  border-color: rgb(94 234 212 / 0.1);
}

.border-teal-300\/100 {
  border-color: rgb(94 234 212 / 1);
}

.border-teal-300\/15 {
  border-color: rgb(94 234 212 / 0.15);
}

.border-teal-300\/20 {
  border-color: rgb(94 234 212 / 0.2);
}

.border-teal-300\/25 {
  border-color: rgb(94 234 212 / 0.25);
}

.border-teal-300\/30 {
  border-color: rgb(94 234 212 / 0.3);
}

.border-teal-300\/35 {
  border-color: rgb(94 234 212 / 0.35);
}

.border-teal-300\/40 {
  border-color: rgb(94 234 212 / 0.4);
}

.border-teal-300\/45 {
  border-color: rgb(94 234 212 / 0.45);
}

.border-teal-300\/5 {
  border-color: rgb(94 234 212 / 0.05);
}

.border-teal-300\/50 {
  border-color: rgb(94 234 212 / 0.5);
}

.border-teal-300\/55 {
  border-color: rgb(94 234 212 / 0.55);
}

.border-teal-300\/60 {
  border-color: rgb(94 234 212 / 0.6);
}

.border-teal-300\/65 {
  border-color: rgb(94 234 212 / 0.65);
}

.border-teal-300\/70 {
  border-color: rgb(94 234 212 / 0.7);
}

.border-teal-300\/75 {
  border-color: rgb(94 234 212 / 0.75);
}

.border-teal-300\/80 {
  border-color: rgb(94 234 212 / 0.8);
}

.border-teal-300\/85 {
  border-color: rgb(94 234 212 / 0.85);
}

.border-teal-300\/90 {
  border-color: rgb(94 234 212 / 0.9);
}

.border-teal-300\/95 {
  border-color: rgb(94 234 212 / 0.95);
}

.border-teal-400 {
  --tw-border-opacity: 1;
  border-color: rgb(45 212 191 / var(--tw-border-opacity, 1));
}

.border-teal-400\/0 {
  border-color: rgb(45 212 191 / 0);
}

.border-teal-400\/10 {
  border-color: rgb(45 212 191 / 0.1);
}

.border-teal-400\/100 {
  border-color: rgb(45 212 191 / 1);
}

.border-teal-400\/15 {
  border-color: rgb(45 212 191 / 0.15);
}

.border-teal-400\/20 {
  border-color: rgb(45 212 191 / 0.2);
}

.border-teal-400\/25 {
  border-color: rgb(45 212 191 / 0.25);
}

.border-teal-400\/30 {
  border-color: rgb(45 212 191 / 0.3);
}

.border-teal-400\/35 {
  border-color: rgb(45 212 191 / 0.35);
}

.border-teal-400\/40 {
  border-color: rgb(45 212 191 / 0.4);
}

.border-teal-400\/45 {
  border-color: rgb(45 212 191 / 0.45);
}

.border-teal-400\/5 {
  border-color: rgb(45 212 191 / 0.05);
}

.border-teal-400\/50 {
  border-color: rgb(45 212 191 / 0.5);
}

.border-teal-400\/55 {
  border-color: rgb(45 212 191 / 0.55);
}

.border-teal-400\/60 {
  border-color: rgb(45 212 191 / 0.6);
}

.border-teal-400\/65 {
  border-color: rgb(45 212 191 / 0.65);
}

.border-teal-400\/70 {
  border-color: rgb(45 212 191 / 0.7);
}

.border-teal-400\/75 {
  border-color: rgb(45 212 191 / 0.75);
}

.border-teal-400\/80 {
  border-color: rgb(45 212 191 / 0.8);
}

.border-teal-400\/85 {
  border-color: rgb(45 212 191 / 0.85);
}

.border-teal-400\/90 {
  border-color: rgb(45 212 191 / 0.9);
}

.border-teal-400\/95 {
  border-color: rgb(45 212 191 / 0.95);
}

.border-teal-50 {
  --tw-border-opacity: 1;
  border-color: rgb(240 253 250 / var(--tw-border-opacity, 1));
}

.border-teal-50\/0 {
  border-color: rgb(240 253 250 / 0);
}

.border-teal-50\/10 {
  border-color: rgb(240 253 250 / 0.1);
}

.border-teal-50\/100 {
  border-color: rgb(240 253 250 / 1);
}

.border-teal-50\/15 {
  border-color: rgb(240 253 250 / 0.15);
}

.border-teal-50\/20 {
  border-color: rgb(240 253 250 / 0.2);
}

.border-teal-50\/25 {
  border-color: rgb(240 253 250 / 0.25);
}

.border-teal-50\/30 {
  border-color: rgb(240 253 250 / 0.3);
}

.border-teal-50\/35 {
  border-color: rgb(240 253 250 / 0.35);
}

.border-teal-50\/40 {
  border-color: rgb(240 253 250 / 0.4);
}

.border-teal-50\/45 {
  border-color: rgb(240 253 250 / 0.45);
}

.border-teal-50\/5 {
  border-color: rgb(240 253 250 / 0.05);
}

.border-teal-50\/50 {
  border-color: rgb(240 253 250 / 0.5);
}

.border-teal-50\/55 {
  border-color: rgb(240 253 250 / 0.55);
}

.border-teal-50\/60 {
  border-color: rgb(240 253 250 / 0.6);
}

.border-teal-50\/65 {
  border-color: rgb(240 253 250 / 0.65);
}

.border-teal-50\/70 {
  border-color: rgb(240 253 250 / 0.7);
}

.border-teal-50\/75 {
  border-color: rgb(240 253 250 / 0.75);
}

.border-teal-50\/80 {
  border-color: rgb(240 253 250 / 0.8);
}

.border-teal-50\/85 {
  border-color: rgb(240 253 250 / 0.85);
}

.border-teal-50\/90 {
  border-color: rgb(240 253 250 / 0.9);
}

.border-teal-50\/95 {
  border-color: rgb(240 253 250 / 0.95);
}

.border-teal-500 {
  --tw-border-opacity: 1;
  border-color: rgb(20 184 166 / var(--tw-border-opacity, 1));
}

.border-teal-500\/0 {
  border-color: rgb(20 184 166 / 0);
}

.border-teal-500\/10 {
  border-color: rgb(20 184 166 / 0.1);
}

.border-teal-500\/100 {
  border-color: rgb(20 184 166 / 1);
}

.border-teal-500\/15 {
  border-color: rgb(20 184 166 / 0.15);
}

.border-teal-500\/20 {
  border-color: rgb(20 184 166 / 0.2);
}

.border-teal-500\/25 {
  border-color: rgb(20 184 166 / 0.25);
}

.border-teal-500\/30 {
  border-color: rgb(20 184 166 / 0.3);
}

.border-teal-500\/35 {
  border-color: rgb(20 184 166 / 0.35);
}

.border-teal-500\/40 {
  border-color: rgb(20 184 166 / 0.4);
}

.border-teal-500\/45 {
  border-color: rgb(20 184 166 / 0.45);
}

.border-teal-500\/5 {
  border-color: rgb(20 184 166 / 0.05);
}

.border-teal-500\/50 {
  border-color: rgb(20 184 166 / 0.5);
}

.border-teal-500\/55 {
  border-color: rgb(20 184 166 / 0.55);
}

.border-teal-500\/60 {
  border-color: rgb(20 184 166 / 0.6);
}

.border-teal-500\/65 {
  border-color: rgb(20 184 166 / 0.65);
}

.border-teal-500\/70 {
  border-color: rgb(20 184 166 / 0.7);
}

.border-teal-500\/75 {
  border-color: rgb(20 184 166 / 0.75);
}

.border-teal-500\/80 {
  border-color: rgb(20 184 166 / 0.8);
}

.border-teal-500\/85 {
  border-color: rgb(20 184 166 / 0.85);
}

.border-teal-500\/90 {
  border-color: rgb(20 184 166 / 0.9);
}

.border-teal-500\/95 {
  border-color: rgb(20 184 166 / 0.95);
}

.border-teal-600 {
  --tw-border-opacity: 1;
  border-color: rgb(13 148 136 / var(--tw-border-opacity, 1));
}

.border-teal-600\/0 {
  border-color: rgb(13 148 136 / 0);
}

.border-teal-600\/10 {
  border-color: rgb(13 148 136 / 0.1);
}

.border-teal-600\/100 {
  border-color: rgb(13 148 136 / 1);
}

.border-teal-600\/15 {
  border-color: rgb(13 148 136 / 0.15);
}

.border-teal-600\/20 {
  border-color: rgb(13 148 136 / 0.2);
}

.border-teal-600\/25 {
  border-color: rgb(13 148 136 / 0.25);
}

.border-teal-600\/30 {
  border-color: rgb(13 148 136 / 0.3);
}

.border-teal-600\/35 {
  border-color: rgb(13 148 136 / 0.35);
}

.border-teal-600\/40 {
  border-color: rgb(13 148 136 / 0.4);
}

.border-teal-600\/45 {
  border-color: rgb(13 148 136 / 0.45);
}

.border-teal-600\/5 {
  border-color: rgb(13 148 136 / 0.05);
}

.border-teal-600\/50 {
  border-color: rgb(13 148 136 / 0.5);
}

.border-teal-600\/55 {
  border-color: rgb(13 148 136 / 0.55);
}

.border-teal-600\/60 {
  border-color: rgb(13 148 136 / 0.6);
}

.border-teal-600\/65 {
  border-color: rgb(13 148 136 / 0.65);
}

.border-teal-600\/70 {
  border-color: rgb(13 148 136 / 0.7);
}

.border-teal-600\/75 {
  border-color: rgb(13 148 136 / 0.75);
}

.border-teal-600\/80 {
  border-color: rgb(13 148 136 / 0.8);
}

.border-teal-600\/85 {
  border-color: rgb(13 148 136 / 0.85);
}

.border-teal-600\/90 {
  border-color: rgb(13 148 136 / 0.9);
}

.border-teal-600\/95 {
  border-color: rgb(13 148 136 / 0.95);
}

.border-teal-700 {
  --tw-border-opacity: 1;
  border-color: rgb(15 118 110 / var(--tw-border-opacity, 1));
}

.border-teal-700\/0 {
  border-color: rgb(15 118 110 / 0);
}

.border-teal-700\/10 {
  border-color: rgb(15 118 110 / 0.1);
}

.border-teal-700\/100 {
  border-color: rgb(15 118 110 / 1);
}

.border-teal-700\/15 {
  border-color: rgb(15 118 110 / 0.15);
}

.border-teal-700\/20 {
  border-color: rgb(15 118 110 / 0.2);
}

.border-teal-700\/25 {
  border-color: rgb(15 118 110 / 0.25);
}

.border-teal-700\/30 {
  border-color: rgb(15 118 110 / 0.3);
}

.border-teal-700\/35 {
  border-color: rgb(15 118 110 / 0.35);
}

.border-teal-700\/40 {
  border-color: rgb(15 118 110 / 0.4);
}

.border-teal-700\/45 {
  border-color: rgb(15 118 110 / 0.45);
}

.border-teal-700\/5 {
  border-color: rgb(15 118 110 / 0.05);
}

.border-teal-700\/50 {
  border-color: rgb(15 118 110 / 0.5);
}

.border-teal-700\/55 {
  border-color: rgb(15 118 110 / 0.55);
}

.border-teal-700\/60 {
  border-color: rgb(15 118 110 / 0.6);
}

.border-teal-700\/65 {
  border-color: rgb(15 118 110 / 0.65);
}

.border-teal-700\/70 {
  border-color: rgb(15 118 110 / 0.7);
}

.border-teal-700\/75 {
  border-color: rgb(15 118 110 / 0.75);
}

.border-teal-700\/80 {
  border-color: rgb(15 118 110 / 0.8);
}

.border-teal-700\/85 {
  border-color: rgb(15 118 110 / 0.85);
}

.border-teal-700\/90 {
  border-color: rgb(15 118 110 / 0.9);
}

.border-teal-700\/95 {
  border-color: rgb(15 118 110 / 0.95);
}

.border-teal-800 {
  --tw-border-opacity: 1;
  border-color: rgb(17 94 89 / var(--tw-border-opacity, 1));
}

.border-teal-800\/0 {
  border-color: rgb(17 94 89 / 0);
}

.border-teal-800\/10 {
  border-color: rgb(17 94 89 / 0.1);
}

.border-teal-800\/100 {
  border-color: rgb(17 94 89 / 1);
}

.border-teal-800\/15 {
  border-color: rgb(17 94 89 / 0.15);
}

.border-teal-800\/20 {
  border-color: rgb(17 94 89 / 0.2);
}

.border-teal-800\/25 {
  border-color: rgb(17 94 89 / 0.25);
}

.border-teal-800\/30 {
  border-color: rgb(17 94 89 / 0.3);
}

.border-teal-800\/35 {
  border-color: rgb(17 94 89 / 0.35);
}

.border-teal-800\/40 {
  border-color: rgb(17 94 89 / 0.4);
}

.border-teal-800\/45 {
  border-color: rgb(17 94 89 / 0.45);
}

.border-teal-800\/5 {
  border-color: rgb(17 94 89 / 0.05);
}

.border-teal-800\/50 {
  border-color: rgb(17 94 89 / 0.5);
}

.border-teal-800\/55 {
  border-color: rgb(17 94 89 / 0.55);
}

.border-teal-800\/60 {
  border-color: rgb(17 94 89 / 0.6);
}

.border-teal-800\/65 {
  border-color: rgb(17 94 89 / 0.65);
}

.border-teal-800\/70 {
  border-color: rgb(17 94 89 / 0.7);
}

.border-teal-800\/75 {
  border-color: rgb(17 94 89 / 0.75);
}

.border-teal-800\/80 {
  border-color: rgb(17 94 89 / 0.8);
}

.border-teal-800\/85 {
  border-color: rgb(17 94 89 / 0.85);
}

.border-teal-800\/90 {
  border-color: rgb(17 94 89 / 0.9);
}

.border-teal-800\/95 {
  border-color: rgb(17 94 89 / 0.95);
}

.border-teal-900 {
  --tw-border-opacity: 1;
  border-color: rgb(19 78 74 / var(--tw-border-opacity, 1));
}

.border-teal-900\/0 {
  border-color: rgb(19 78 74 / 0);
}

.border-teal-900\/10 {
  border-color: rgb(19 78 74 / 0.1);
}

.border-teal-900\/100 {
  border-color: rgb(19 78 74 / 1);
}

.border-teal-900\/15 {
  border-color: rgb(19 78 74 / 0.15);
}

.border-teal-900\/20 {
  border-color: rgb(19 78 74 / 0.2);
}

.border-teal-900\/25 {
  border-color: rgb(19 78 74 / 0.25);
}

.border-teal-900\/30 {
  border-color: rgb(19 78 74 / 0.3);
}

.border-teal-900\/35 {
  border-color: rgb(19 78 74 / 0.35);
}

.border-teal-900\/40 {
  border-color: rgb(19 78 74 / 0.4);
}

.border-teal-900\/45 {
  border-color: rgb(19 78 74 / 0.45);
}

.border-teal-900\/5 {
  border-color: rgb(19 78 74 / 0.05);
}

.border-teal-900\/50 {
  border-color: rgb(19 78 74 / 0.5);
}

.border-teal-900\/55 {
  border-color: rgb(19 78 74 / 0.55);
}

.border-teal-900\/60 {
  border-color: rgb(19 78 74 / 0.6);
}

.border-teal-900\/65 {
  border-color: rgb(19 78 74 / 0.65);
}

.border-teal-900\/70 {
  border-color: rgb(19 78 74 / 0.7);
}

.border-teal-900\/75 {
  border-color: rgb(19 78 74 / 0.75);
}

.border-teal-900\/80 {
  border-color: rgb(19 78 74 / 0.8);
}

.border-teal-900\/85 {
  border-color: rgb(19 78 74 / 0.85);
}

.border-teal-900\/90 {
  border-color: rgb(19 78 74 / 0.9);
}

.border-teal-900\/95 {
  border-color: rgb(19 78 74 / 0.95);
}

.border-transparent {
  border-color: transparent;
}

.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.border-white\/10 {
  border-color: rgb(255 255 255 / 0.1);
}

.border-white\/20 {
  border-color: rgb(255 255 255 / 0.2);
}

.border-white\/60 {
  border-color: rgb(255 255 255 / 0.6);
}

.border-white\/70 {
  border-color: rgb(255 255 255 / 0.7);
}

.border-t-blue-500 {
  --tw-border-opacity: 1;
  border-top-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}

.bg-\[\#16355b\] {
  --tw-bg-opacity: 1;
  background-color: rgb(22 53 91 / var(--tw-bg-opacity, 1));
}

.bg-\[\#f5f4ed\] {
  --tw-bg-opacity: 1;
  background-color: rgb(245 244 237 / var(--tw-bg-opacity, 1));
}

.bg-\[\#faf9f5\] {
  --tw-bg-opacity: 1;
  background-color: rgb(250 249 245 / var(--tw-bg-opacity, 1));
}

.bg-amber-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
}

.bg-amber-100\/0 {
  background-color: rgb(254 243 199 / 0);
}

.bg-amber-100\/10 {
  background-color: rgb(254 243 199 / 0.1);
}

.bg-amber-100\/100 {
  background-color: rgb(254 243 199 / 1);
}

.bg-amber-100\/15 {
  background-color: rgb(254 243 199 / 0.15);
}

.bg-amber-100\/20 {
  background-color: rgb(254 243 199 / 0.2);
}

.bg-amber-100\/25 {
  background-color: rgb(254 243 199 / 0.25);
}

.bg-amber-100\/30 {
  background-color: rgb(254 243 199 / 0.3);
}

.bg-amber-100\/35 {
  background-color: rgb(254 243 199 / 0.35);
}

.bg-amber-100\/40 {
  background-color: rgb(254 243 199 / 0.4);
}

.bg-amber-100\/45 {
  background-color: rgb(254 243 199 / 0.45);
}

.bg-amber-100\/5 {
  background-color: rgb(254 243 199 / 0.05);
}

.bg-amber-100\/50 {
  background-color: rgb(254 243 199 / 0.5);
}

.bg-amber-100\/55 {
  background-color: rgb(254 243 199 / 0.55);
}

.bg-amber-100\/60 {
  background-color: rgb(254 243 199 / 0.6);
}

.bg-amber-100\/65 {
  background-color: rgb(254 243 199 / 0.65);
}

.bg-amber-100\/70 {
  background-color: rgb(254 243 199 / 0.7);
}

.bg-amber-100\/75 {
  background-color: rgb(254 243 199 / 0.75);
}

.bg-amber-100\/80 {
  background-color: rgb(254 243 199 / 0.8);
}

.bg-amber-100\/85 {
  background-color: rgb(254 243 199 / 0.85);
}

.bg-amber-100\/90 {
  background-color: rgb(254 243 199 / 0.9);
}

.bg-amber-100\/95 {
  background-color: rgb(254 243 199 / 0.95);
}

.bg-amber-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(253 230 138 / var(--tw-bg-opacity, 1));
}

.bg-amber-200\/0 {
  background-color: rgb(253 230 138 / 0);
}

.bg-amber-200\/10 {
  background-color: rgb(253 230 138 / 0.1);
}

.bg-amber-200\/100 {
  background-color: rgb(253 230 138 / 1);
}

.bg-amber-200\/15 {
  background-color: rgb(253 230 138 / 0.15);
}

.bg-amber-200\/20 {
  background-color: rgb(253 230 138 / 0.2);
}

.bg-amber-200\/25 {
  background-color: rgb(253 230 138 / 0.25);
}

.bg-amber-200\/30 {
  background-color: rgb(253 230 138 / 0.3);
}

.bg-amber-200\/35 {
  background-color: rgb(253 230 138 / 0.35);
}

.bg-amber-200\/40 {
  background-color: rgb(253 230 138 / 0.4);
}

.bg-amber-200\/45 {
  background-color: rgb(253 230 138 / 0.45);
}

.bg-amber-200\/5 {
  background-color: rgb(253 230 138 / 0.05);
}

.bg-amber-200\/50 {
  background-color: rgb(253 230 138 / 0.5);
}

.bg-amber-200\/55 {
  background-color: rgb(253 230 138 / 0.55);
}

.bg-amber-200\/60 {
  background-color: rgb(253 230 138 / 0.6);
}

.bg-amber-200\/65 {
  background-color: rgb(253 230 138 / 0.65);
}

.bg-amber-200\/70 {
  background-color: rgb(253 230 138 / 0.7);
}

.bg-amber-200\/75 {
  background-color: rgb(253 230 138 / 0.75);
}

.bg-amber-200\/80 {
  background-color: rgb(253 230 138 / 0.8);
}

.bg-amber-200\/85 {
  background-color: rgb(253 230 138 / 0.85);
}

.bg-amber-200\/90 {
  background-color: rgb(253 230 138 / 0.9);
}

.bg-amber-200\/95 {
  background-color: rgb(253 230 138 / 0.95);
}

.bg-amber-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(252 211 77 / var(--tw-bg-opacity, 1));
}

.bg-amber-300\/0 {
  background-color: rgb(252 211 77 / 0);
}

.bg-amber-300\/10 {
  background-color: rgb(252 211 77 / 0.1);
}

.bg-amber-300\/100 {
  background-color: rgb(252 211 77 / 1);
}

.bg-amber-300\/15 {
  background-color: rgb(252 211 77 / 0.15);
}

.bg-amber-300\/20 {
  background-color: rgb(252 211 77 / 0.2);
}

.bg-amber-300\/25 {
  background-color: rgb(252 211 77 / 0.25);
}

.bg-amber-300\/30 {
  background-color: rgb(252 211 77 / 0.3);
}

.bg-amber-300\/35 {
  background-color: rgb(252 211 77 / 0.35);
}

.bg-amber-300\/40 {
  background-color: rgb(252 211 77 / 0.4);
}

.bg-amber-300\/45 {
  background-color: rgb(252 211 77 / 0.45);
}

.bg-amber-300\/5 {
  background-color: rgb(252 211 77 / 0.05);
}

.bg-amber-300\/50 {
  background-color: rgb(252 211 77 / 0.5);
}

.bg-amber-300\/55 {
  background-color: rgb(252 211 77 / 0.55);
}

.bg-amber-300\/60 {
  background-color: rgb(252 211 77 / 0.6);
}

.bg-amber-300\/65 {
  background-color: rgb(252 211 77 / 0.65);
}

.bg-amber-300\/70 {
  background-color: rgb(252 211 77 / 0.7);
}

.bg-amber-300\/75 {
  background-color: rgb(252 211 77 / 0.75);
}

.bg-amber-300\/80 {
  background-color: rgb(252 211 77 / 0.8);
}

.bg-amber-300\/85 {
  background-color: rgb(252 211 77 / 0.85);
}

.bg-amber-300\/90 {
  background-color: rgb(252 211 77 / 0.9);
}

.bg-amber-300\/95 {
  background-color: rgb(252 211 77 / 0.95);
}

.bg-amber-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(251 191 36 / var(--tw-bg-opacity, 1));
}

.bg-amber-400\/0 {
  background-color: rgb(251 191 36 / 0);
}

.bg-amber-400\/10 {
  background-color: rgb(251 191 36 / 0.1);
}

.bg-amber-400\/100 {
  background-color: rgb(251 191 36 / 1);
}

.bg-amber-400\/15 {
  background-color: rgb(251 191 36 / 0.15);
}

.bg-amber-400\/20 {
  background-color: rgb(251 191 36 / 0.2);
}

.bg-amber-400\/25 {
  background-color: rgb(251 191 36 / 0.25);
}

.bg-amber-400\/30 {
  background-color: rgb(251 191 36 / 0.3);
}

.bg-amber-400\/35 {
  background-color: rgb(251 191 36 / 0.35);
}

.bg-amber-400\/40 {
  background-color: rgb(251 191 36 / 0.4);
}

.bg-amber-400\/45 {
  background-color: rgb(251 191 36 / 0.45);
}

.bg-amber-400\/5 {
  background-color: rgb(251 191 36 / 0.05);
}

.bg-amber-400\/50 {
  background-color: rgb(251 191 36 / 0.5);
}

.bg-amber-400\/55 {
  background-color: rgb(251 191 36 / 0.55);
}

.bg-amber-400\/60 {
  background-color: rgb(251 191 36 / 0.6);
}

.bg-amber-400\/65 {
  background-color: rgb(251 191 36 / 0.65);
}

.bg-amber-400\/70 {
  background-color: rgb(251 191 36 / 0.7);
}

.bg-amber-400\/75 {
  background-color: rgb(251 191 36 / 0.75);
}

.bg-amber-400\/80 {
  background-color: rgb(251 191 36 / 0.8);
}

.bg-amber-400\/85 {
  background-color: rgb(251 191 36 / 0.85);
}

.bg-amber-400\/90 {
  background-color: rgb(251 191 36 / 0.9);
}

.bg-amber-400\/95 {
  background-color: rgb(251 191 36 / 0.95);
}

.bg-amber-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
}

.bg-amber-50\/0 {
  background-color: rgb(255 251 235 / 0);
}

.bg-amber-50\/10 {
  background-color: rgb(255 251 235 / 0.1);
}

.bg-amber-50\/100 {
  background-color: rgb(255 251 235 / 1);
}

.bg-amber-50\/15 {
  background-color: rgb(255 251 235 / 0.15);
}

.bg-amber-50\/20 {
  background-color: rgb(255 251 235 / 0.2);
}

.bg-amber-50\/25 {
  background-color: rgb(255 251 235 / 0.25);
}

.bg-amber-50\/30 {
  background-color: rgb(255 251 235 / 0.3);
}

.bg-amber-50\/35 {
  background-color: rgb(255 251 235 / 0.35);
}

.bg-amber-50\/40 {
  background-color: rgb(255 251 235 / 0.4);
}

.bg-amber-50\/45 {
  background-color: rgb(255 251 235 / 0.45);
}

.bg-amber-50\/5 {
  background-color: rgb(255 251 235 / 0.05);
}

.bg-amber-50\/50 {
  background-color: rgb(255 251 235 / 0.5);
}

.bg-amber-50\/55 {
  background-color: rgb(255 251 235 / 0.55);
}

.bg-amber-50\/60 {
  background-color: rgb(255 251 235 / 0.6);
}

.bg-amber-50\/65 {
  background-color: rgb(255 251 235 / 0.65);
}

.bg-amber-50\/70 {
  background-color: rgb(255 251 235 / 0.7);
}

.bg-amber-50\/75 {
  background-color: rgb(255 251 235 / 0.75);
}

.bg-amber-50\/80 {
  background-color: rgb(255 251 235 / 0.8);
}

.bg-amber-50\/85 {
  background-color: rgb(255 251 235 / 0.85);
}

.bg-amber-50\/90 {
  background-color: rgb(255 251 235 / 0.9);
}

.bg-amber-50\/95 {
  background-color: rgb(255 251 235 / 0.95);
}

.bg-amber-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(245 158 11 / var(--tw-bg-opacity, 1));
}

.bg-amber-500\/0 {
  background-color: rgb(245 158 11 / 0);
}

.bg-amber-500\/10 {
  background-color: rgb(245 158 11 / 0.1);
}

.bg-amber-500\/100 {
  background-color: rgb(245 158 11 / 1);
}

.bg-amber-500\/15 {
  background-color: rgb(245 158 11 / 0.15);
}

.bg-amber-500\/20 {
  background-color: rgb(245 158 11 / 0.2);
}

.bg-amber-500\/25 {
  background-color: rgb(245 158 11 / 0.25);
}

.bg-amber-500\/30 {
  background-color: rgb(245 158 11 / 0.3);
}

.bg-amber-500\/35 {
  background-color: rgb(245 158 11 / 0.35);
}

.bg-amber-500\/40 {
  background-color: rgb(245 158 11 / 0.4);
}

.bg-amber-500\/45 {
  background-color: rgb(245 158 11 / 0.45);
}

.bg-amber-500\/5 {
  background-color: rgb(245 158 11 / 0.05);
}

.bg-amber-500\/50 {
  background-color: rgb(245 158 11 / 0.5);
}

.bg-amber-500\/55 {
  background-color: rgb(245 158 11 / 0.55);
}

.bg-amber-500\/60 {
  background-color: rgb(245 158 11 / 0.6);
}

.bg-amber-500\/65 {
  background-color: rgb(245 158 11 / 0.65);
}

.bg-amber-500\/70 {
  background-color: rgb(245 158 11 / 0.7);
}

.bg-amber-500\/75 {
  background-color: rgb(245 158 11 / 0.75);
}

.bg-amber-500\/80 {
  background-color: rgb(245 158 11 / 0.8);
}

.bg-amber-500\/85 {
  background-color: rgb(245 158 11 / 0.85);
}

.bg-amber-500\/90 {
  background-color: rgb(245 158 11 / 0.9);
}

.bg-amber-500\/95 {
  background-color: rgb(245 158 11 / 0.95);
}

.bg-amber-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(217 119 6 / var(--tw-bg-opacity, 1));
}

.bg-amber-600\/0 {
  background-color: rgb(217 119 6 / 0);
}

.bg-amber-600\/10 {
  background-color: rgb(217 119 6 / 0.1);
}

.bg-amber-600\/100 {
  background-color: rgb(217 119 6 / 1);
}

.bg-amber-600\/15 {
  background-color: rgb(217 119 6 / 0.15);
}

.bg-amber-600\/20 {
  background-color: rgb(217 119 6 / 0.2);
}

.bg-amber-600\/25 {
  background-color: rgb(217 119 6 / 0.25);
}

.bg-amber-600\/30 {
  background-color: rgb(217 119 6 / 0.3);
}

.bg-amber-600\/35 {
  background-color: rgb(217 119 6 / 0.35);
}

.bg-amber-600\/40 {
  background-color: rgb(217 119 6 / 0.4);
}

.bg-amber-600\/45 {
  background-color: rgb(217 119 6 / 0.45);
}

.bg-amber-600\/5 {
  background-color: rgb(217 119 6 / 0.05);
}

.bg-amber-600\/50 {
  background-color: rgb(217 119 6 / 0.5);
}

.bg-amber-600\/55 {
  background-color: rgb(217 119 6 / 0.55);
}

.bg-amber-600\/60 {
  background-color: rgb(217 119 6 / 0.6);
}

.bg-amber-600\/65 {
  background-color: rgb(217 119 6 / 0.65);
}

.bg-amber-600\/70 {
  background-color: rgb(217 119 6 / 0.7);
}

.bg-amber-600\/75 {
  background-color: rgb(217 119 6 / 0.75);
}

.bg-amber-600\/80 {
  background-color: rgb(217 119 6 / 0.8);
}

.bg-amber-600\/85 {
  background-color: rgb(217 119 6 / 0.85);
}

.bg-amber-600\/90 {
  background-color: rgb(217 119 6 / 0.9);
}

.bg-amber-600\/95 {
  background-color: rgb(217 119 6 / 0.95);
}

.bg-amber-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(180 83 9 / var(--tw-bg-opacity, 1));
}

.bg-amber-700\/0 {
  background-color: rgb(180 83 9 / 0);
}

.bg-amber-700\/10 {
  background-color: rgb(180 83 9 / 0.1);
}

.bg-amber-700\/100 {
  background-color: rgb(180 83 9 / 1);
}

.bg-amber-700\/15 {
  background-color: rgb(180 83 9 / 0.15);
}

.bg-amber-700\/20 {
  background-color: rgb(180 83 9 / 0.2);
}

.bg-amber-700\/25 {
  background-color: rgb(180 83 9 / 0.25);
}

.bg-amber-700\/30 {
  background-color: rgb(180 83 9 / 0.3);
}

.bg-amber-700\/35 {
  background-color: rgb(180 83 9 / 0.35);
}

.bg-amber-700\/40 {
  background-color: rgb(180 83 9 / 0.4);
}

.bg-amber-700\/45 {
  background-color: rgb(180 83 9 / 0.45);
}

.bg-amber-700\/5 {
  background-color: rgb(180 83 9 / 0.05);
}

.bg-amber-700\/50 {
  background-color: rgb(180 83 9 / 0.5);
}

.bg-amber-700\/55 {
  background-color: rgb(180 83 9 / 0.55);
}

.bg-amber-700\/60 {
  background-color: rgb(180 83 9 / 0.6);
}

.bg-amber-700\/65 {
  background-color: rgb(180 83 9 / 0.65);
}

.bg-amber-700\/70 {
  background-color: rgb(180 83 9 / 0.7);
}

.bg-amber-700\/75 {
  background-color: rgb(180 83 9 / 0.75);
}

.bg-amber-700\/80 {
  background-color: rgb(180 83 9 / 0.8);
}

.bg-amber-700\/85 {
  background-color: rgb(180 83 9 / 0.85);
}

.bg-amber-700\/90 {
  background-color: rgb(180 83 9 / 0.9);
}

.bg-amber-700\/95 {
  background-color: rgb(180 83 9 / 0.95);
}

.bg-amber-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(146 64 14 / var(--tw-bg-opacity, 1));
}

.bg-amber-800\/0 {
  background-color: rgb(146 64 14 / 0);
}

.bg-amber-800\/10 {
  background-color: rgb(146 64 14 / 0.1);
}

.bg-amber-800\/100 {
  background-color: rgb(146 64 14 / 1);
}

.bg-amber-800\/15 {
  background-color: rgb(146 64 14 / 0.15);
}

.bg-amber-800\/20 {
  background-color: rgb(146 64 14 / 0.2);
}

.bg-amber-800\/25 {
  background-color: rgb(146 64 14 / 0.25);
}

.bg-amber-800\/30 {
  background-color: rgb(146 64 14 / 0.3);
}

.bg-amber-800\/35 {
  background-color: rgb(146 64 14 / 0.35);
}

.bg-amber-800\/40 {
  background-color: rgb(146 64 14 / 0.4);
}

.bg-amber-800\/45 {
  background-color: rgb(146 64 14 / 0.45);
}

.bg-amber-800\/5 {
  background-color: rgb(146 64 14 / 0.05);
}

.bg-amber-800\/50 {
  background-color: rgb(146 64 14 / 0.5);
}

.bg-amber-800\/55 {
  background-color: rgb(146 64 14 / 0.55);
}

.bg-amber-800\/60 {
  background-color: rgb(146 64 14 / 0.6);
}

.bg-amber-800\/65 {
  background-color: rgb(146 64 14 / 0.65);
}

.bg-amber-800\/70 {
  background-color: rgb(146 64 14 / 0.7);
}

.bg-amber-800\/75 {
  background-color: rgb(146 64 14 / 0.75);
}

.bg-amber-800\/80 {
  background-color: rgb(146 64 14 / 0.8);
}

.bg-amber-800\/85 {
  background-color: rgb(146 64 14 / 0.85);
}

.bg-amber-800\/90 {
  background-color: rgb(146 64 14 / 0.9);
}

.bg-amber-800\/95 {
  background-color: rgb(146 64 14 / 0.95);
}

.bg-amber-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(120 53 15 / var(--tw-bg-opacity, 1));
}

.bg-amber-900\/0 {
  background-color: rgb(120 53 15 / 0);
}

.bg-amber-900\/10 {
  background-color: rgb(120 53 15 / 0.1);
}

.bg-amber-900\/100 {
  background-color: rgb(120 53 15 / 1);
}

.bg-amber-900\/15 {
  background-color: rgb(120 53 15 / 0.15);
}

.bg-amber-900\/20 {
  background-color: rgb(120 53 15 / 0.2);
}

.bg-amber-900\/25 {
  background-color: rgb(120 53 15 / 0.25);
}

.bg-amber-900\/30 {
  background-color: rgb(120 53 15 / 0.3);
}

.bg-amber-900\/35 {
  background-color: rgb(120 53 15 / 0.35);
}

.bg-amber-900\/40 {
  background-color: rgb(120 53 15 / 0.4);
}

.bg-amber-900\/45 {
  background-color: rgb(120 53 15 / 0.45);
}

.bg-amber-900\/5 {
  background-color: rgb(120 53 15 / 0.05);
}

.bg-amber-900\/50 {
  background-color: rgb(120 53 15 / 0.5);
}

.bg-amber-900\/55 {
  background-color: rgb(120 53 15 / 0.55);
}

.bg-amber-900\/60 {
  background-color: rgb(120 53 15 / 0.6);
}

.bg-amber-900\/65 {
  background-color: rgb(120 53 15 / 0.65);
}

.bg-amber-900\/70 {
  background-color: rgb(120 53 15 / 0.7);
}

.bg-amber-900\/75 {
  background-color: rgb(120 53 15 / 0.75);
}

.bg-amber-900\/80 {
  background-color: rgb(120 53 15 / 0.8);
}

.bg-amber-900\/85 {
  background-color: rgb(120 53 15 / 0.85);
}

.bg-amber-900\/90 {
  background-color: rgb(120 53 15 / 0.9);
}

.bg-amber-900\/95 {
  background-color: rgb(120 53 15 / 0.95);
}

.bg-black\/30 {
  background-color: rgb(0 0 0 / 0.3);
}

.bg-black\/50 {
  background-color: rgb(0 0 0 / 0.5);
}

.bg-blue-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}

.bg-blue-100\/0 {
  background-color: rgb(219 234 254 / 0);
}

.bg-blue-100\/10 {
  background-color: rgb(219 234 254 / 0.1);
}

.bg-blue-100\/100 {
  background-color: rgb(219 234 254 / 1);
}

.bg-blue-100\/15 {
  background-color: rgb(219 234 254 / 0.15);
}

.bg-blue-100\/20 {
  background-color: rgb(219 234 254 / 0.2);
}

.bg-blue-100\/25 {
  background-color: rgb(219 234 254 / 0.25);
}

.bg-blue-100\/30 {
  background-color: rgb(219 234 254 / 0.3);
}

.bg-blue-100\/35 {
  background-color: rgb(219 234 254 / 0.35);
}

.bg-blue-100\/40 {
  background-color: rgb(219 234 254 / 0.4);
}

.bg-blue-100\/45 {
  background-color: rgb(219 234 254 / 0.45);
}

.bg-blue-100\/5 {
  background-color: rgb(219 234 254 / 0.05);
}

.bg-blue-100\/50 {
  background-color: rgb(219 234 254 / 0.5);
}

.bg-blue-100\/55 {
  background-color: rgb(219 234 254 / 0.55);
}

.bg-blue-100\/60 {
  background-color: rgb(219 234 254 / 0.6);
}

.bg-blue-100\/65 {
  background-color: rgb(219 234 254 / 0.65);
}

.bg-blue-100\/70 {
  background-color: rgb(219 234 254 / 0.7);
}

.bg-blue-100\/75 {
  background-color: rgb(219 234 254 / 0.75);
}

.bg-blue-100\/80 {
  background-color: rgb(219 234 254 / 0.8);
}

.bg-blue-100\/85 {
  background-color: rgb(219 234 254 / 0.85);
}

.bg-blue-100\/90 {
  background-color: rgb(219 234 254 / 0.9);
}

.bg-blue-100\/95 {
  background-color: rgb(219 234 254 / 0.95);
}

.bg-blue-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(191 219 254 / var(--tw-bg-opacity, 1));
}

.bg-blue-200\/0 {
  background-color: rgb(191 219 254 / 0);
}

.bg-blue-200\/10 {
  background-color: rgb(191 219 254 / 0.1);
}

.bg-blue-200\/100 {
  background-color: rgb(191 219 254 / 1);
}

.bg-blue-200\/15 {
  background-color: rgb(191 219 254 / 0.15);
}

.bg-blue-200\/20 {
  background-color: rgb(191 219 254 / 0.2);
}

.bg-blue-200\/25 {
  background-color: rgb(191 219 254 / 0.25);
}

.bg-blue-200\/30 {
  background-color: rgb(191 219 254 / 0.3);
}

.bg-blue-200\/35 {
  background-color: rgb(191 219 254 / 0.35);
}

.bg-blue-200\/40 {
  background-color: rgb(191 219 254 / 0.4);
}

.bg-blue-200\/45 {
  background-color: rgb(191 219 254 / 0.45);
}

.bg-blue-200\/5 {
  background-color: rgb(191 219 254 / 0.05);
}

.bg-blue-200\/50 {
  background-color: rgb(191 219 254 / 0.5);
}

.bg-blue-200\/55 {
  background-color: rgb(191 219 254 / 0.55);
}

.bg-blue-200\/60 {
  background-color: rgb(191 219 254 / 0.6);
}

.bg-blue-200\/65 {
  background-color: rgb(191 219 254 / 0.65);
}

.bg-blue-200\/70 {
  background-color: rgb(191 219 254 / 0.7);
}

.bg-blue-200\/75 {
  background-color: rgb(191 219 254 / 0.75);
}

.bg-blue-200\/80 {
  background-color: rgb(191 219 254 / 0.8);
}

.bg-blue-200\/85 {
  background-color: rgb(191 219 254 / 0.85);
}

.bg-blue-200\/90 {
  background-color: rgb(191 219 254 / 0.9);
}

.bg-blue-200\/95 {
  background-color: rgb(191 219 254 / 0.95);
}

.bg-blue-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(147 197 253 / var(--tw-bg-opacity, 1));
}

.bg-blue-300\/0 {
  background-color: rgb(147 197 253 / 0);
}

.bg-blue-300\/10 {
  background-color: rgb(147 197 253 / 0.1);
}

.bg-blue-300\/100 {
  background-color: rgb(147 197 253 / 1);
}

.bg-blue-300\/15 {
  background-color: rgb(147 197 253 / 0.15);
}

.bg-blue-300\/20 {
  background-color: rgb(147 197 253 / 0.2);
}

.bg-blue-300\/25 {
  background-color: rgb(147 197 253 / 0.25);
}

.bg-blue-300\/30 {
  background-color: rgb(147 197 253 / 0.3);
}

.bg-blue-300\/35 {
  background-color: rgb(147 197 253 / 0.35);
}

.bg-blue-300\/40 {
  background-color: rgb(147 197 253 / 0.4);
}

.bg-blue-300\/45 {
  background-color: rgb(147 197 253 / 0.45);
}

.bg-blue-300\/5 {
  background-color: rgb(147 197 253 / 0.05);
}

.bg-blue-300\/50 {
  background-color: rgb(147 197 253 / 0.5);
}

.bg-blue-300\/55 {
  background-color: rgb(147 197 253 / 0.55);
}

.bg-blue-300\/60 {
  background-color: rgb(147 197 253 / 0.6);
}

.bg-blue-300\/65 {
  background-color: rgb(147 197 253 / 0.65);
}

.bg-blue-300\/70 {
  background-color: rgb(147 197 253 / 0.7);
}

.bg-blue-300\/75 {
  background-color: rgb(147 197 253 / 0.75);
}

.bg-blue-300\/80 {
  background-color: rgb(147 197 253 / 0.8);
}

.bg-blue-300\/85 {
  background-color: rgb(147 197 253 / 0.85);
}

.bg-blue-300\/90 {
  background-color: rgb(147 197 253 / 0.9);
}

.bg-blue-300\/95 {
  background-color: rgb(147 197 253 / 0.95);
}

.bg-blue-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(96 165 250 / var(--tw-bg-opacity, 1));
}

.bg-blue-400\/0 {
  background-color: rgb(96 165 250 / 0);
}

.bg-blue-400\/10 {
  background-color: rgb(96 165 250 / 0.1);
}

.bg-blue-400\/100 {
  background-color: rgb(96 165 250 / 1);
}

.bg-blue-400\/15 {
  background-color: rgb(96 165 250 / 0.15);
}

.bg-blue-400\/20 {
  background-color: rgb(96 165 250 / 0.2);
}

.bg-blue-400\/25 {
  background-color: rgb(96 165 250 / 0.25);
}

.bg-blue-400\/30 {
  background-color: rgb(96 165 250 / 0.3);
}

.bg-blue-400\/35 {
  background-color: rgb(96 165 250 / 0.35);
}

.bg-blue-400\/40 {
  background-color: rgb(96 165 250 / 0.4);
}

.bg-blue-400\/45 {
  background-color: rgb(96 165 250 / 0.45);
}

.bg-blue-400\/5 {
  background-color: rgb(96 165 250 / 0.05);
}

.bg-blue-400\/50 {
  background-color: rgb(96 165 250 / 0.5);
}

.bg-blue-400\/55 {
  background-color: rgb(96 165 250 / 0.55);
}

.bg-blue-400\/60 {
  background-color: rgb(96 165 250 / 0.6);
}

.bg-blue-400\/65 {
  background-color: rgb(96 165 250 / 0.65);
}

.bg-blue-400\/70 {
  background-color: rgb(96 165 250 / 0.7);
}

.bg-blue-400\/75 {
  background-color: rgb(96 165 250 / 0.75);
}

.bg-blue-400\/80 {
  background-color: rgb(96 165 250 / 0.8);
}

.bg-blue-400\/85 {
  background-color: rgb(96 165 250 / 0.85);
}

.bg-blue-400\/90 {
  background-color: rgb(96 165 250 / 0.9);
}

.bg-blue-400\/95 {
  background-color: rgb(96 165 250 / 0.95);
}

.bg-blue-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}

.bg-blue-50\/0 {
  background-color: rgb(239 246 255 / 0);
}

.bg-blue-50\/10 {
  background-color: rgb(239 246 255 / 0.1);
}

.bg-blue-50\/100 {
  background-color: rgb(239 246 255 / 1);
}

.bg-blue-50\/15 {
  background-color: rgb(239 246 255 / 0.15);
}

.bg-blue-50\/20 {
  background-color: rgb(239 246 255 / 0.2);
}

.bg-blue-50\/25 {
  background-color: rgb(239 246 255 / 0.25);
}

.bg-blue-50\/30 {
  background-color: rgb(239 246 255 / 0.3);
}

.bg-blue-50\/35 {
  background-color: rgb(239 246 255 / 0.35);
}

.bg-blue-50\/40 {
  background-color: rgb(239 246 255 / 0.4);
}

.bg-blue-50\/45 {
  background-color: rgb(239 246 255 / 0.45);
}

.bg-blue-50\/5 {
  background-color: rgb(239 246 255 / 0.05);
}

.bg-blue-50\/50 {
  background-color: rgb(239 246 255 / 0.5);
}

.bg-blue-50\/55 {
  background-color: rgb(239 246 255 / 0.55);
}

.bg-blue-50\/60 {
  background-color: rgb(239 246 255 / 0.6);
}

.bg-blue-50\/65 {
  background-color: rgb(239 246 255 / 0.65);
}

.bg-blue-50\/70 {
  background-color: rgb(239 246 255 / 0.7);
}

.bg-blue-50\/75 {
  background-color: rgb(239 246 255 / 0.75);
}

.bg-blue-50\/80 {
  background-color: rgb(239 246 255 / 0.8);
}

.bg-blue-50\/85 {
  background-color: rgb(239 246 255 / 0.85);
}

.bg-blue-50\/90 {
  background-color: rgb(239 246 255 / 0.9);
}

.bg-blue-50\/95 {
  background-color: rgb(239 246 255 / 0.95);
}

.bg-blue-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}

.bg-blue-500\/0 {
  background-color: rgb(59 130 246 / 0);
}

.bg-blue-500\/10 {
  background-color: rgb(59 130 246 / 0.1);
}

.bg-blue-500\/100 {
  background-color: rgb(59 130 246 / 1);
}

.bg-blue-500\/15 {
  background-color: rgb(59 130 246 / 0.15);
}

.bg-blue-500\/20 {
  background-color: rgb(59 130 246 / 0.2);
}

.bg-blue-500\/25 {
  background-color: rgb(59 130 246 / 0.25);
}

.bg-blue-500\/30 {
  background-color: rgb(59 130 246 / 0.3);
}

.bg-blue-500\/35 {
  background-color: rgb(59 130 246 / 0.35);
}

.bg-blue-500\/40 {
  background-color: rgb(59 130 246 / 0.4);
}

.bg-blue-500\/45 {
  background-color: rgb(59 130 246 / 0.45);
}

.bg-blue-500\/5 {
  background-color: rgb(59 130 246 / 0.05);
}

.bg-blue-500\/50 {
  background-color: rgb(59 130 246 / 0.5);
}

.bg-blue-500\/55 {
  background-color: rgb(59 130 246 / 0.55);
}

.bg-blue-500\/60 {
  background-color: rgb(59 130 246 / 0.6);
}

.bg-blue-500\/65 {
  background-color: rgb(59 130 246 / 0.65);
}

.bg-blue-500\/70 {
  background-color: rgb(59 130 246 / 0.7);
}

.bg-blue-500\/75 {
  background-color: rgb(59 130 246 / 0.75);
}

.bg-blue-500\/80 {
  background-color: rgb(59 130 246 / 0.8);
}

.bg-blue-500\/85 {
  background-color: rgb(59 130 246 / 0.85);
}

.bg-blue-500\/90 {
  background-color: rgb(59 130 246 / 0.9);
}

.bg-blue-500\/95 {
  background-color: rgb(59 130 246 / 0.95);
}

.bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}

.bg-blue-600\/0 {
  background-color: rgb(37 99 235 / 0);
}

.bg-blue-600\/10 {
  background-color: rgb(37 99 235 / 0.1);
}

.bg-blue-600\/100 {
  background-color: rgb(37 99 235 / 1);
}

.bg-blue-600\/15 {
  background-color: rgb(37 99 235 / 0.15);
}

.bg-blue-600\/20 {
  background-color: rgb(37 99 235 / 0.2);
}

.bg-blue-600\/25 {
  background-color: rgb(37 99 235 / 0.25);
}

.bg-blue-600\/30 {
  background-color: rgb(37 99 235 / 0.3);
}

.bg-blue-600\/35 {
  background-color: rgb(37 99 235 / 0.35);
}

.bg-blue-600\/40 {
  background-color: rgb(37 99 235 / 0.4);
}

.bg-blue-600\/45 {
  background-color: rgb(37 99 235 / 0.45);
}

.bg-blue-600\/5 {
  background-color: rgb(37 99 235 / 0.05);
}

.bg-blue-600\/50 {
  background-color: rgb(37 99 235 / 0.5);
}

.bg-blue-600\/55 {
  background-color: rgb(37 99 235 / 0.55);
}

.bg-blue-600\/60 {
  background-color: rgb(37 99 235 / 0.6);
}

.bg-blue-600\/65 {
  background-color: rgb(37 99 235 / 0.65);
}

.bg-blue-600\/70 {
  background-color: rgb(37 99 235 / 0.7);
}

.bg-blue-600\/75 {
  background-color: rgb(37 99 235 / 0.75);
}

.bg-blue-600\/80 {
  background-color: rgb(37 99 235 / 0.8);
}

.bg-blue-600\/85 {
  background-color: rgb(37 99 235 / 0.85);
}

.bg-blue-600\/90 {
  background-color: rgb(37 99 235 / 0.9);
}

.bg-blue-600\/95 {
  background-color: rgb(37 99 235 / 0.95);
}

.bg-blue-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}

.bg-blue-700\/0 {
  background-color: rgb(29 78 216 / 0);
}

.bg-blue-700\/10 {
  background-color: rgb(29 78 216 / 0.1);
}

.bg-blue-700\/100 {
  background-color: rgb(29 78 216 / 1);
}

.bg-blue-700\/15 {
  background-color: rgb(29 78 216 / 0.15);
}

.bg-blue-700\/20 {
  background-color: rgb(29 78 216 / 0.2);
}

.bg-blue-700\/25 {
  background-color: rgb(29 78 216 / 0.25);
}

.bg-blue-700\/30 {
  background-color: rgb(29 78 216 / 0.3);
}

.bg-blue-700\/35 {
  background-color: rgb(29 78 216 / 0.35);
}

.bg-blue-700\/40 {
  background-color: rgb(29 78 216 / 0.4);
}

.bg-blue-700\/45 {
  background-color: rgb(29 78 216 / 0.45);
}

.bg-blue-700\/5 {
  background-color: rgb(29 78 216 / 0.05);
}

.bg-blue-700\/50 {
  background-color: rgb(29 78 216 / 0.5);
}

.bg-blue-700\/55 {
  background-color: rgb(29 78 216 / 0.55);
}

.bg-blue-700\/60 {
  background-color: rgb(29 78 216 / 0.6);
}

.bg-blue-700\/65 {
  background-color: rgb(29 78 216 / 0.65);
}

.bg-blue-700\/70 {
  background-color: rgb(29 78 216 / 0.7);
}

.bg-blue-700\/75 {
  background-color: rgb(29 78 216 / 0.75);
}

.bg-blue-700\/80 {
  background-color: rgb(29 78 216 / 0.8);
}

.bg-blue-700\/85 {
  background-color: rgb(29 78 216 / 0.85);
}

.bg-blue-700\/90 {
  background-color: rgb(29 78 216 / 0.9);
}

.bg-blue-700\/95 {
  background-color: rgb(29 78 216 / 0.95);
}

.bg-blue-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(30 64 175 / var(--tw-bg-opacity, 1));
}

.bg-blue-800\/0 {
  background-color: rgb(30 64 175 / 0);
}

.bg-blue-800\/10 {
  background-color: rgb(30 64 175 / 0.1);
}

.bg-blue-800\/100 {
  background-color: rgb(30 64 175 / 1);
}

.bg-blue-800\/15 {
  background-color: rgb(30 64 175 / 0.15);
}

.bg-blue-800\/20 {
  background-color: rgb(30 64 175 / 0.2);
}

.bg-blue-800\/25 {
  background-color: rgb(30 64 175 / 0.25);
}

.bg-blue-800\/30 {
  background-color: rgb(30 64 175 / 0.3);
}

.bg-blue-800\/35 {
  background-color: rgb(30 64 175 / 0.35);
}

.bg-blue-800\/40 {
  background-color: rgb(30 64 175 / 0.4);
}

.bg-blue-800\/45 {
  background-color: rgb(30 64 175 / 0.45);
}

.bg-blue-800\/5 {
  background-color: rgb(30 64 175 / 0.05);
}

.bg-blue-800\/50 {
  background-color: rgb(30 64 175 / 0.5);
}

.bg-blue-800\/55 {
  background-color: rgb(30 64 175 / 0.55);
}

.bg-blue-800\/60 {
  background-color: rgb(30 64 175 / 0.6);
}

.bg-blue-800\/65 {
  background-color: rgb(30 64 175 / 0.65);
}

.bg-blue-800\/70 {
  background-color: rgb(30 64 175 / 0.7);
}

.bg-blue-800\/75 {
  background-color: rgb(30 64 175 / 0.75);
}

.bg-blue-800\/80 {
  background-color: rgb(30 64 175 / 0.8);
}

.bg-blue-800\/85 {
  background-color: rgb(30 64 175 / 0.85);
}

.bg-blue-800\/90 {
  background-color: rgb(30 64 175 / 0.9);
}

.bg-blue-800\/95 {
  background-color: rgb(30 64 175 / 0.95);
}

.bg-blue-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(30 58 138 / var(--tw-bg-opacity, 1));
}

.bg-blue-900\/0 {
  background-color: rgb(30 58 138 / 0);
}

.bg-blue-900\/10 {
  background-color: rgb(30 58 138 / 0.1);
}

.bg-blue-900\/100 {
  background-color: rgb(30 58 138 / 1);
}

.bg-blue-900\/15 {
  background-color: rgb(30 58 138 / 0.15);
}

.bg-blue-900\/20 {
  background-color: rgb(30 58 138 / 0.2);
}

.bg-blue-900\/25 {
  background-color: rgb(30 58 138 / 0.25);
}

.bg-blue-900\/30 {
  background-color: rgb(30 58 138 / 0.3);
}

.bg-blue-900\/35 {
  background-color: rgb(30 58 138 / 0.35);
}

.bg-blue-900\/40 {
  background-color: rgb(30 58 138 / 0.4);
}

.bg-blue-900\/45 {
  background-color: rgb(30 58 138 / 0.45);
}

.bg-blue-900\/5 {
  background-color: rgb(30 58 138 / 0.05);
}

.bg-blue-900\/50 {
  background-color: rgb(30 58 138 / 0.5);
}

.bg-blue-900\/55 {
  background-color: rgb(30 58 138 / 0.55);
}

.bg-blue-900\/60 {
  background-color: rgb(30 58 138 / 0.6);
}

.bg-blue-900\/65 {
  background-color: rgb(30 58 138 / 0.65);
}

.bg-blue-900\/70 {
  background-color: rgb(30 58 138 / 0.7);
}

.bg-blue-900\/75 {
  background-color: rgb(30 58 138 / 0.75);
}

.bg-blue-900\/80 {
  background-color: rgb(30 58 138 / 0.8);
}

.bg-blue-900\/85 {
  background-color: rgb(30 58 138 / 0.85);
}

.bg-blue-900\/90 {
  background-color: rgb(30 58 138 / 0.9);
}

.bg-blue-900\/95 {
  background-color: rgb(30 58 138 / 0.95);
}

.bg-emerald-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(209 250 229 / var(--tw-bg-opacity, 1));
}

.bg-emerald-100\/0 {
  background-color: rgb(209 250 229 / 0);
}

.bg-emerald-100\/10 {
  background-color: rgb(209 250 229 / 0.1);
}

.bg-emerald-100\/100 {
  background-color: rgb(209 250 229 / 1);
}

.bg-emerald-100\/15 {
  background-color: rgb(209 250 229 / 0.15);
}

.bg-emerald-100\/20 {
  background-color: rgb(209 250 229 / 0.2);
}

.bg-emerald-100\/25 {
  background-color: rgb(209 250 229 / 0.25);
}

.bg-emerald-100\/30 {
  background-color: rgb(209 250 229 / 0.3);
}

.bg-emerald-100\/35 {
  background-color: rgb(209 250 229 / 0.35);
}

.bg-emerald-100\/40 {
  background-color: rgb(209 250 229 / 0.4);
}

.bg-emerald-100\/45 {
  background-color: rgb(209 250 229 / 0.45);
}

.bg-emerald-100\/5 {
  background-color: rgb(209 250 229 / 0.05);
}

.bg-emerald-100\/50 {
  background-color: rgb(209 250 229 / 0.5);
}

.bg-emerald-100\/55 {
  background-color: rgb(209 250 229 / 0.55);
}

.bg-emerald-100\/60 {
  background-color: rgb(209 250 229 / 0.6);
}

.bg-emerald-100\/65 {
  background-color: rgb(209 250 229 / 0.65);
}

.bg-emerald-100\/70 {
  background-color: rgb(209 250 229 / 0.7);
}

.bg-emerald-100\/75 {
  background-color: rgb(209 250 229 / 0.75);
}

.bg-emerald-100\/80 {
  background-color: rgb(209 250 229 / 0.8);
}

.bg-emerald-100\/85 {
  background-color: rgb(209 250 229 / 0.85);
}

.bg-emerald-100\/90 {
  background-color: rgb(209 250 229 / 0.9);
}

.bg-emerald-100\/95 {
  background-color: rgb(209 250 229 / 0.95);
}

.bg-emerald-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(167 243 208 / var(--tw-bg-opacity, 1));
}

.bg-emerald-200\/0 {
  background-color: rgb(167 243 208 / 0);
}

.bg-emerald-200\/10 {
  background-color: rgb(167 243 208 / 0.1);
}

.bg-emerald-200\/100 {
  background-color: rgb(167 243 208 / 1);
}

.bg-emerald-200\/15 {
  background-color: rgb(167 243 208 / 0.15);
}

.bg-emerald-200\/20 {
  background-color: rgb(167 243 208 / 0.2);
}

.bg-emerald-200\/25 {
  background-color: rgb(167 243 208 / 0.25);
}

.bg-emerald-200\/30 {
  background-color: rgb(167 243 208 / 0.3);
}

.bg-emerald-200\/35 {
  background-color: rgb(167 243 208 / 0.35);
}

.bg-emerald-200\/40 {
  background-color: rgb(167 243 208 / 0.4);
}

.bg-emerald-200\/45 {
  background-color: rgb(167 243 208 / 0.45);
}

.bg-emerald-200\/5 {
  background-color: rgb(167 243 208 / 0.05);
}

.bg-emerald-200\/50 {
  background-color: rgb(167 243 208 / 0.5);
}

.bg-emerald-200\/55 {
  background-color: rgb(167 243 208 / 0.55);
}

.bg-emerald-200\/60 {
  background-color: rgb(167 243 208 / 0.6);
}

.bg-emerald-200\/65 {
  background-color: rgb(167 243 208 / 0.65);
}

.bg-emerald-200\/70 {
  background-color: rgb(167 243 208 / 0.7);
}

.bg-emerald-200\/75 {
  background-color: rgb(167 243 208 / 0.75);
}

.bg-emerald-200\/80 {
  background-color: rgb(167 243 208 / 0.8);
}

.bg-emerald-200\/85 {
  background-color: rgb(167 243 208 / 0.85);
}

.bg-emerald-200\/90 {
  background-color: rgb(167 243 208 / 0.9);
}

.bg-emerald-200\/95 {
  background-color: rgb(167 243 208 / 0.95);
}

.bg-emerald-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(110 231 183 / var(--tw-bg-opacity, 1));
}

.bg-emerald-300\/0 {
  background-color: rgb(110 231 183 / 0);
}

.bg-emerald-300\/10 {
  background-color: rgb(110 231 183 / 0.1);
}

.bg-emerald-300\/100 {
  background-color: rgb(110 231 183 / 1);
}

.bg-emerald-300\/15 {
  background-color: rgb(110 231 183 / 0.15);
}

.bg-emerald-300\/20 {
  background-color: rgb(110 231 183 / 0.2);
}

.bg-emerald-300\/25 {
  background-color: rgb(110 231 183 / 0.25);
}

.bg-emerald-300\/30 {
  background-color: rgb(110 231 183 / 0.3);
}

.bg-emerald-300\/35 {
  background-color: rgb(110 231 183 / 0.35);
}

.bg-emerald-300\/40 {
  background-color: rgb(110 231 183 / 0.4);
}

.bg-emerald-300\/45 {
  background-color: rgb(110 231 183 / 0.45);
}

.bg-emerald-300\/5 {
  background-color: rgb(110 231 183 / 0.05);
}

.bg-emerald-300\/50 {
  background-color: rgb(110 231 183 / 0.5);
}

.bg-emerald-300\/55 {
  background-color: rgb(110 231 183 / 0.55);
}

.bg-emerald-300\/60 {
  background-color: rgb(110 231 183 / 0.6);
}

.bg-emerald-300\/65 {
  background-color: rgb(110 231 183 / 0.65);
}

.bg-emerald-300\/70 {
  background-color: rgb(110 231 183 / 0.7);
}

.bg-emerald-300\/75 {
  background-color: rgb(110 231 183 / 0.75);
}

.bg-emerald-300\/80 {
  background-color: rgb(110 231 183 / 0.8);
}

.bg-emerald-300\/85 {
  background-color: rgb(110 231 183 / 0.85);
}

.bg-emerald-300\/90 {
  background-color: rgb(110 231 183 / 0.9);
}

.bg-emerald-300\/95 {
  background-color: rgb(110 231 183 / 0.95);
}

.bg-emerald-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(52 211 153 / var(--tw-bg-opacity, 1));
}

.bg-emerald-400\/0 {
  background-color: rgb(52 211 153 / 0);
}

.bg-emerald-400\/10 {
  background-color: rgb(52 211 153 / 0.1);
}

.bg-emerald-400\/100 {
  background-color: rgb(52 211 153 / 1);
}

.bg-emerald-400\/15 {
  background-color: rgb(52 211 153 / 0.15);
}

.bg-emerald-400\/20 {
  background-color: rgb(52 211 153 / 0.2);
}

.bg-emerald-400\/25 {
  background-color: rgb(52 211 153 / 0.25);
}

.bg-emerald-400\/30 {
  background-color: rgb(52 211 153 / 0.3);
}

.bg-emerald-400\/35 {
  background-color: rgb(52 211 153 / 0.35);
}

.bg-emerald-400\/40 {
  background-color: rgb(52 211 153 / 0.4);
}

.bg-emerald-400\/45 {
  background-color: rgb(52 211 153 / 0.45);
}

.bg-emerald-400\/5 {
  background-color: rgb(52 211 153 / 0.05);
}

.bg-emerald-400\/50 {
  background-color: rgb(52 211 153 / 0.5);
}

.bg-emerald-400\/55 {
  background-color: rgb(52 211 153 / 0.55);
}

.bg-emerald-400\/60 {
  background-color: rgb(52 211 153 / 0.6);
}

.bg-emerald-400\/65 {
  background-color: rgb(52 211 153 / 0.65);
}

.bg-emerald-400\/70 {
  background-color: rgb(52 211 153 / 0.7);
}

.bg-emerald-400\/75 {
  background-color: rgb(52 211 153 / 0.75);
}

.bg-emerald-400\/80 {
  background-color: rgb(52 211 153 / 0.8);
}

.bg-emerald-400\/85 {
  background-color: rgb(52 211 153 / 0.85);
}

.bg-emerald-400\/90 {
  background-color: rgb(52 211 153 / 0.9);
}

.bg-emerald-400\/95 {
  background-color: rgb(52 211 153 / 0.95);
}

.bg-emerald-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(236 253 245 / var(--tw-bg-opacity, 1));
}

.bg-emerald-50\/0 {
  background-color: rgb(236 253 245 / 0);
}

.bg-emerald-50\/10 {
  background-color: rgb(236 253 245 / 0.1);
}

.bg-emerald-50\/100 {
  background-color: rgb(236 253 245 / 1);
}

.bg-emerald-50\/15 {
  background-color: rgb(236 253 245 / 0.15);
}

.bg-emerald-50\/20 {
  background-color: rgb(236 253 245 / 0.2);
}

.bg-emerald-50\/25 {
  background-color: rgb(236 253 245 / 0.25);
}

.bg-emerald-50\/30 {
  background-color: rgb(236 253 245 / 0.3);
}

.bg-emerald-50\/35 {
  background-color: rgb(236 253 245 / 0.35);
}

.bg-emerald-50\/40 {
  background-color: rgb(236 253 245 / 0.4);
}

.bg-emerald-50\/45 {
  background-color: rgb(236 253 245 / 0.45);
}

.bg-emerald-50\/5 {
  background-color: rgb(236 253 245 / 0.05);
}

.bg-emerald-50\/50 {
  background-color: rgb(236 253 245 / 0.5);
}

.bg-emerald-50\/55 {
  background-color: rgb(236 253 245 / 0.55);
}

.bg-emerald-50\/60 {
  background-color: rgb(236 253 245 / 0.6);
}

.bg-emerald-50\/65 {
  background-color: rgb(236 253 245 / 0.65);
}

.bg-emerald-50\/70 {
  background-color: rgb(236 253 245 / 0.7);
}

.bg-emerald-50\/75 {
  background-color: rgb(236 253 245 / 0.75);
}

.bg-emerald-50\/80 {
  background-color: rgb(236 253 245 / 0.8);
}

.bg-emerald-50\/85 {
  background-color: rgb(236 253 245 / 0.85);
}

.bg-emerald-50\/90 {
  background-color: rgb(236 253 245 / 0.9);
}

.bg-emerald-50\/95 {
  background-color: rgb(236 253 245 / 0.95);
}

.bg-emerald-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(16 185 129 / var(--tw-bg-opacity, 1));
}

.bg-emerald-500\/0 {
  background-color: rgb(16 185 129 / 0);
}

.bg-emerald-500\/10 {
  background-color: rgb(16 185 129 / 0.1);
}

.bg-emerald-500\/100 {
  background-color: rgb(16 185 129 / 1);
}

.bg-emerald-500\/15 {
  background-color: rgb(16 185 129 / 0.15);
}

.bg-emerald-500\/20 {
  background-color: rgb(16 185 129 / 0.2);
}

.bg-emerald-500\/25 {
  background-color: rgb(16 185 129 / 0.25);
}

.bg-emerald-500\/30 {
  background-color: rgb(16 185 129 / 0.3);
}

.bg-emerald-500\/35 {
  background-color: rgb(16 185 129 / 0.35);
}

.bg-emerald-500\/40 {
  background-color: rgb(16 185 129 / 0.4);
}

.bg-emerald-500\/45 {
  background-color: rgb(16 185 129 / 0.45);
}

.bg-emerald-500\/5 {
  background-color: rgb(16 185 129 / 0.05);
}

.bg-emerald-500\/50 {
  background-color: rgb(16 185 129 / 0.5);
}

.bg-emerald-500\/55 {
  background-color: rgb(16 185 129 / 0.55);
}

.bg-emerald-500\/60 {
  background-color: rgb(16 185 129 / 0.6);
}

.bg-emerald-500\/65 {
  background-color: rgb(16 185 129 / 0.65);
}

.bg-emerald-500\/70 {
  background-color: rgb(16 185 129 / 0.7);
}

.bg-emerald-500\/75 {
  background-color: rgb(16 185 129 / 0.75);
}

.bg-emerald-500\/80 {
  background-color: rgb(16 185 129 / 0.8);
}

.bg-emerald-500\/85 {
  background-color: rgb(16 185 129 / 0.85);
}

.bg-emerald-500\/90 {
  background-color: rgb(16 185 129 / 0.9);
}

.bg-emerald-500\/95 {
  background-color: rgb(16 185 129 / 0.95);
}

.bg-emerald-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(5 150 105 / var(--tw-bg-opacity, 1));
}

.bg-emerald-600\/0 {
  background-color: rgb(5 150 105 / 0);
}

.bg-emerald-600\/10 {
  background-color: rgb(5 150 105 / 0.1);
}

.bg-emerald-600\/100 {
  background-color: rgb(5 150 105 / 1);
}

.bg-emerald-600\/15 {
  background-color: rgb(5 150 105 / 0.15);
}

.bg-emerald-600\/20 {
  background-color: rgb(5 150 105 / 0.2);
}

.bg-emerald-600\/25 {
  background-color: rgb(5 150 105 / 0.25);
}

.bg-emerald-600\/30 {
  background-color: rgb(5 150 105 / 0.3);
}

.bg-emerald-600\/35 {
  background-color: rgb(5 150 105 / 0.35);
}

.bg-emerald-600\/40 {
  background-color: rgb(5 150 105 / 0.4);
}

.bg-emerald-600\/45 {
  background-color: rgb(5 150 105 / 0.45);
}

.bg-emerald-600\/5 {
  background-color: rgb(5 150 105 / 0.05);
}

.bg-emerald-600\/50 {
  background-color: rgb(5 150 105 / 0.5);
}

.bg-emerald-600\/55 {
  background-color: rgb(5 150 105 / 0.55);
}

.bg-emerald-600\/60 {
  background-color: rgb(5 150 105 / 0.6);
}

.bg-emerald-600\/65 {
  background-color: rgb(5 150 105 / 0.65);
}

.bg-emerald-600\/70 {
  background-color: rgb(5 150 105 / 0.7);
}

.bg-emerald-600\/75 {
  background-color: rgb(5 150 105 / 0.75);
}

.bg-emerald-600\/80 {
  background-color: rgb(5 150 105 / 0.8);
}

.bg-emerald-600\/85 {
  background-color: rgb(5 150 105 / 0.85);
}

.bg-emerald-600\/90 {
  background-color: rgb(5 150 105 / 0.9);
}

.bg-emerald-600\/95 {
  background-color: rgb(5 150 105 / 0.95);
}

.bg-emerald-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(4 120 87 / var(--tw-bg-opacity, 1));
}

.bg-emerald-700\/0 {
  background-color: rgb(4 120 87 / 0);
}

.bg-emerald-700\/10 {
  background-color: rgb(4 120 87 / 0.1);
}

.bg-emerald-700\/100 {
  background-color: rgb(4 120 87 / 1);
}

.bg-emerald-700\/15 {
  background-color: rgb(4 120 87 / 0.15);
}

.bg-emerald-700\/20 {
  background-color: rgb(4 120 87 / 0.2);
}

.bg-emerald-700\/25 {
  background-color: rgb(4 120 87 / 0.25);
}

.bg-emerald-700\/30 {
  background-color: rgb(4 120 87 / 0.3);
}

.bg-emerald-700\/35 {
  background-color: rgb(4 120 87 / 0.35);
}

.bg-emerald-700\/40 {
  background-color: rgb(4 120 87 / 0.4);
}

.bg-emerald-700\/45 {
  background-color: rgb(4 120 87 / 0.45);
}

.bg-emerald-700\/5 {
  background-color: rgb(4 120 87 / 0.05);
}

.bg-emerald-700\/50 {
  background-color: rgb(4 120 87 / 0.5);
}

.bg-emerald-700\/55 {
  background-color: rgb(4 120 87 / 0.55);
}

.bg-emerald-700\/60 {
  background-color: rgb(4 120 87 / 0.6);
}

.bg-emerald-700\/65 {
  background-color: rgb(4 120 87 / 0.65);
}

.bg-emerald-700\/70 {
  background-color: rgb(4 120 87 / 0.7);
}

.bg-emerald-700\/75 {
  background-color: rgb(4 120 87 / 0.75);
}

.bg-emerald-700\/80 {
  background-color: rgb(4 120 87 / 0.8);
}

.bg-emerald-700\/85 {
  background-color: rgb(4 120 87 / 0.85);
}

.bg-emerald-700\/90 {
  background-color: rgb(4 120 87 / 0.9);
}

.bg-emerald-700\/95 {
  background-color: rgb(4 120 87 / 0.95);
}

.bg-emerald-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(6 95 70 / var(--tw-bg-opacity, 1));
}

.bg-emerald-800\/0 {
  background-color: rgb(6 95 70 / 0);
}

.bg-emerald-800\/10 {
  background-color: rgb(6 95 70 / 0.1);
}

.bg-emerald-800\/100 {
  background-color: rgb(6 95 70 / 1);
}

.bg-emerald-800\/15 {
  background-color: rgb(6 95 70 / 0.15);
}

.bg-emerald-800\/20 {
  background-color: rgb(6 95 70 / 0.2);
}

.bg-emerald-800\/25 {
  background-color: rgb(6 95 70 / 0.25);
}

.bg-emerald-800\/30 {
  background-color: rgb(6 95 70 / 0.3);
}

.bg-emerald-800\/35 {
  background-color: rgb(6 95 70 / 0.35);
}

.bg-emerald-800\/40 {
  background-color: rgb(6 95 70 / 0.4);
}

.bg-emerald-800\/45 {
  background-color: rgb(6 95 70 / 0.45);
}

.bg-emerald-800\/5 {
  background-color: rgb(6 95 70 / 0.05);
}

.bg-emerald-800\/50 {
  background-color: rgb(6 95 70 / 0.5);
}

.bg-emerald-800\/55 {
  background-color: rgb(6 95 70 / 0.55);
}

.bg-emerald-800\/60 {
  background-color: rgb(6 95 70 / 0.6);
}

.bg-emerald-800\/65 {
  background-color: rgb(6 95 70 / 0.65);
}

.bg-emerald-800\/70 {
  background-color: rgb(6 95 70 / 0.7);
}

.bg-emerald-800\/75 {
  background-color: rgb(6 95 70 / 0.75);
}

.bg-emerald-800\/80 {
  background-color: rgb(6 95 70 / 0.8);
}

.bg-emerald-800\/85 {
  background-color: rgb(6 95 70 / 0.85);
}

.bg-emerald-800\/90 {
  background-color: rgb(6 95 70 / 0.9);
}

.bg-emerald-800\/95 {
  background-color: rgb(6 95 70 / 0.95);
}

.bg-emerald-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(6 78 59 / var(--tw-bg-opacity, 1));
}

.bg-emerald-900\/0 {
  background-color: rgb(6 78 59 / 0);
}

.bg-emerald-900\/10 {
  background-color: rgb(6 78 59 / 0.1);
}

.bg-emerald-900\/100 {
  background-color: rgb(6 78 59 / 1);
}

.bg-emerald-900\/15 {
  background-color: rgb(6 78 59 / 0.15);
}

.bg-emerald-900\/20 {
  background-color: rgb(6 78 59 / 0.2);
}

.bg-emerald-900\/25 {
  background-color: rgb(6 78 59 / 0.25);
}

.bg-emerald-900\/30 {
  background-color: rgb(6 78 59 / 0.3);
}

.bg-emerald-900\/35 {
  background-color: rgb(6 78 59 / 0.35);
}

.bg-emerald-900\/40 {
  background-color: rgb(6 78 59 / 0.4);
}

.bg-emerald-900\/45 {
  background-color: rgb(6 78 59 / 0.45);
}

.bg-emerald-900\/5 {
  background-color: rgb(6 78 59 / 0.05);
}

.bg-emerald-900\/50 {
  background-color: rgb(6 78 59 / 0.5);
}

.bg-emerald-900\/55 {
  background-color: rgb(6 78 59 / 0.55);
}

.bg-emerald-900\/60 {
  background-color: rgb(6 78 59 / 0.6);
}

.bg-emerald-900\/65 {
  background-color: rgb(6 78 59 / 0.65);
}

.bg-emerald-900\/70 {
  background-color: rgb(6 78 59 / 0.7);
}

.bg-emerald-900\/75 {
  background-color: rgb(6 78 59 / 0.75);
}

.bg-emerald-900\/80 {
  background-color: rgb(6 78 59 / 0.8);
}

.bg-emerald-900\/85 {
  background-color: rgb(6 78 59 / 0.85);
}

.bg-emerald-900\/90 {
  background-color: rgb(6 78 59 / 0.9);
}

.bg-emerald-900\/95 {
  background-color: rgb(6 78 59 / 0.95);
}

.bg-error {
  --tw-bg-opacity: 1;
  background-color: rgb(186 26 26 / var(--tw-bg-opacity, 1));
}

.bg-inverse-surface {
  --tw-bg-opacity: 1;
  background-color: rgb(48 49 44 / var(--tw-bg-opacity, 1));
}

.bg-orange-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
}

.bg-orange-100\/0 {
  background-color: rgb(255 237 213 / 0);
}

.bg-orange-100\/10 {
  background-color: rgb(255 237 213 / 0.1);
}

.bg-orange-100\/100 {
  background-color: rgb(255 237 213 / 1);
}

.bg-orange-100\/15 {
  background-color: rgb(255 237 213 / 0.15);
}

.bg-orange-100\/20 {
  background-color: rgb(255 237 213 / 0.2);
}

.bg-orange-100\/25 {
  background-color: rgb(255 237 213 / 0.25);
}

.bg-orange-100\/30 {
  background-color: rgb(255 237 213 / 0.3);
}

.bg-orange-100\/35 {
  background-color: rgb(255 237 213 / 0.35);
}

.bg-orange-100\/40 {
  background-color: rgb(255 237 213 / 0.4);
}

.bg-orange-100\/45 {
  background-color: rgb(255 237 213 / 0.45);
}

.bg-orange-100\/5 {
  background-color: rgb(255 237 213 / 0.05);
}

.bg-orange-100\/50 {
  background-color: rgb(255 237 213 / 0.5);
}

.bg-orange-100\/55 {
  background-color: rgb(255 237 213 / 0.55);
}

.bg-orange-100\/60 {
  background-color: rgb(255 237 213 / 0.6);
}

.bg-orange-100\/65 {
  background-color: rgb(255 237 213 / 0.65);
}

.bg-orange-100\/70 {
  background-color: rgb(255 237 213 / 0.7);
}

.bg-orange-100\/75 {
  background-color: rgb(255 237 213 / 0.75);
}

.bg-orange-100\/80 {
  background-color: rgb(255 237 213 / 0.8);
}

.bg-orange-100\/85 {
  background-color: rgb(255 237 213 / 0.85);
}

.bg-orange-100\/90 {
  background-color: rgb(255 237 213 / 0.9);
}

.bg-orange-100\/95 {
  background-color: rgb(255 237 213 / 0.95);
}

.bg-orange-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 215 170 / var(--tw-bg-opacity, 1));
}

.bg-orange-200\/0 {
  background-color: rgb(254 215 170 / 0);
}

.bg-orange-200\/10 {
  background-color: rgb(254 215 170 / 0.1);
}

.bg-orange-200\/100 {
  background-color: rgb(254 215 170 / 1);
}

.bg-orange-200\/15 {
  background-color: rgb(254 215 170 / 0.15);
}

.bg-orange-200\/20 {
  background-color: rgb(254 215 170 / 0.2);
}

.bg-orange-200\/25 {
  background-color: rgb(254 215 170 / 0.25);
}

.bg-orange-200\/30 {
  background-color: rgb(254 215 170 / 0.3);
}

.bg-orange-200\/35 {
  background-color: rgb(254 215 170 / 0.35);
}

.bg-orange-200\/40 {
  background-color: rgb(254 215 170 / 0.4);
}

.bg-orange-200\/45 {
  background-color: rgb(254 215 170 / 0.45);
}

.bg-orange-200\/5 {
  background-color: rgb(254 215 170 / 0.05);
}

.bg-orange-200\/50 {
  background-color: rgb(254 215 170 / 0.5);
}

.bg-orange-200\/55 {
  background-color: rgb(254 215 170 / 0.55);
}

.bg-orange-200\/60 {
  background-color: rgb(254 215 170 / 0.6);
}

.bg-orange-200\/65 {
  background-color: rgb(254 215 170 / 0.65);
}

.bg-orange-200\/70 {
  background-color: rgb(254 215 170 / 0.7);
}

.bg-orange-200\/75 {
  background-color: rgb(254 215 170 / 0.75);
}

.bg-orange-200\/80 {
  background-color: rgb(254 215 170 / 0.8);
}

.bg-orange-200\/85 {
  background-color: rgb(254 215 170 / 0.85);
}

.bg-orange-200\/90 {
  background-color: rgb(254 215 170 / 0.9);
}

.bg-orange-200\/95 {
  background-color: rgb(254 215 170 / 0.95);
}

.bg-orange-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(253 186 116 / var(--tw-bg-opacity, 1));
}

.bg-orange-300\/0 {
  background-color: rgb(253 186 116 / 0);
}

.bg-orange-300\/10 {
  background-color: rgb(253 186 116 / 0.1);
}

.bg-orange-300\/100 {
  background-color: rgb(253 186 116 / 1);
}

.bg-orange-300\/15 {
  background-color: rgb(253 186 116 / 0.15);
}

.bg-orange-300\/20 {
  background-color: rgb(253 186 116 / 0.2);
}

.bg-orange-300\/25 {
  background-color: rgb(253 186 116 / 0.25);
}

.bg-orange-300\/30 {
  background-color: rgb(253 186 116 / 0.3);
}

.bg-orange-300\/35 {
  background-color: rgb(253 186 116 / 0.35);
}

.bg-orange-300\/40 {
  background-color: rgb(253 186 116 / 0.4);
}

.bg-orange-300\/45 {
  background-color: rgb(253 186 116 / 0.45);
}

.bg-orange-300\/5 {
  background-color: rgb(253 186 116 / 0.05);
}

.bg-orange-300\/50 {
  background-color: rgb(253 186 116 / 0.5);
}

.bg-orange-300\/55 {
  background-color: rgb(253 186 116 / 0.55);
}

.bg-orange-300\/60 {
  background-color: rgb(253 186 116 / 0.6);
}

.bg-orange-300\/65 {
  background-color: rgb(253 186 116 / 0.65);
}

.bg-orange-300\/70 {
  background-color: rgb(253 186 116 / 0.7);
}

.bg-orange-300\/75 {
  background-color: rgb(253 186 116 / 0.75);
}

.bg-orange-300\/80 {
  background-color: rgb(253 186 116 / 0.8);
}

.bg-orange-300\/85 {
  background-color: rgb(253 186 116 / 0.85);
}

.bg-orange-300\/90 {
  background-color: rgb(253 186 116 / 0.9);
}

.bg-orange-300\/95 {
  background-color: rgb(253 186 116 / 0.95);
}

.bg-orange-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(251 146 60 / var(--tw-bg-opacity, 1));
}

.bg-orange-400\/0 {
  background-color: rgb(251 146 60 / 0);
}

.bg-orange-400\/10 {
  background-color: rgb(251 146 60 / 0.1);
}

.bg-orange-400\/100 {
  background-color: rgb(251 146 60 / 1);
}

.bg-orange-400\/15 {
  background-color: rgb(251 146 60 / 0.15);
}

.bg-orange-400\/20 {
  background-color: rgb(251 146 60 / 0.2);
}

.bg-orange-400\/25 {
  background-color: rgb(251 146 60 / 0.25);
}

.bg-orange-400\/30 {
  background-color: rgb(251 146 60 / 0.3);
}

.bg-orange-400\/35 {
  background-color: rgb(251 146 60 / 0.35);
}

.bg-orange-400\/40 {
  background-color: rgb(251 146 60 / 0.4);
}

.bg-orange-400\/45 {
  background-color: rgb(251 146 60 / 0.45);
}

.bg-orange-400\/5 {
  background-color: rgb(251 146 60 / 0.05);
}

.bg-orange-400\/50 {
  background-color: rgb(251 146 60 / 0.5);
}

.bg-orange-400\/55 {
  background-color: rgb(251 146 60 / 0.55);
}

.bg-orange-400\/60 {
  background-color: rgb(251 146 60 / 0.6);
}

.bg-orange-400\/65 {
  background-color: rgb(251 146 60 / 0.65);
}

.bg-orange-400\/70 {
  background-color: rgb(251 146 60 / 0.7);
}

.bg-orange-400\/75 {
  background-color: rgb(251 146 60 / 0.75);
}

.bg-orange-400\/80 {
  background-color: rgb(251 146 60 / 0.8);
}

.bg-orange-400\/85 {
  background-color: rgb(251 146 60 / 0.85);
}

.bg-orange-400\/90 {
  background-color: rgb(251 146 60 / 0.9);
}

.bg-orange-400\/95 {
  background-color: rgb(251 146 60 / 0.95);
}

.bg-orange-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
}

.bg-orange-50\/0 {
  background-color: rgb(255 247 237 / 0);
}

.bg-orange-50\/10 {
  background-color: rgb(255 247 237 / 0.1);
}

.bg-orange-50\/100 {
  background-color: rgb(255 247 237 / 1);
}

.bg-orange-50\/15 {
  background-color: rgb(255 247 237 / 0.15);
}

.bg-orange-50\/20 {
  background-color: rgb(255 247 237 / 0.2);
}

.bg-orange-50\/25 {
  background-color: rgb(255 247 237 / 0.25);
}

.bg-orange-50\/30 {
  background-color: rgb(255 247 237 / 0.3);
}

.bg-orange-50\/35 {
  background-color: rgb(255 247 237 / 0.35);
}

.bg-orange-50\/40 {
  background-color: rgb(255 247 237 / 0.4);
}

.bg-orange-50\/45 {
  background-color: rgb(255 247 237 / 0.45);
}

.bg-orange-50\/5 {
  background-color: rgb(255 247 237 / 0.05);
}

.bg-orange-50\/50 {
  background-color: rgb(255 247 237 / 0.5);
}

.bg-orange-50\/55 {
  background-color: rgb(255 247 237 / 0.55);
}

.bg-orange-50\/60 {
  background-color: rgb(255 247 237 / 0.6);
}

.bg-orange-50\/65 {
  background-color: rgb(255 247 237 / 0.65);
}

.bg-orange-50\/70 {
  background-color: rgb(255 247 237 / 0.7);
}

.bg-orange-50\/75 {
  background-color: rgb(255 247 237 / 0.75);
}

.bg-orange-50\/80 {
  background-color: rgb(255 247 237 / 0.8);
}

.bg-orange-50\/85 {
  background-color: rgb(255 247 237 / 0.85);
}

.bg-orange-50\/90 {
  background-color: rgb(255 247 237 / 0.9);
}

.bg-orange-50\/95 {
  background-color: rgb(255 247 237 / 0.95);
}

.bg-orange-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}

.bg-orange-500\/0 {
  background-color: rgb(249 115 22 / 0);
}

.bg-orange-500\/10 {
  background-color: rgb(249 115 22 / 0.1);
}

.bg-orange-500\/100 {
  background-color: rgb(249 115 22 / 1);
}

.bg-orange-500\/15 {
  background-color: rgb(249 115 22 / 0.15);
}

.bg-orange-500\/20 {
  background-color: rgb(249 115 22 / 0.2);
}

.bg-orange-500\/25 {
  background-color: rgb(249 115 22 / 0.25);
}

.bg-orange-500\/30 {
  background-color: rgb(249 115 22 / 0.3);
}

.bg-orange-500\/35 {
  background-color: rgb(249 115 22 / 0.35);
}

.bg-orange-500\/40 {
  background-color: rgb(249 115 22 / 0.4);
}

.bg-orange-500\/45 {
  background-color: rgb(249 115 22 / 0.45);
}

.bg-orange-500\/5 {
  background-color: rgb(249 115 22 / 0.05);
}

.bg-orange-500\/50 {
  background-color: rgb(249 115 22 / 0.5);
}

.bg-orange-500\/55 {
  background-color: rgb(249 115 22 / 0.55);
}

.bg-orange-500\/60 {
  background-color: rgb(249 115 22 / 0.6);
}

.bg-orange-500\/65 {
  background-color: rgb(249 115 22 / 0.65);
}

.bg-orange-500\/70 {
  background-color: rgb(249 115 22 / 0.7);
}

.bg-orange-500\/75 {
  background-color: rgb(249 115 22 / 0.75);
}

.bg-orange-500\/80 {
  background-color: rgb(249 115 22 / 0.8);
}

.bg-orange-500\/85 {
  background-color: rgb(249 115 22 / 0.85);
}

.bg-orange-500\/90 {
  background-color: rgb(249 115 22 / 0.9);
}

.bg-orange-500\/95 {
  background-color: rgb(249 115 22 / 0.95);
}

.bg-orange-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
}

.bg-orange-600\/0 {
  background-color: rgb(234 88 12 / 0);
}

.bg-orange-600\/10 {
  background-color: rgb(234 88 12 / 0.1);
}

.bg-orange-600\/100 {
  background-color: rgb(234 88 12 / 1);
}

.bg-orange-600\/15 {
  background-color: rgb(234 88 12 / 0.15);
}

.bg-orange-600\/20 {
  background-color: rgb(234 88 12 / 0.2);
}

.bg-orange-600\/25 {
  background-color: rgb(234 88 12 / 0.25);
}

.bg-orange-600\/30 {
  background-color: rgb(234 88 12 / 0.3);
}

.bg-orange-600\/35 {
  background-color: rgb(234 88 12 / 0.35);
}

.bg-orange-600\/40 {
  background-color: rgb(234 88 12 / 0.4);
}

.bg-orange-600\/45 {
  background-color: rgb(234 88 12 / 0.45);
}

.bg-orange-600\/5 {
  background-color: rgb(234 88 12 / 0.05);
}

.bg-orange-600\/50 {
  background-color: rgb(234 88 12 / 0.5);
}

.bg-orange-600\/55 {
  background-color: rgb(234 88 12 / 0.55);
}

.bg-orange-600\/60 {
  background-color: rgb(234 88 12 / 0.6);
}

.bg-orange-600\/65 {
  background-color: rgb(234 88 12 / 0.65);
}

.bg-orange-600\/70 {
  background-color: rgb(234 88 12 / 0.7);
}

.bg-orange-600\/75 {
  background-color: rgb(234 88 12 / 0.75);
}

.bg-orange-600\/80 {
  background-color: rgb(234 88 12 / 0.8);
}

.bg-orange-600\/85 {
  background-color: rgb(234 88 12 / 0.85);
}

.bg-orange-600\/90 {
  background-color: rgb(234 88 12 / 0.9);
}

.bg-orange-600\/95 {
  background-color: rgb(234 88 12 / 0.95);
}

.bg-orange-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(194 65 12 / var(--tw-bg-opacity, 1));
}

.bg-orange-700\/0 {
  background-color: rgb(194 65 12 / 0);
}

.bg-orange-700\/10 {
  background-color: rgb(194 65 12 / 0.1);
}

.bg-orange-700\/100 {
  background-color: rgb(194 65 12 / 1);
}

.bg-orange-700\/15 {
  background-color: rgb(194 65 12 / 0.15);
}

.bg-orange-700\/20 {
  background-color: rgb(194 65 12 / 0.2);
}

.bg-orange-700\/25 {
  background-color: rgb(194 65 12 / 0.25);
}

.bg-orange-700\/30 {
  background-color: rgb(194 65 12 / 0.3);
}

.bg-orange-700\/35 {
  background-color: rgb(194 65 12 / 0.35);
}

.bg-orange-700\/40 {
  background-color: rgb(194 65 12 / 0.4);
}

.bg-orange-700\/45 {
  background-color: rgb(194 65 12 / 0.45);
}

.bg-orange-700\/5 {
  background-color: rgb(194 65 12 / 0.05);
}

.bg-orange-700\/50 {
  background-color: rgb(194 65 12 / 0.5);
}

.bg-orange-700\/55 {
  background-color: rgb(194 65 12 / 0.55);
}

.bg-orange-700\/60 {
  background-color: rgb(194 65 12 / 0.6);
}

.bg-orange-700\/65 {
  background-color: rgb(194 65 12 / 0.65);
}

.bg-orange-700\/70 {
  background-color: rgb(194 65 12 / 0.7);
}

.bg-orange-700\/75 {
  background-color: rgb(194 65 12 / 0.75);
}

.bg-orange-700\/80 {
  background-color: rgb(194 65 12 / 0.8);
}

.bg-orange-700\/85 {
  background-color: rgb(194 65 12 / 0.85);
}

.bg-orange-700\/90 {
  background-color: rgb(194 65 12 / 0.9);
}

.bg-orange-700\/95 {
  background-color: rgb(194 65 12 / 0.95);
}

.bg-orange-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(154 52 18 / var(--tw-bg-opacity, 1));
}

.bg-orange-800\/0 {
  background-color: rgb(154 52 18 / 0);
}

.bg-orange-800\/10 {
  background-color: rgb(154 52 18 / 0.1);
}

.bg-orange-800\/100 {
  background-color: rgb(154 52 18 / 1);
}

.bg-orange-800\/15 {
  background-color: rgb(154 52 18 / 0.15);
}

.bg-orange-800\/20 {
  background-color: rgb(154 52 18 / 0.2);
}

.bg-orange-800\/25 {
  background-color: rgb(154 52 18 / 0.25);
}

.bg-orange-800\/30 {
  background-color: rgb(154 52 18 / 0.3);
}

.bg-orange-800\/35 {
  background-color: rgb(154 52 18 / 0.35);
}

.bg-orange-800\/40 {
  background-color: rgb(154 52 18 / 0.4);
}

.bg-orange-800\/45 {
  background-color: rgb(154 52 18 / 0.45);
}

.bg-orange-800\/5 {
  background-color: rgb(154 52 18 / 0.05);
}

.bg-orange-800\/50 {
  background-color: rgb(154 52 18 / 0.5);
}

.bg-orange-800\/55 {
  background-color: rgb(154 52 18 / 0.55);
}

.bg-orange-800\/60 {
  background-color: rgb(154 52 18 / 0.6);
}

.bg-orange-800\/65 {
  background-color: rgb(154 52 18 / 0.65);
}

.bg-orange-800\/70 {
  background-color: rgb(154 52 18 / 0.7);
}

.bg-orange-800\/75 {
  background-color: rgb(154 52 18 / 0.75);
}

.bg-orange-800\/80 {
  background-color: rgb(154 52 18 / 0.8);
}

.bg-orange-800\/85 {
  background-color: rgb(154 52 18 / 0.85);
}

.bg-orange-800\/90 {
  background-color: rgb(154 52 18 / 0.9);
}

.bg-orange-800\/95 {
  background-color: rgb(154 52 18 / 0.95);
}

.bg-orange-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(124 45 18 / var(--tw-bg-opacity, 1));
}

.bg-orange-900\/0 {
  background-color: rgb(124 45 18 / 0);
}

.bg-orange-900\/10 {
  background-color: rgb(124 45 18 / 0.1);
}

.bg-orange-900\/100 {
  background-color: rgb(124 45 18 / 1);
}

.bg-orange-900\/15 {
  background-color: rgb(124 45 18 / 0.15);
}

.bg-orange-900\/20 {
  background-color: rgb(124 45 18 / 0.2);
}

.bg-orange-900\/25 {
  background-color: rgb(124 45 18 / 0.25);
}

.bg-orange-900\/30 {
  background-color: rgb(124 45 18 / 0.3);
}

.bg-orange-900\/35 {
  background-color: rgb(124 45 18 / 0.35);
}

.bg-orange-900\/40 {
  background-color: rgb(124 45 18 / 0.4);
}

.bg-orange-900\/45 {
  background-color: rgb(124 45 18 / 0.45);
}

.bg-orange-900\/5 {
  background-color: rgb(124 45 18 / 0.05);
}

.bg-orange-900\/50 {
  background-color: rgb(124 45 18 / 0.5);
}

.bg-orange-900\/55 {
  background-color: rgb(124 45 18 / 0.55);
}

.bg-orange-900\/60 {
  background-color: rgb(124 45 18 / 0.6);
}

.bg-orange-900\/65 {
  background-color: rgb(124 45 18 / 0.65);
}

.bg-orange-900\/70 {
  background-color: rgb(124 45 18 / 0.7);
}

.bg-orange-900\/75 {
  background-color: rgb(124 45 18 / 0.75);
}

.bg-orange-900\/80 {
  background-color: rgb(124 45 18 / 0.8);
}

.bg-orange-900\/85 {
  background-color: rgb(124 45 18 / 0.85);
}

.bg-orange-900\/90 {
  background-color: rgb(124 45 18 / 0.9);
}

.bg-orange-900\/95 {
  background-color: rgb(124 45 18 / 0.95);
}

.bg-primary {
  --tw-bg-opacity: 1;
  background-color: rgb(154 64 33 / var(--tw-bg-opacity, 1));
}

.bg-purple-900\/50 {
  background-color: rgb(88 28 135 / 0.5);
}

.bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}

.bg-red-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}

.bg-rose-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 228 230 / var(--tw-bg-opacity, 1));
}

.bg-rose-100\/0 {
  background-color: rgb(255 228 230 / 0);
}

.bg-rose-100\/10 {
  background-color: rgb(255 228 230 / 0.1);
}

.bg-rose-100\/100 {
  background-color: rgb(255 228 230 / 1);
}

.bg-rose-100\/15 {
  background-color: rgb(255 228 230 / 0.15);
}

.bg-rose-100\/20 {
  background-color: rgb(255 228 230 / 0.2);
}

.bg-rose-100\/25 {
  background-color: rgb(255 228 230 / 0.25);
}

.bg-rose-100\/30 {
  background-color: rgb(255 228 230 / 0.3);
}

.bg-rose-100\/35 {
  background-color: rgb(255 228 230 / 0.35);
}

.bg-rose-100\/40 {
  background-color: rgb(255 228 230 / 0.4);
}

.bg-rose-100\/45 {
  background-color: rgb(255 228 230 / 0.45);
}

.bg-rose-100\/5 {
  background-color: rgb(255 228 230 / 0.05);
}

.bg-rose-100\/50 {
  background-color: rgb(255 228 230 / 0.5);
}

.bg-rose-100\/55 {
  background-color: rgb(255 228 230 / 0.55);
}

.bg-rose-100\/60 {
  background-color: rgb(255 228 230 / 0.6);
}

.bg-rose-100\/65 {
  background-color: rgb(255 228 230 / 0.65);
}

.bg-rose-100\/70 {
  background-color: rgb(255 228 230 / 0.7);
}

.bg-rose-100\/75 {
  background-color: rgb(255 228 230 / 0.75);
}

.bg-rose-100\/80 {
  background-color: rgb(255 228 230 / 0.8);
}

.bg-rose-100\/85 {
  background-color: rgb(255 228 230 / 0.85);
}

.bg-rose-100\/90 {
  background-color: rgb(255 228 230 / 0.9);
}

.bg-rose-100\/95 {
  background-color: rgb(255 228 230 / 0.95);
}

.bg-rose-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 205 211 / var(--tw-bg-opacity, 1));
}

.bg-rose-200\/0 {
  background-color: rgb(254 205 211 / 0);
}

.bg-rose-200\/10 {
  background-color: rgb(254 205 211 / 0.1);
}

.bg-rose-200\/100 {
  background-color: rgb(254 205 211 / 1);
}

.bg-rose-200\/15 {
  background-color: rgb(254 205 211 / 0.15);
}

.bg-rose-200\/20 {
  background-color: rgb(254 205 211 / 0.2);
}

.bg-rose-200\/25 {
  background-color: rgb(254 205 211 / 0.25);
}

.bg-rose-200\/30 {
  background-color: rgb(254 205 211 / 0.3);
}

.bg-rose-200\/35 {
  background-color: rgb(254 205 211 / 0.35);
}

.bg-rose-200\/40 {
  background-color: rgb(254 205 211 / 0.4);
}

.bg-rose-200\/45 {
  background-color: rgb(254 205 211 / 0.45);
}

.bg-rose-200\/5 {
  background-color: rgb(254 205 211 / 0.05);
}

.bg-rose-200\/50 {
  background-color: rgb(254 205 211 / 0.5);
}

.bg-rose-200\/55 {
  background-color: rgb(254 205 211 / 0.55);
}

.bg-rose-200\/60 {
  background-color: rgb(254 205 211 / 0.6);
}

.bg-rose-200\/65 {
  background-color: rgb(254 205 211 / 0.65);
}

.bg-rose-200\/70 {
  background-color: rgb(254 205 211 / 0.7);
}

.bg-rose-200\/75 {
  background-color: rgb(254 205 211 / 0.75);
}

.bg-rose-200\/80 {
  background-color: rgb(254 205 211 / 0.8);
}

.bg-rose-200\/85 {
  background-color: rgb(254 205 211 / 0.85);
}

.bg-rose-200\/90 {
  background-color: rgb(254 205 211 / 0.9);
}

.bg-rose-200\/95 {
  background-color: rgb(254 205 211 / 0.95);
}

.bg-rose-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(253 164 175 / var(--tw-bg-opacity, 1));
}

.bg-rose-300\/0 {
  background-color: rgb(253 164 175 / 0);
}

.bg-rose-300\/10 {
  background-color: rgb(253 164 175 / 0.1);
}

.bg-rose-300\/100 {
  background-color: rgb(253 164 175 / 1);
}

.bg-rose-300\/15 {
  background-color: rgb(253 164 175 / 0.15);
}

.bg-rose-300\/20 {
  background-color: rgb(253 164 175 / 0.2);
}

.bg-rose-300\/25 {
  background-color: rgb(253 164 175 / 0.25);
}

.bg-rose-300\/30 {
  background-color: rgb(253 164 175 / 0.3);
}

.bg-rose-300\/35 {
  background-color: rgb(253 164 175 / 0.35);
}

.bg-rose-300\/40 {
  background-color: rgb(253 164 175 / 0.4);
}

.bg-rose-300\/45 {
  background-color: rgb(253 164 175 / 0.45);
}

.bg-rose-300\/5 {
  background-color: rgb(253 164 175 / 0.05);
}

.bg-rose-300\/50 {
  background-color: rgb(253 164 175 / 0.5);
}

.bg-rose-300\/55 {
  background-color: rgb(253 164 175 / 0.55);
}

.bg-rose-300\/60 {
  background-color: rgb(253 164 175 / 0.6);
}

.bg-rose-300\/65 {
  background-color: rgb(253 164 175 / 0.65);
}

.bg-rose-300\/70 {
  background-color: rgb(253 164 175 / 0.7);
}

.bg-rose-300\/75 {
  background-color: rgb(253 164 175 / 0.75);
}

.bg-rose-300\/80 {
  background-color: rgb(253 164 175 / 0.8);
}

.bg-rose-300\/85 {
  background-color: rgb(253 164 175 / 0.85);
}

.bg-rose-300\/90 {
  background-color: rgb(253 164 175 / 0.9);
}

.bg-rose-300\/95 {
  background-color: rgb(253 164 175 / 0.95);
}

.bg-rose-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(251 113 133 / var(--tw-bg-opacity, 1));
}

.bg-rose-400\/0 {
  background-color: rgb(251 113 133 / 0);
}

.bg-rose-400\/10 {
  background-color: rgb(251 113 133 / 0.1);
}

.bg-rose-400\/100 {
  background-color: rgb(251 113 133 / 1);
}

.bg-rose-400\/15 {
  background-color: rgb(251 113 133 / 0.15);
}

.bg-rose-400\/20 {
  background-color: rgb(251 113 133 / 0.2);
}

.bg-rose-400\/25 {
  background-color: rgb(251 113 133 / 0.25);
}

.bg-rose-400\/30 {
  background-color: rgb(251 113 133 / 0.3);
}

.bg-rose-400\/35 {
  background-color: rgb(251 113 133 / 0.35);
}

.bg-rose-400\/40 {
  background-color: rgb(251 113 133 / 0.4);
}

.bg-rose-400\/45 {
  background-color: rgb(251 113 133 / 0.45);
}

.bg-rose-400\/5 {
  background-color: rgb(251 113 133 / 0.05);
}

.bg-rose-400\/50 {
  background-color: rgb(251 113 133 / 0.5);
}

.bg-rose-400\/55 {
  background-color: rgb(251 113 133 / 0.55);
}

.bg-rose-400\/60 {
  background-color: rgb(251 113 133 / 0.6);
}

.bg-rose-400\/65 {
  background-color: rgb(251 113 133 / 0.65);
}

.bg-rose-400\/70 {
  background-color: rgb(251 113 133 / 0.7);
}

.bg-rose-400\/75 {
  background-color: rgb(251 113 133 / 0.75);
}

.bg-rose-400\/80 {
  background-color: rgb(251 113 133 / 0.8);
}

.bg-rose-400\/85 {
  background-color: rgb(251 113 133 / 0.85);
}

.bg-rose-400\/90 {
  background-color: rgb(251 113 133 / 0.9);
}

.bg-rose-400\/95 {
  background-color: rgb(251 113 133 / 0.95);
}

.bg-rose-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 241 242 / var(--tw-bg-opacity, 1));
}

.bg-rose-50\/0 {
  background-color: rgb(255 241 242 / 0);
}

.bg-rose-50\/10 {
  background-color: rgb(255 241 242 / 0.1);
}

.bg-rose-50\/100 {
  background-color: rgb(255 241 242 / 1);
}

.bg-rose-50\/15 {
  background-color: rgb(255 241 242 / 0.15);
}

.bg-rose-50\/20 {
  background-color: rgb(255 241 242 / 0.2);
}

.bg-rose-50\/25 {
  background-color: rgb(255 241 242 / 0.25);
}

.bg-rose-50\/30 {
  background-color: rgb(255 241 242 / 0.3);
}

.bg-rose-50\/35 {
  background-color: rgb(255 241 242 / 0.35);
}

.bg-rose-50\/40 {
  background-color: rgb(255 241 242 / 0.4);
}

.bg-rose-50\/45 {
  background-color: rgb(255 241 242 / 0.45);
}

.bg-rose-50\/5 {
  background-color: rgb(255 241 242 / 0.05);
}

.bg-rose-50\/50 {
  background-color: rgb(255 241 242 / 0.5);
}

.bg-rose-50\/55 {
  background-color: rgb(255 241 242 / 0.55);
}

.bg-rose-50\/60 {
  background-color: rgb(255 241 242 / 0.6);
}

.bg-rose-50\/65 {
  background-color: rgb(255 241 242 / 0.65);
}

.bg-rose-50\/70 {
  background-color: rgb(255 241 242 / 0.7);
}

.bg-rose-50\/75 {
  background-color: rgb(255 241 242 / 0.75);
}

.bg-rose-50\/80 {
  background-color: rgb(255 241 242 / 0.8);
}

.bg-rose-50\/85 {
  background-color: rgb(255 241 242 / 0.85);
}

.bg-rose-50\/90 {
  background-color: rgb(255 241 242 / 0.9);
}

.bg-rose-50\/95 {
  background-color: rgb(255 241 242 / 0.95);
}

.bg-rose-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(244 63 94 / var(--tw-bg-opacity, 1));
}

.bg-rose-500\/0 {
  background-color: rgb(244 63 94 / 0);
}

.bg-rose-500\/10 {
  background-color: rgb(244 63 94 / 0.1);
}

.bg-rose-500\/100 {
  background-color: rgb(244 63 94 / 1);
}

.bg-rose-500\/15 {
  background-color: rgb(244 63 94 / 0.15);
}

.bg-rose-500\/20 {
  background-color: rgb(244 63 94 / 0.2);
}

.bg-rose-500\/25 {
  background-color: rgb(244 63 94 / 0.25);
}

.bg-rose-500\/30 {
  background-color: rgb(244 63 94 / 0.3);
}

.bg-rose-500\/35 {
  background-color: rgb(244 63 94 / 0.35);
}

.bg-rose-500\/40 {
  background-color: rgb(244 63 94 / 0.4);
}

.bg-rose-500\/45 {
  background-color: rgb(244 63 94 / 0.45);
}

.bg-rose-500\/5 {
  background-color: rgb(244 63 94 / 0.05);
}

.bg-rose-500\/50 {
  background-color: rgb(244 63 94 / 0.5);
}

.bg-rose-500\/55 {
  background-color: rgb(244 63 94 / 0.55);
}

.bg-rose-500\/60 {
  background-color: rgb(244 63 94 / 0.6);
}

.bg-rose-500\/65 {
  background-color: rgb(244 63 94 / 0.65);
}

.bg-rose-500\/70 {
  background-color: rgb(244 63 94 / 0.7);
}

.bg-rose-500\/75 {
  background-color: rgb(244 63 94 / 0.75);
}

.bg-rose-500\/80 {
  background-color: rgb(244 63 94 / 0.8);
}

.bg-rose-500\/85 {
  background-color: rgb(244 63 94 / 0.85);
}

.bg-rose-500\/90 {
  background-color: rgb(244 63 94 / 0.9);
}

.bg-rose-500\/95 {
  background-color: rgb(244 63 94 / 0.95);
}

.bg-rose-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(225 29 72 / var(--tw-bg-opacity, 1));
}

.bg-rose-600\/0 {
  background-color: rgb(225 29 72 / 0);
}

.bg-rose-600\/10 {
  background-color: rgb(225 29 72 / 0.1);
}

.bg-rose-600\/100 {
  background-color: rgb(225 29 72 / 1);
}

.bg-rose-600\/15 {
  background-color: rgb(225 29 72 / 0.15);
}

.bg-rose-600\/20 {
  background-color: rgb(225 29 72 / 0.2);
}

.bg-rose-600\/25 {
  background-color: rgb(225 29 72 / 0.25);
}

.bg-rose-600\/30 {
  background-color: rgb(225 29 72 / 0.3);
}

.bg-rose-600\/35 {
  background-color: rgb(225 29 72 / 0.35);
}

.bg-rose-600\/40 {
  background-color: rgb(225 29 72 / 0.4);
}

.bg-rose-600\/45 {
  background-color: rgb(225 29 72 / 0.45);
}

.bg-rose-600\/5 {
  background-color: rgb(225 29 72 / 0.05);
}

.bg-rose-600\/50 {
  background-color: rgb(225 29 72 / 0.5);
}

.bg-rose-600\/55 {
  background-color: rgb(225 29 72 / 0.55);
}

.bg-rose-600\/60 {
  background-color: rgb(225 29 72 / 0.6);
}

.bg-rose-600\/65 {
  background-color: rgb(225 29 72 / 0.65);
}

.bg-rose-600\/70 {
  background-color: rgb(225 29 72 / 0.7);
}

.bg-rose-600\/75 {
  background-color: rgb(225 29 72 / 0.75);
}

.bg-rose-600\/80 {
  background-color: rgb(225 29 72 / 0.8);
}

.bg-rose-600\/85 {
  background-color: rgb(225 29 72 / 0.85);
}

.bg-rose-600\/90 {
  background-color: rgb(225 29 72 / 0.9);
}

.bg-rose-600\/95 {
  background-color: rgb(225 29 72 / 0.95);
}

.bg-rose-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(190 18 60 / var(--tw-bg-opacity, 1));
}

.bg-rose-700\/0 {
  background-color: rgb(190 18 60 / 0);
}

.bg-rose-700\/10 {
  background-color: rgb(190 18 60 / 0.1);
}

.bg-rose-700\/100 {
  background-color: rgb(190 18 60 / 1);
}

.bg-rose-700\/15 {
  background-color: rgb(190 18 60 / 0.15);
}

.bg-rose-700\/20 {
  background-color: rgb(190 18 60 / 0.2);
}

.bg-rose-700\/25 {
  background-color: rgb(190 18 60 / 0.25);
}

.bg-rose-700\/30 {
  background-color: rgb(190 18 60 / 0.3);
}

.bg-rose-700\/35 {
  background-color: rgb(190 18 60 / 0.35);
}

.bg-rose-700\/40 {
  background-color: rgb(190 18 60 / 0.4);
}

.bg-rose-700\/45 {
  background-color: rgb(190 18 60 / 0.45);
}

.bg-rose-700\/5 {
  background-color: rgb(190 18 60 / 0.05);
}

.bg-rose-700\/50 {
  background-color: rgb(190 18 60 / 0.5);
}

.bg-rose-700\/55 {
  background-color: rgb(190 18 60 / 0.55);
}

.bg-rose-700\/60 {
  background-color: rgb(190 18 60 / 0.6);
}

.bg-rose-700\/65 {
  background-color: rgb(190 18 60 / 0.65);
}

.bg-rose-700\/70 {
  background-color: rgb(190 18 60 / 0.7);
}

.bg-rose-700\/75 {
  background-color: rgb(190 18 60 / 0.75);
}

.bg-rose-700\/80 {
  background-color: rgb(190 18 60 / 0.8);
}

.bg-rose-700\/85 {
  background-color: rgb(190 18 60 / 0.85);
}

.bg-rose-700\/90 {
  background-color: rgb(190 18 60 / 0.9);
}

.bg-rose-700\/95 {
  background-color: rgb(190 18 60 / 0.95);
}

.bg-rose-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(159 18 57 / var(--tw-bg-opacity, 1));
}

.bg-rose-800\/0 {
  background-color: rgb(159 18 57 / 0);
}

.bg-rose-800\/10 {
  background-color: rgb(159 18 57 / 0.1);
}

.bg-rose-800\/100 {
  background-color: rgb(159 18 57 / 1);
}

.bg-rose-800\/15 {
  background-color: rgb(159 18 57 / 0.15);
}

.bg-rose-800\/20 {
  background-color: rgb(159 18 57 / 0.2);
}

.bg-rose-800\/25 {
  background-color: rgb(159 18 57 / 0.25);
}

.bg-rose-800\/30 {
  background-color: rgb(159 18 57 / 0.3);
}

.bg-rose-800\/35 {
  background-color: rgb(159 18 57 / 0.35);
}

.bg-rose-800\/40 {
  background-color: rgb(159 18 57 / 0.4);
}

.bg-rose-800\/45 {
  background-color: rgb(159 18 57 / 0.45);
}

.bg-rose-800\/5 {
  background-color: rgb(159 18 57 / 0.05);
}

.bg-rose-800\/50 {
  background-color: rgb(159 18 57 / 0.5);
}

.bg-rose-800\/55 {
  background-color: rgb(159 18 57 / 0.55);
}

.bg-rose-800\/60 {
  background-color: rgb(159 18 57 / 0.6);
}

.bg-rose-800\/65 {
  background-color: rgb(159 18 57 / 0.65);
}

.bg-rose-800\/70 {
  background-color: rgb(159 18 57 / 0.7);
}

.bg-rose-800\/75 {
  background-color: rgb(159 18 57 / 0.75);
}

.bg-rose-800\/80 {
  background-color: rgb(159 18 57 / 0.8);
}

.bg-rose-800\/85 {
  background-color: rgb(159 18 57 / 0.85);
}

.bg-rose-800\/90 {
  background-color: rgb(159 18 57 / 0.9);
}

.bg-rose-800\/95 {
  background-color: rgb(159 18 57 / 0.95);
}

.bg-rose-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(136 19 55 / var(--tw-bg-opacity, 1));
}

.bg-rose-900\/0 {
  background-color: rgb(136 19 55 / 0);
}

.bg-rose-900\/10 {
  background-color: rgb(136 19 55 / 0.1);
}

.bg-rose-900\/100 {
  background-color: rgb(136 19 55 / 1);
}

.bg-rose-900\/15 {
  background-color: rgb(136 19 55 / 0.15);
}

.bg-rose-900\/20 {
  background-color: rgb(136 19 55 / 0.2);
}

.bg-rose-900\/25 {
  background-color: rgb(136 19 55 / 0.25);
}

.bg-rose-900\/30 {
  background-color: rgb(136 19 55 / 0.3);
}

.bg-rose-900\/35 {
  background-color: rgb(136 19 55 / 0.35);
}

.bg-rose-900\/40 {
  background-color: rgb(136 19 55 / 0.4);
}

.bg-rose-900\/45 {
  background-color: rgb(136 19 55 / 0.45);
}

.bg-rose-900\/5 {
  background-color: rgb(136 19 55 / 0.05);
}

.bg-rose-900\/50 {
  background-color: rgb(136 19 55 / 0.5);
}

.bg-rose-900\/55 {
  background-color: rgb(136 19 55 / 0.55);
}

.bg-rose-900\/60 {
  background-color: rgb(136 19 55 / 0.6);
}

.bg-rose-900\/65 {
  background-color: rgb(136 19 55 / 0.65);
}

.bg-rose-900\/70 {
  background-color: rgb(136 19 55 / 0.7);
}

.bg-rose-900\/75 {
  background-color: rgb(136 19 55 / 0.75);
}

.bg-rose-900\/80 {
  background-color: rgb(136 19 55 / 0.8);
}

.bg-rose-900\/85 {
  background-color: rgb(136 19 55 / 0.85);
}

.bg-rose-900\/90 {
  background-color: rgb(136 19 55 / 0.9);
}

.bg-rose-900\/95 {
  background-color: rgb(136 19 55 / 0.95);
}

.bg-sky-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(224 242 254 / var(--tw-bg-opacity, 1));
}

.bg-sky-100\/0 {
  background-color: rgb(224 242 254 / 0);
}

.bg-sky-100\/10 {
  background-color: rgb(224 242 254 / 0.1);
}

.bg-sky-100\/100 {
  background-color: rgb(224 242 254 / 1);
}

.bg-sky-100\/15 {
  background-color: rgb(224 242 254 / 0.15);
}

.bg-sky-100\/20 {
  background-color: rgb(224 242 254 / 0.2);
}

.bg-sky-100\/25 {
  background-color: rgb(224 242 254 / 0.25);
}

.bg-sky-100\/30 {
  background-color: rgb(224 242 254 / 0.3);
}

.bg-sky-100\/35 {
  background-color: rgb(224 242 254 / 0.35);
}

.bg-sky-100\/40 {
  background-color: rgb(224 242 254 / 0.4);
}

.bg-sky-100\/45 {
  background-color: rgb(224 242 254 / 0.45);
}

.bg-sky-100\/5 {
  background-color: rgb(224 242 254 / 0.05);
}

.bg-sky-100\/50 {
  background-color: rgb(224 242 254 / 0.5);
}

.bg-sky-100\/55 {
  background-color: rgb(224 242 254 / 0.55);
}

.bg-sky-100\/60 {
  background-color: rgb(224 242 254 / 0.6);
}

.bg-sky-100\/65 {
  background-color: rgb(224 242 254 / 0.65);
}

.bg-sky-100\/70 {
  background-color: rgb(224 242 254 / 0.7);
}

.bg-sky-100\/75 {
  background-color: rgb(224 242 254 / 0.75);
}

.bg-sky-100\/80 {
  background-color: rgb(224 242 254 / 0.8);
}

.bg-sky-100\/85 {
  background-color: rgb(224 242 254 / 0.85);
}

.bg-sky-100\/90 {
  background-color: rgb(224 242 254 / 0.9);
}

.bg-sky-100\/95 {
  background-color: rgb(224 242 254 / 0.95);
}

.bg-sky-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(186 230 253 / var(--tw-bg-opacity, 1));
}

.bg-sky-200\/0 {
  background-color: rgb(186 230 253 / 0);
}

.bg-sky-200\/10 {
  background-color: rgb(186 230 253 / 0.1);
}

.bg-sky-200\/100 {
  background-color: rgb(186 230 253 / 1);
}

.bg-sky-200\/15 {
  background-color: rgb(186 230 253 / 0.15);
}

.bg-sky-200\/20 {
  background-color: rgb(186 230 253 / 0.2);
}

.bg-sky-200\/25 {
  background-color: rgb(186 230 253 / 0.25);
}

.bg-sky-200\/30 {
  background-color: rgb(186 230 253 / 0.3);
}

.bg-sky-200\/35 {
  background-color: rgb(186 230 253 / 0.35);
}

.bg-sky-200\/40 {
  background-color: rgb(186 230 253 / 0.4);
}

.bg-sky-200\/45 {
  background-color: rgb(186 230 253 / 0.45);
}

.bg-sky-200\/5 {
  background-color: rgb(186 230 253 / 0.05);
}

.bg-sky-200\/50 {
  background-color: rgb(186 230 253 / 0.5);
}

.bg-sky-200\/55 {
  background-color: rgb(186 230 253 / 0.55);
}

.bg-sky-200\/60 {
  background-color: rgb(186 230 253 / 0.6);
}

.bg-sky-200\/65 {
  background-color: rgb(186 230 253 / 0.65);
}

.bg-sky-200\/70 {
  background-color: rgb(186 230 253 / 0.7);
}

.bg-sky-200\/75 {
  background-color: rgb(186 230 253 / 0.75);
}

.bg-sky-200\/80 {
  background-color: rgb(186 230 253 / 0.8);
}

.bg-sky-200\/85 {
  background-color: rgb(186 230 253 / 0.85);
}

.bg-sky-200\/90 {
  background-color: rgb(186 230 253 / 0.9);
}

.bg-sky-200\/95 {
  background-color: rgb(186 230 253 / 0.95);
}

.bg-sky-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(125 211 252 / var(--tw-bg-opacity, 1));
}

.bg-sky-300\/0 {
  background-color: rgb(125 211 252 / 0);
}

.bg-sky-300\/10 {
  background-color: rgb(125 211 252 / 0.1);
}

.bg-sky-300\/100 {
  background-color: rgb(125 211 252 / 1);
}

.bg-sky-300\/15 {
  background-color: rgb(125 211 252 / 0.15);
}

.bg-sky-300\/20 {
  background-color: rgb(125 211 252 / 0.2);
}

.bg-sky-300\/25 {
  background-color: rgb(125 211 252 / 0.25);
}

.bg-sky-300\/30 {
  background-color: rgb(125 211 252 / 0.3);
}

.bg-sky-300\/35 {
  background-color: rgb(125 211 252 / 0.35);
}

.bg-sky-300\/40 {
  background-color: rgb(125 211 252 / 0.4);
}

.bg-sky-300\/45 {
  background-color: rgb(125 211 252 / 0.45);
}

.bg-sky-300\/5 {
  background-color: rgb(125 211 252 / 0.05);
}

.bg-sky-300\/50 {
  background-color: rgb(125 211 252 / 0.5);
}

.bg-sky-300\/55 {
  background-color: rgb(125 211 252 / 0.55);
}

.bg-sky-300\/60 {
  background-color: rgb(125 211 252 / 0.6);
}

.bg-sky-300\/65 {
  background-color: rgb(125 211 252 / 0.65);
}

.bg-sky-300\/70 {
  background-color: rgb(125 211 252 / 0.7);
}

.bg-sky-300\/75 {
  background-color: rgb(125 211 252 / 0.75);
}

.bg-sky-300\/80 {
  background-color: rgb(125 211 252 / 0.8);
}

.bg-sky-300\/85 {
  background-color: rgb(125 211 252 / 0.85);
}

.bg-sky-300\/90 {
  background-color: rgb(125 211 252 / 0.9);
}

.bg-sky-300\/95 {
  background-color: rgb(125 211 252 / 0.95);
}

.bg-sky-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(56 189 248 / var(--tw-bg-opacity, 1));
}

.bg-sky-400\/0 {
  background-color: rgb(56 189 248 / 0);
}

.bg-sky-400\/10 {
  background-color: rgb(56 189 248 / 0.1);
}

.bg-sky-400\/100 {
  background-color: rgb(56 189 248 / 1);
}

.bg-sky-400\/15 {
  background-color: rgb(56 189 248 / 0.15);
}

.bg-sky-400\/20 {
  background-color: rgb(56 189 248 / 0.2);
}

.bg-sky-400\/25 {
  background-color: rgb(56 189 248 / 0.25);
}

.bg-sky-400\/30 {
  background-color: rgb(56 189 248 / 0.3);
}

.bg-sky-400\/35 {
  background-color: rgb(56 189 248 / 0.35);
}

.bg-sky-400\/40 {
  background-color: rgb(56 189 248 / 0.4);
}

.bg-sky-400\/45 {
  background-color: rgb(56 189 248 / 0.45);
}

.bg-sky-400\/5 {
  background-color: rgb(56 189 248 / 0.05);
}

.bg-sky-400\/50 {
  background-color: rgb(56 189 248 / 0.5);
}

.bg-sky-400\/55 {
  background-color: rgb(56 189 248 / 0.55);
}

.bg-sky-400\/60 {
  background-color: rgb(56 189 248 / 0.6);
}

.bg-sky-400\/65 {
  background-color: rgb(56 189 248 / 0.65);
}

.bg-sky-400\/70 {
  background-color: rgb(56 189 248 / 0.7);
}

.bg-sky-400\/75 {
  background-color: rgb(56 189 248 / 0.75);
}

.bg-sky-400\/80 {
  background-color: rgb(56 189 248 / 0.8);
}

.bg-sky-400\/85 {
  background-color: rgb(56 189 248 / 0.85);
}

.bg-sky-400\/90 {
  background-color: rgb(56 189 248 / 0.9);
}

.bg-sky-400\/95 {
  background-color: rgb(56 189 248 / 0.95);
}

.bg-sky-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1));
}

.bg-sky-50\/0 {
  background-color: rgb(240 249 255 / 0);
}

.bg-sky-50\/10 {
  background-color: rgb(240 249 255 / 0.1);
}

.bg-sky-50\/100 {
  background-color: rgb(240 249 255 / 1);
}

.bg-sky-50\/15 {
  background-color: rgb(240 249 255 / 0.15);
}

.bg-sky-50\/20 {
  background-color: rgb(240 249 255 / 0.2);
}

.bg-sky-50\/25 {
  background-color: rgb(240 249 255 / 0.25);
}

.bg-sky-50\/30 {
  background-color: rgb(240 249 255 / 0.3);
}

.bg-sky-50\/35 {
  background-color: rgb(240 249 255 / 0.35);
}

.bg-sky-50\/40 {
  background-color: rgb(240 249 255 / 0.4);
}

.bg-sky-50\/45 {
  background-color: rgb(240 249 255 / 0.45);
}

.bg-sky-50\/5 {
  background-color: rgb(240 249 255 / 0.05);
}

.bg-sky-50\/50 {
  background-color: rgb(240 249 255 / 0.5);
}

.bg-sky-50\/55 {
  background-color: rgb(240 249 255 / 0.55);
}

.bg-sky-50\/60 {
  background-color: rgb(240 249 255 / 0.6);
}

.bg-sky-50\/65 {
  background-color: rgb(240 249 255 / 0.65);
}

.bg-sky-50\/70 {
  background-color: rgb(240 249 255 / 0.7);
}

.bg-sky-50\/75 {
  background-color: rgb(240 249 255 / 0.75);
}

.bg-sky-50\/80 {
  background-color: rgb(240 249 255 / 0.8);
}

.bg-sky-50\/85 {
  background-color: rgb(240 249 255 / 0.85);
}

.bg-sky-50\/90 {
  background-color: rgb(240 249 255 / 0.9);
}

.bg-sky-50\/95 {
  background-color: rgb(240 249 255 / 0.95);
}

.bg-sky-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(14 165 233 / var(--tw-bg-opacity, 1));
}

.bg-sky-500\/0 {
  background-color: rgb(14 165 233 / 0);
}

.bg-sky-500\/10 {
  background-color: rgb(14 165 233 / 0.1);
}

.bg-sky-500\/100 {
  background-color: rgb(14 165 233 / 1);
}

.bg-sky-500\/15 {
  background-color: rgb(14 165 233 / 0.15);
}

.bg-sky-500\/20 {
  background-color: rgb(14 165 233 / 0.2);
}

.bg-sky-500\/25 {
  background-color: rgb(14 165 233 / 0.25);
}

.bg-sky-500\/30 {
  background-color: rgb(14 165 233 / 0.3);
}

.bg-sky-500\/35 {
  background-color: rgb(14 165 233 / 0.35);
}

.bg-sky-500\/40 {
  background-color: rgb(14 165 233 / 0.4);
}

.bg-sky-500\/45 {
  background-color: rgb(14 165 233 / 0.45);
}

.bg-sky-500\/5 {
  background-color: rgb(14 165 233 / 0.05);
}

.bg-sky-500\/50 {
  background-color: rgb(14 165 233 / 0.5);
}

.bg-sky-500\/55 {
  background-color: rgb(14 165 233 / 0.55);
}

.bg-sky-500\/60 {
  background-color: rgb(14 165 233 / 0.6);
}

.bg-sky-500\/65 {
  background-color: rgb(14 165 233 / 0.65);
}

.bg-sky-500\/70 {
  background-color: rgb(14 165 233 / 0.7);
}

.bg-sky-500\/75 {
  background-color: rgb(14 165 233 / 0.75);
}

.bg-sky-500\/80 {
  background-color: rgb(14 165 233 / 0.8);
}

.bg-sky-500\/85 {
  background-color: rgb(14 165 233 / 0.85);
}

.bg-sky-500\/90 {
  background-color: rgb(14 165 233 / 0.9);
}

.bg-sky-500\/95 {
  background-color: rgb(14 165 233 / 0.95);
}

.bg-sky-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(2 132 199 / var(--tw-bg-opacity, 1));
}

.bg-sky-600\/0 {
  background-color: rgb(2 132 199 / 0);
}

.bg-sky-600\/10 {
  background-color: rgb(2 132 199 / 0.1);
}

.bg-sky-600\/100 {
  background-color: rgb(2 132 199 / 1);
}

.bg-sky-600\/15 {
  background-color: rgb(2 132 199 / 0.15);
}

.bg-sky-600\/20 {
  background-color: rgb(2 132 199 / 0.2);
}

.bg-sky-600\/25 {
  background-color: rgb(2 132 199 / 0.25);
}

.bg-sky-600\/30 {
  background-color: rgb(2 132 199 / 0.3);
}

.bg-sky-600\/35 {
  background-color: rgb(2 132 199 / 0.35);
}

.bg-sky-600\/40 {
  background-color: rgb(2 132 199 / 0.4);
}

.bg-sky-600\/45 {
  background-color: rgb(2 132 199 / 0.45);
}

.bg-sky-600\/5 {
  background-color: rgb(2 132 199 / 0.05);
}

.bg-sky-600\/50 {
  background-color: rgb(2 132 199 / 0.5);
}

.bg-sky-600\/55 {
  background-color: rgb(2 132 199 / 0.55);
}

.bg-sky-600\/60 {
  background-color: rgb(2 132 199 / 0.6);
}

.bg-sky-600\/65 {
  background-color: rgb(2 132 199 / 0.65);
}

.bg-sky-600\/70 {
  background-color: rgb(2 132 199 / 0.7);
}

.bg-sky-600\/75 {
  background-color: rgb(2 132 199 / 0.75);
}

.bg-sky-600\/80 {
  background-color: rgb(2 132 199 / 0.8);
}

.bg-sky-600\/85 {
  background-color: rgb(2 132 199 / 0.85);
}

.bg-sky-600\/90 {
  background-color: rgb(2 132 199 / 0.9);
}

.bg-sky-600\/95 {
  background-color: rgb(2 132 199 / 0.95);
}

.bg-sky-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(3 105 161 / var(--tw-bg-opacity, 1));
}

.bg-sky-700\/0 {
  background-color: rgb(3 105 161 / 0);
}

.bg-sky-700\/10 {
  background-color: rgb(3 105 161 / 0.1);
}

.bg-sky-700\/100 {
  background-color: rgb(3 105 161 / 1);
}

.bg-sky-700\/15 {
  background-color: rgb(3 105 161 / 0.15);
}

.bg-sky-700\/20 {
  background-color: rgb(3 105 161 / 0.2);
}

.bg-sky-700\/25 {
  background-color: rgb(3 105 161 / 0.25);
}

.bg-sky-700\/30 {
  background-color: rgb(3 105 161 / 0.3);
}

.bg-sky-700\/35 {
  background-color: rgb(3 105 161 / 0.35);
}

.bg-sky-700\/40 {
  background-color: rgb(3 105 161 / 0.4);
}

.bg-sky-700\/45 {
  background-color: rgb(3 105 161 / 0.45);
}

.bg-sky-700\/5 {
  background-color: rgb(3 105 161 / 0.05);
}

.bg-sky-700\/50 {
  background-color: rgb(3 105 161 / 0.5);
}

.bg-sky-700\/55 {
  background-color: rgb(3 105 161 / 0.55);
}

.bg-sky-700\/60 {
  background-color: rgb(3 105 161 / 0.6);
}

.bg-sky-700\/65 {
  background-color: rgb(3 105 161 / 0.65);
}

.bg-sky-700\/70 {
  background-color: rgb(3 105 161 / 0.7);
}

.bg-sky-700\/75 {
  background-color: rgb(3 105 161 / 0.75);
}

.bg-sky-700\/80 {
  background-color: rgb(3 105 161 / 0.8);
}

.bg-sky-700\/85 {
  background-color: rgb(3 105 161 / 0.85);
}

.bg-sky-700\/90 {
  background-color: rgb(3 105 161 / 0.9);
}

.bg-sky-700\/95 {
  background-color: rgb(3 105 161 / 0.95);
}

.bg-sky-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(7 89 133 / var(--tw-bg-opacity, 1));
}

.bg-sky-800\/0 {
  background-color: rgb(7 89 133 / 0);
}

.bg-sky-800\/10 {
  background-color: rgb(7 89 133 / 0.1);
}

.bg-sky-800\/100 {
  background-color: rgb(7 89 133 / 1);
}

.bg-sky-800\/15 {
  background-color: rgb(7 89 133 / 0.15);
}

.bg-sky-800\/20 {
  background-color: rgb(7 89 133 / 0.2);
}

.bg-sky-800\/25 {
  background-color: rgb(7 89 133 / 0.25);
}

.bg-sky-800\/30 {
  background-color: rgb(7 89 133 / 0.3);
}

.bg-sky-800\/35 {
  background-color: rgb(7 89 133 / 0.35);
}

.bg-sky-800\/40 {
  background-color: rgb(7 89 133 / 0.4);
}

.bg-sky-800\/45 {
  background-color: rgb(7 89 133 / 0.45);
}

.bg-sky-800\/5 {
  background-color: rgb(7 89 133 / 0.05);
}

.bg-sky-800\/50 {
  background-color: rgb(7 89 133 / 0.5);
}

.bg-sky-800\/55 {
  background-color: rgb(7 89 133 / 0.55);
}

.bg-sky-800\/60 {
  background-color: rgb(7 89 133 / 0.6);
}

.bg-sky-800\/65 {
  background-color: rgb(7 89 133 / 0.65);
}

.bg-sky-800\/70 {
  background-color: rgb(7 89 133 / 0.7);
}

.bg-sky-800\/75 {
  background-color: rgb(7 89 133 / 0.75);
}

.bg-sky-800\/80 {
  background-color: rgb(7 89 133 / 0.8);
}

.bg-sky-800\/85 {
  background-color: rgb(7 89 133 / 0.85);
}

.bg-sky-800\/90 {
  background-color: rgb(7 89 133 / 0.9);
}

.bg-sky-800\/95 {
  background-color: rgb(7 89 133 / 0.95);
}

.bg-sky-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(12 74 110 / var(--tw-bg-opacity, 1));
}

.bg-sky-900\/0 {
  background-color: rgb(12 74 110 / 0);
}

.bg-sky-900\/10 {
  background-color: rgb(12 74 110 / 0.1);
}

.bg-sky-900\/100 {
  background-color: rgb(12 74 110 / 1);
}

.bg-sky-900\/15 {
  background-color: rgb(12 74 110 / 0.15);
}

.bg-sky-900\/20 {
  background-color: rgb(12 74 110 / 0.2);
}

.bg-sky-900\/25 {
  background-color: rgb(12 74 110 / 0.25);
}

.bg-sky-900\/30 {
  background-color: rgb(12 74 110 / 0.3);
}

.bg-sky-900\/35 {
  background-color: rgb(12 74 110 / 0.35);
}

.bg-sky-900\/40 {
  background-color: rgb(12 74 110 / 0.4);
}

.bg-sky-900\/45 {
  background-color: rgb(12 74 110 / 0.45);
}

.bg-sky-900\/5 {
  background-color: rgb(12 74 110 / 0.05);
}

.bg-sky-900\/50 {
  background-color: rgb(12 74 110 / 0.5);
}

.bg-sky-900\/55 {
  background-color: rgb(12 74 110 / 0.55);
}

.bg-sky-900\/60 {
  background-color: rgb(12 74 110 / 0.6);
}

.bg-sky-900\/65 {
  background-color: rgb(12 74 110 / 0.65);
}

.bg-sky-900\/70 {
  background-color: rgb(12 74 110 / 0.7);
}

.bg-sky-900\/75 {
  background-color: rgb(12 74 110 / 0.75);
}

.bg-sky-900\/80 {
  background-color: rgb(12 74 110 / 0.8);
}

.bg-sky-900\/85 {
  background-color: rgb(12 74 110 / 0.85);
}

.bg-sky-900\/90 {
  background-color: rgb(12 74 110 / 0.9);
}

.bg-sky-900\/95 {
  background-color: rgb(12 74 110 / 0.95);
}

.bg-slate-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
}

.bg-slate-100\/0 {
  background-color: rgb(241 245 249 / 0);
}

.bg-slate-100\/10 {
  background-color: rgb(241 245 249 / 0.1);
}

.bg-slate-100\/100 {
  background-color: rgb(241 245 249 / 1);
}

.bg-slate-100\/15 {
  background-color: rgb(241 245 249 / 0.15);
}

.bg-slate-100\/20 {
  background-color: rgb(241 245 249 / 0.2);
}

.bg-slate-100\/25 {
  background-color: rgb(241 245 249 / 0.25);
}

.bg-slate-100\/30 {
  background-color: rgb(241 245 249 / 0.3);
}

.bg-slate-100\/35 {
  background-color: rgb(241 245 249 / 0.35);
}

.bg-slate-100\/40 {
  background-color: rgb(241 245 249 / 0.4);
}

.bg-slate-100\/45 {
  background-color: rgb(241 245 249 / 0.45);
}

.bg-slate-100\/5 {
  background-color: rgb(241 245 249 / 0.05);
}

.bg-slate-100\/50 {
  background-color: rgb(241 245 249 / 0.5);
}

.bg-slate-100\/55 {
  background-color: rgb(241 245 249 / 0.55);
}

.bg-slate-100\/60 {
  background-color: rgb(241 245 249 / 0.6);
}

.bg-slate-100\/65 {
  background-color: rgb(241 245 249 / 0.65);
}

.bg-slate-100\/70 {
  background-color: rgb(241 245 249 / 0.7);
}

.bg-slate-100\/75 {
  background-color: rgb(241 245 249 / 0.75);
}

.bg-slate-100\/80 {
  background-color: rgb(241 245 249 / 0.8);
}

.bg-slate-100\/85 {
  background-color: rgb(241 245 249 / 0.85);
}

.bg-slate-100\/90 {
  background-color: rgb(241 245 249 / 0.9);
}

.bg-slate-100\/95 {
  background-color: rgb(241 245 249 / 0.95);
}

.bg-slate-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
}

.bg-slate-200\/0 {
  background-color: rgb(226 232 240 / 0);
}

.bg-slate-200\/10 {
  background-color: rgb(226 232 240 / 0.1);
}

.bg-slate-200\/100 {
  background-color: rgb(226 232 240 / 1);
}

.bg-slate-200\/15 {
  background-color: rgb(226 232 240 / 0.15);
}

.bg-slate-200\/20 {
  background-color: rgb(226 232 240 / 0.2);
}

.bg-slate-200\/25 {
  background-color: rgb(226 232 240 / 0.25);
}

.bg-slate-200\/30 {
  background-color: rgb(226 232 240 / 0.3);
}

.bg-slate-200\/35 {
  background-color: rgb(226 232 240 / 0.35);
}

.bg-slate-200\/40 {
  background-color: rgb(226 232 240 / 0.4);
}

.bg-slate-200\/45 {
  background-color: rgb(226 232 240 / 0.45);
}

.bg-slate-200\/5 {
  background-color: rgb(226 232 240 / 0.05);
}

.bg-slate-200\/50 {
  background-color: rgb(226 232 240 / 0.5);
}

.bg-slate-200\/55 {
  background-color: rgb(226 232 240 / 0.55);
}

.bg-slate-200\/60 {
  background-color: rgb(226 232 240 / 0.6);
}

.bg-slate-200\/65 {
  background-color: rgb(226 232 240 / 0.65);
}

.bg-slate-200\/70 {
  background-color: rgb(226 232 240 / 0.7);
}

.bg-slate-200\/75 {
  background-color: rgb(226 232 240 / 0.75);
}

.bg-slate-200\/80 {
  background-color: rgb(226 232 240 / 0.8);
}

.bg-slate-200\/85 {
  background-color: rgb(226 232 240 / 0.85);
}

.bg-slate-200\/90 {
  background-color: rgb(226 232 240 / 0.9);
}

.bg-slate-200\/95 {
  background-color: rgb(226 232 240 / 0.95);
}

.bg-slate-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(203 213 225 / var(--tw-bg-opacity, 1));
}

.bg-slate-300\/0 {
  background-color: rgb(203 213 225 / 0);
}

.bg-slate-300\/10 {
  background-color: rgb(203 213 225 / 0.1);
}

.bg-slate-300\/100 {
  background-color: rgb(203 213 225 / 1);
}

.bg-slate-300\/15 {
  background-color: rgb(203 213 225 / 0.15);
}

.bg-slate-300\/20 {
  background-color: rgb(203 213 225 / 0.2);
}

.bg-slate-300\/25 {
  background-color: rgb(203 213 225 / 0.25);
}

.bg-slate-300\/30 {
  background-color: rgb(203 213 225 / 0.3);
}

.bg-slate-300\/35 {
  background-color: rgb(203 213 225 / 0.35);
}

.bg-slate-300\/40 {
  background-color: rgb(203 213 225 / 0.4);
}

.bg-slate-300\/45 {
  background-color: rgb(203 213 225 / 0.45);
}

.bg-slate-300\/5 {
  background-color: rgb(203 213 225 / 0.05);
}

.bg-slate-300\/50 {
  background-color: rgb(203 213 225 / 0.5);
}

.bg-slate-300\/55 {
  background-color: rgb(203 213 225 / 0.55);
}

.bg-slate-300\/60 {
  background-color: rgb(203 213 225 / 0.6);
}

.bg-slate-300\/65 {
  background-color: rgb(203 213 225 / 0.65);
}

.bg-slate-300\/70 {
  background-color: rgb(203 213 225 / 0.7);
}

.bg-slate-300\/75 {
  background-color: rgb(203 213 225 / 0.75);
}

.bg-slate-300\/80 {
  background-color: rgb(203 213 225 / 0.8);
}

.bg-slate-300\/85 {
  background-color: rgb(203 213 225 / 0.85);
}

.bg-slate-300\/90 {
  background-color: rgb(203 213 225 / 0.9);
}

.bg-slate-300\/95 {
  background-color: rgb(203 213 225 / 0.95);
}

.bg-slate-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(148 163 184 / var(--tw-bg-opacity, 1));
}

.bg-slate-400\/0 {
  background-color: rgb(148 163 184 / 0);
}

.bg-slate-400\/10 {
  background-color: rgb(148 163 184 / 0.1);
}

.bg-slate-400\/100 {
  background-color: rgb(148 163 184 / 1);
}

.bg-slate-400\/15 {
  background-color: rgb(148 163 184 / 0.15);
}

.bg-slate-400\/20 {
  background-color: rgb(148 163 184 / 0.2);
}

.bg-slate-400\/25 {
  background-color: rgb(148 163 184 / 0.25);
}

.bg-slate-400\/30 {
  background-color: rgb(148 163 184 / 0.3);
}

.bg-slate-400\/35 {
  background-color: rgb(148 163 184 / 0.35);
}

.bg-slate-400\/40 {
  background-color: rgb(148 163 184 / 0.4);
}

.bg-slate-400\/45 {
  background-color: rgb(148 163 184 / 0.45);
}

.bg-slate-400\/5 {
  background-color: rgb(148 163 184 / 0.05);
}

.bg-slate-400\/50 {
  background-color: rgb(148 163 184 / 0.5);
}

.bg-slate-400\/55 {
  background-color: rgb(148 163 184 / 0.55);
}

.bg-slate-400\/60 {
  background-color: rgb(148 163 184 / 0.6);
}

.bg-slate-400\/65 {
  background-color: rgb(148 163 184 / 0.65);
}

.bg-slate-400\/70 {
  background-color: rgb(148 163 184 / 0.7);
}

.bg-slate-400\/75 {
  background-color: rgb(148 163 184 / 0.75);
}

.bg-slate-400\/80 {
  background-color: rgb(148 163 184 / 0.8);
}

.bg-slate-400\/85 {
  background-color: rgb(148 163 184 / 0.85);
}

.bg-slate-400\/90 {
  background-color: rgb(148 163 184 / 0.9);
}

.bg-slate-400\/95 {
  background-color: rgb(148 163 184 / 0.95);
}

.bg-slate-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}

.bg-slate-50\/0 {
  background-color: rgb(248 250 252 / 0);
}

.bg-slate-50\/10 {
  background-color: rgb(248 250 252 / 0.1);
}

.bg-slate-50\/100 {
  background-color: rgb(248 250 252 / 1);
}

.bg-slate-50\/15 {
  background-color: rgb(248 250 252 / 0.15);
}

.bg-slate-50\/20 {
  background-color: rgb(248 250 252 / 0.2);
}

.bg-slate-50\/25 {
  background-color: rgb(248 250 252 / 0.25);
}

.bg-slate-50\/30 {
  background-color: rgb(248 250 252 / 0.3);
}

.bg-slate-50\/35 {
  background-color: rgb(248 250 252 / 0.35);
}

.bg-slate-50\/40 {
  background-color: rgb(248 250 252 / 0.4);
}

.bg-slate-50\/45 {
  background-color: rgb(248 250 252 / 0.45);
}

.bg-slate-50\/5 {
  background-color: rgb(248 250 252 / 0.05);
}

.bg-slate-50\/50 {
  background-color: rgb(248 250 252 / 0.5);
}

.bg-slate-50\/55 {
  background-color: rgb(248 250 252 / 0.55);
}

.bg-slate-50\/60 {
  background-color: rgb(248 250 252 / 0.6);
}

.bg-slate-50\/65 {
  background-color: rgb(248 250 252 / 0.65);
}

.bg-slate-50\/70 {
  background-color: rgb(248 250 252 / 0.7);
}

.bg-slate-50\/75 {
  background-color: rgb(248 250 252 / 0.75);
}

.bg-slate-50\/80 {
  background-color: rgb(248 250 252 / 0.8);
}

.bg-slate-50\/85 {
  background-color: rgb(248 250 252 / 0.85);
}

.bg-slate-50\/90 {
  background-color: rgb(248 250 252 / 0.9);
}

.bg-slate-50\/95 {
  background-color: rgb(248 250 252 / 0.95);
}

.bg-slate-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(100 116 139 / var(--tw-bg-opacity, 1));
}

.bg-slate-500\/0 {
  background-color: rgb(100 116 139 / 0);
}

.bg-slate-500\/10 {
  background-color: rgb(100 116 139 / 0.1);
}

.bg-slate-500\/100 {
  background-color: rgb(100 116 139 / 1);
}

.bg-slate-500\/15 {
  background-color: rgb(100 116 139 / 0.15);
}

.bg-slate-500\/20 {
  background-color: rgb(100 116 139 / 0.2);
}

.bg-slate-500\/25 {
  background-color: rgb(100 116 139 / 0.25);
}

.bg-slate-500\/30 {
  background-color: rgb(100 116 139 / 0.3);
}

.bg-slate-500\/35 {
  background-color: rgb(100 116 139 / 0.35);
}

.bg-slate-500\/40 {
  background-color: rgb(100 116 139 / 0.4);
}

.bg-slate-500\/45 {
  background-color: rgb(100 116 139 / 0.45);
}

.bg-slate-500\/5 {
  background-color: rgb(100 116 139 / 0.05);
}

.bg-slate-500\/50 {
  background-color: rgb(100 116 139 / 0.5);
}

.bg-slate-500\/55 {
  background-color: rgb(100 116 139 / 0.55);
}

.bg-slate-500\/60 {
  background-color: rgb(100 116 139 / 0.6);
}

.bg-slate-500\/65 {
  background-color: rgb(100 116 139 / 0.65);
}

.bg-slate-500\/70 {
  background-color: rgb(100 116 139 / 0.7);
}

.bg-slate-500\/75 {
  background-color: rgb(100 116 139 / 0.75);
}

.bg-slate-500\/80 {
  background-color: rgb(100 116 139 / 0.8);
}

.bg-slate-500\/85 {
  background-color: rgb(100 116 139 / 0.85);
}

.bg-slate-500\/90 {
  background-color: rgb(100 116 139 / 0.9);
}

.bg-slate-500\/95 {
  background-color: rgb(100 116 139 / 0.95);
}

.bg-slate-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(71 85 105 / var(--tw-bg-opacity, 1));
}

.bg-slate-600\/0 {
  background-color: rgb(71 85 105 / 0);
}

.bg-slate-600\/10 {
  background-color: rgb(71 85 105 / 0.1);
}

.bg-slate-600\/100 {
  background-color: rgb(71 85 105 / 1);
}

.bg-slate-600\/15 {
  background-color: rgb(71 85 105 / 0.15);
}

.bg-slate-600\/20 {
  background-color: rgb(71 85 105 / 0.2);
}

.bg-slate-600\/25 {
  background-color: rgb(71 85 105 / 0.25);
}

.bg-slate-600\/30 {
  background-color: rgb(71 85 105 / 0.3);
}

.bg-slate-600\/35 {
  background-color: rgb(71 85 105 / 0.35);
}

.bg-slate-600\/40 {
  background-color: rgb(71 85 105 / 0.4);
}

.bg-slate-600\/45 {
  background-color: rgb(71 85 105 / 0.45);
}

.bg-slate-600\/5 {
  background-color: rgb(71 85 105 / 0.05);
}

.bg-slate-600\/50 {
  background-color: rgb(71 85 105 / 0.5);
}

.bg-slate-600\/55 {
  background-color: rgb(71 85 105 / 0.55);
}

.bg-slate-600\/60 {
  background-color: rgb(71 85 105 / 0.6);
}

.bg-slate-600\/65 {
  background-color: rgb(71 85 105 / 0.65);
}

.bg-slate-600\/70 {
  background-color: rgb(71 85 105 / 0.7);
}

.bg-slate-600\/75 {
  background-color: rgb(71 85 105 / 0.75);
}

.bg-slate-600\/80 {
  background-color: rgb(71 85 105 / 0.8);
}

.bg-slate-600\/85 {
  background-color: rgb(71 85 105 / 0.85);
}

.bg-slate-600\/90 {
  background-color: rgb(71 85 105 / 0.9);
}

.bg-slate-600\/95 {
  background-color: rgb(71 85 105 / 0.95);
}

.bg-slate-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(51 65 85 / var(--tw-bg-opacity, 1));
}

.bg-slate-700\/0 {
  background-color: rgb(51 65 85 / 0);
}

.bg-slate-700\/10 {
  background-color: rgb(51 65 85 / 0.1);
}

.bg-slate-700\/100 {
  background-color: rgb(51 65 85 / 1);
}

.bg-slate-700\/15 {
  background-color: rgb(51 65 85 / 0.15);
}

.bg-slate-700\/20 {
  background-color: rgb(51 65 85 / 0.2);
}

.bg-slate-700\/25 {
  background-color: rgb(51 65 85 / 0.25);
}

.bg-slate-700\/30 {
  background-color: rgb(51 65 85 / 0.3);
}

.bg-slate-700\/35 {
  background-color: rgb(51 65 85 / 0.35);
}

.bg-slate-700\/40 {
  background-color: rgb(51 65 85 / 0.4);
}

.bg-slate-700\/45 {
  background-color: rgb(51 65 85 / 0.45);
}

.bg-slate-700\/5 {
  background-color: rgb(51 65 85 / 0.05);
}

.bg-slate-700\/50 {
  background-color: rgb(51 65 85 / 0.5);
}

.bg-slate-700\/55 {
  background-color: rgb(51 65 85 / 0.55);
}

.bg-slate-700\/60 {
  background-color: rgb(51 65 85 / 0.6);
}

.bg-slate-700\/65 {
  background-color: rgb(51 65 85 / 0.65);
}

.bg-slate-700\/70 {
  background-color: rgb(51 65 85 / 0.7);
}

.bg-slate-700\/75 {
  background-color: rgb(51 65 85 / 0.75);
}

.bg-slate-700\/80 {
  background-color: rgb(51 65 85 / 0.8);
}

.bg-slate-700\/85 {
  background-color: rgb(51 65 85 / 0.85);
}

.bg-slate-700\/90 {
  background-color: rgb(51 65 85 / 0.9);
}

.bg-slate-700\/95 {
  background-color: rgb(51 65 85 / 0.95);
}

.bg-slate-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(30 41 59 / var(--tw-bg-opacity, 1));
}

.bg-slate-800\/0 {
  background-color: rgb(30 41 59 / 0);
}

.bg-slate-800\/10 {
  background-color: rgb(30 41 59 / 0.1);
}

.bg-slate-800\/100 {
  background-color: rgb(30 41 59 / 1);
}

.bg-slate-800\/15 {
  background-color: rgb(30 41 59 / 0.15);
}

.bg-slate-800\/20 {
  background-color: rgb(30 41 59 / 0.2);
}

.bg-slate-800\/25 {
  background-color: rgb(30 41 59 / 0.25);
}

.bg-slate-800\/30 {
  background-color: rgb(30 41 59 / 0.3);
}

.bg-slate-800\/35 {
  background-color: rgb(30 41 59 / 0.35);
}

.bg-slate-800\/40 {
  background-color: rgb(30 41 59 / 0.4);
}

.bg-slate-800\/45 {
  background-color: rgb(30 41 59 / 0.45);
}

.bg-slate-800\/5 {
  background-color: rgb(30 41 59 / 0.05);
}

.bg-slate-800\/50 {
  background-color: rgb(30 41 59 / 0.5);
}

.bg-slate-800\/55 {
  background-color: rgb(30 41 59 / 0.55);
}

.bg-slate-800\/60 {
  background-color: rgb(30 41 59 / 0.6);
}

.bg-slate-800\/65 {
  background-color: rgb(30 41 59 / 0.65);
}

.bg-slate-800\/70 {
  background-color: rgb(30 41 59 / 0.7);
}

.bg-slate-800\/75 {
  background-color: rgb(30 41 59 / 0.75);
}

.bg-slate-800\/80 {
  background-color: rgb(30 41 59 / 0.8);
}

.bg-slate-800\/85 {
  background-color: rgb(30 41 59 / 0.85);
}

.bg-slate-800\/90 {
  background-color: rgb(30 41 59 / 0.9);
}

.bg-slate-800\/95 {
  background-color: rgb(30 41 59 / 0.95);
}

.bg-slate-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(15 23 42 / var(--tw-bg-opacity, 1));
}

.bg-slate-900\/0 {
  background-color: rgb(15 23 42 / 0);
}

.bg-slate-900\/10 {
  background-color: rgb(15 23 42 / 0.1);
}

.bg-slate-900\/100 {
  background-color: rgb(15 23 42 / 1);
}

.bg-slate-900\/15 {
  background-color: rgb(15 23 42 / 0.15);
}

.bg-slate-900\/20 {
  background-color: rgb(15 23 42 / 0.2);
}

.bg-slate-900\/25 {
  background-color: rgb(15 23 42 / 0.25);
}

.bg-slate-900\/30 {
  background-color: rgb(15 23 42 / 0.3);
}

.bg-slate-900\/35 {
  background-color: rgb(15 23 42 / 0.35);
}

.bg-slate-900\/40 {
  background-color: rgb(15 23 42 / 0.4);
}

.bg-slate-900\/45 {
  background-color: rgb(15 23 42 / 0.45);
}

.bg-slate-900\/5 {
  background-color: rgb(15 23 42 / 0.05);
}

.bg-slate-900\/50 {
  background-color: rgb(15 23 42 / 0.5);
}

.bg-slate-900\/55 {
  background-color: rgb(15 23 42 / 0.55);
}

.bg-slate-900\/60 {
  background-color: rgb(15 23 42 / 0.6);
}

.bg-slate-900\/65 {
  background-color: rgb(15 23 42 / 0.65);
}

.bg-slate-900\/70 {
  background-color: rgb(15 23 42 / 0.7);
}

.bg-slate-900\/75 {
  background-color: rgb(15 23 42 / 0.75);
}

.bg-slate-900\/80 {
  background-color: rgb(15 23 42 / 0.8);
}

.bg-slate-900\/85 {
  background-color: rgb(15 23 42 / 0.85);
}

.bg-slate-900\/90 {
  background-color: rgb(15 23 42 / 0.9);
}

.bg-slate-900\/95 {
  background-color: rgb(15 23 42 / 0.95);
}

.bg-slate-950\/5 {
  background-color: rgb(2 6 23 / 0.05);
}

.bg-stone-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 244 / var(--tw-bg-opacity, 1));
}

.bg-stone-100\/0 {
  background-color: rgb(245 245 244 / 0);
}

.bg-stone-100\/10 {
  background-color: rgb(245 245 244 / 0.1);
}

.bg-stone-100\/100 {
  background-color: rgb(245 245 244 / 1);
}

.bg-stone-100\/15 {
  background-color: rgb(245 245 244 / 0.15);
}

.bg-stone-100\/20 {
  background-color: rgb(245 245 244 / 0.2);
}

.bg-stone-100\/25 {
  background-color: rgb(245 245 244 / 0.25);
}

.bg-stone-100\/30 {
  background-color: rgb(245 245 244 / 0.3);
}

.bg-stone-100\/35 {
  background-color: rgb(245 245 244 / 0.35);
}

.bg-stone-100\/40 {
  background-color: rgb(245 245 244 / 0.4);
}

.bg-stone-100\/45 {
  background-color: rgb(245 245 244 / 0.45);
}

.bg-stone-100\/5 {
  background-color: rgb(245 245 244 / 0.05);
}

.bg-stone-100\/50 {
  background-color: rgb(245 245 244 / 0.5);
}

.bg-stone-100\/55 {
  background-color: rgb(245 245 244 / 0.55);
}

.bg-stone-100\/60 {
  background-color: rgb(245 245 244 / 0.6);
}

.bg-stone-100\/65 {
  background-color: rgb(245 245 244 / 0.65);
}

.bg-stone-100\/70 {
  background-color: rgb(245 245 244 / 0.7);
}

.bg-stone-100\/75 {
  background-color: rgb(245 245 244 / 0.75);
}

.bg-stone-100\/80 {
  background-color: rgb(245 245 244 / 0.8);
}

.bg-stone-100\/85 {
  background-color: rgb(245 245 244 / 0.85);
}

.bg-stone-100\/90 {
  background-color: rgb(245 245 244 / 0.9);
}

.bg-stone-100\/95 {
  background-color: rgb(245 245 244 / 0.95);
}

.bg-stone-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(231 229 228 / var(--tw-bg-opacity, 1));
}

.bg-stone-200\/0 {
  background-color: rgb(231 229 228 / 0);
}

.bg-stone-200\/10 {
  background-color: rgb(231 229 228 / 0.1);
}

.bg-stone-200\/100 {
  background-color: rgb(231 229 228 / 1);
}

.bg-stone-200\/15 {
  background-color: rgb(231 229 228 / 0.15);
}

.bg-stone-200\/20 {
  background-color: rgb(231 229 228 / 0.2);
}

.bg-stone-200\/25 {
  background-color: rgb(231 229 228 / 0.25);
}

.bg-stone-200\/30 {
  background-color: rgb(231 229 228 / 0.3);
}

.bg-stone-200\/35 {
  background-color: rgb(231 229 228 / 0.35);
}

.bg-stone-200\/40 {
  background-color: rgb(231 229 228 / 0.4);
}

.bg-stone-200\/45 {
  background-color: rgb(231 229 228 / 0.45);
}

.bg-stone-200\/5 {
  background-color: rgb(231 229 228 / 0.05);
}

.bg-stone-200\/50 {
  background-color: rgb(231 229 228 / 0.5);
}

.bg-stone-200\/55 {
  background-color: rgb(231 229 228 / 0.55);
}

.bg-stone-200\/60 {
  background-color: rgb(231 229 228 / 0.6);
}

.bg-stone-200\/65 {
  background-color: rgb(231 229 228 / 0.65);
}

.bg-stone-200\/70 {
  background-color: rgb(231 229 228 / 0.7);
}

.bg-stone-200\/75 {
  background-color: rgb(231 229 228 / 0.75);
}

.bg-stone-200\/80 {
  background-color: rgb(231 229 228 / 0.8);
}

.bg-stone-200\/85 {
  background-color: rgb(231 229 228 / 0.85);
}

.bg-stone-200\/90 {
  background-color: rgb(231 229 228 / 0.9);
}

.bg-stone-200\/95 {
  background-color: rgb(231 229 228 / 0.95);
}

.bg-stone-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(214 211 209 / var(--tw-bg-opacity, 1));
}

.bg-stone-300\/0 {
  background-color: rgb(214 211 209 / 0);
}

.bg-stone-300\/10 {
  background-color: rgb(214 211 209 / 0.1);
}

.bg-stone-300\/100 {
  background-color: rgb(214 211 209 / 1);
}

.bg-stone-300\/15 {
  background-color: rgb(214 211 209 / 0.15);
}

.bg-stone-300\/20 {
  background-color: rgb(214 211 209 / 0.2);
}

.bg-stone-300\/25 {
  background-color: rgb(214 211 209 / 0.25);
}

.bg-stone-300\/30 {
  background-color: rgb(214 211 209 / 0.3);
}

.bg-stone-300\/35 {
  background-color: rgb(214 211 209 / 0.35);
}

.bg-stone-300\/40 {
  background-color: rgb(214 211 209 / 0.4);
}

.bg-stone-300\/45 {
  background-color: rgb(214 211 209 / 0.45);
}

.bg-stone-300\/5 {
  background-color: rgb(214 211 209 / 0.05);
}

.bg-stone-300\/50 {
  background-color: rgb(214 211 209 / 0.5);
}

.bg-stone-300\/55 {
  background-color: rgb(214 211 209 / 0.55);
}

.bg-stone-300\/60 {
  background-color: rgb(214 211 209 / 0.6);
}

.bg-stone-300\/65 {
  background-color: rgb(214 211 209 / 0.65);
}

.bg-stone-300\/70 {
  background-color: rgb(214 211 209 / 0.7);
}

.bg-stone-300\/75 {
  background-color: rgb(214 211 209 / 0.75);
}

.bg-stone-300\/80 {
  background-color: rgb(214 211 209 / 0.8);
}

.bg-stone-300\/85 {
  background-color: rgb(214 211 209 / 0.85);
}

.bg-stone-300\/90 {
  background-color: rgb(214 211 209 / 0.9);
}

.bg-stone-300\/95 {
  background-color: rgb(214 211 209 / 0.95);
}

.bg-stone-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(168 162 158 / var(--tw-bg-opacity, 1));
}

.bg-stone-400\/0 {
  background-color: rgb(168 162 158 / 0);
}

.bg-stone-400\/10 {
  background-color: rgb(168 162 158 / 0.1);
}

.bg-stone-400\/100 {
  background-color: rgb(168 162 158 / 1);
}

.bg-stone-400\/15 {
  background-color: rgb(168 162 158 / 0.15);
}

.bg-stone-400\/20 {
  background-color: rgb(168 162 158 / 0.2);
}

.bg-stone-400\/25 {
  background-color: rgb(168 162 158 / 0.25);
}

.bg-stone-400\/30 {
  background-color: rgb(168 162 158 / 0.3);
}

.bg-stone-400\/35 {
  background-color: rgb(168 162 158 / 0.35);
}

.bg-stone-400\/40 {
  background-color: rgb(168 162 158 / 0.4);
}

.bg-stone-400\/45 {
  background-color: rgb(168 162 158 / 0.45);
}

.bg-stone-400\/5 {
  background-color: rgb(168 162 158 / 0.05);
}

.bg-stone-400\/50 {
  background-color: rgb(168 162 158 / 0.5);
}

.bg-stone-400\/55 {
  background-color: rgb(168 162 158 / 0.55);
}

.bg-stone-400\/60 {
  background-color: rgb(168 162 158 / 0.6);
}

.bg-stone-400\/65 {
  background-color: rgb(168 162 158 / 0.65);
}

.bg-stone-400\/70 {
  background-color: rgb(168 162 158 / 0.7);
}

.bg-stone-400\/75 {
  background-color: rgb(168 162 158 / 0.75);
}

.bg-stone-400\/80 {
  background-color: rgb(168 162 158 / 0.8);
}

.bg-stone-400\/85 {
  background-color: rgb(168 162 158 / 0.85);
}

.bg-stone-400\/90 {
  background-color: rgb(168 162 158 / 0.9);
}

.bg-stone-400\/95 {
  background-color: rgb(168 162 158 / 0.95);
}

.bg-stone-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 249 / var(--tw-bg-opacity, 1));
}

.bg-stone-50\/0 {
  background-color: rgb(250 250 249 / 0);
}

.bg-stone-50\/10 {
  background-color: rgb(250 250 249 / 0.1);
}

.bg-stone-50\/100 {
  background-color: rgb(250 250 249 / 1);
}

.bg-stone-50\/15 {
  background-color: rgb(250 250 249 / 0.15);
}

.bg-stone-50\/20 {
  background-color: rgb(250 250 249 / 0.2);
}

.bg-stone-50\/25 {
  background-color: rgb(250 250 249 / 0.25);
}

.bg-stone-50\/30 {
  background-color: rgb(250 250 249 / 0.3);
}

.bg-stone-50\/35 {
  background-color: rgb(250 250 249 / 0.35);
}

.bg-stone-50\/40 {
  background-color: rgb(250 250 249 / 0.4);
}

.bg-stone-50\/45 {
  background-color: rgb(250 250 249 / 0.45);
}

.bg-stone-50\/5 {
  background-color: rgb(250 250 249 / 0.05);
}

.bg-stone-50\/50 {
  background-color: rgb(250 250 249 / 0.5);
}

.bg-stone-50\/55 {
  background-color: rgb(250 250 249 / 0.55);
}

.bg-stone-50\/60 {
  background-color: rgb(250 250 249 / 0.6);
}

.bg-stone-50\/65 {
  background-color: rgb(250 250 249 / 0.65);
}

.bg-stone-50\/70 {
  background-color: rgb(250 250 249 / 0.7);
}

.bg-stone-50\/75 {
  background-color: rgb(250 250 249 / 0.75);
}

.bg-stone-50\/80 {
  background-color: rgb(250 250 249 / 0.8);
}

.bg-stone-50\/85 {
  background-color: rgb(250 250 249 / 0.85);
}

.bg-stone-50\/90 {
  background-color: rgb(250 250 249 / 0.9);
}

.bg-stone-50\/95 {
  background-color: rgb(250 250 249 / 0.95);
}

.bg-stone-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(120 113 108 / var(--tw-bg-opacity, 1));
}

.bg-stone-500\/0 {
  background-color: rgb(120 113 108 / 0);
}

.bg-stone-500\/10 {
  background-color: rgb(120 113 108 / 0.1);
}

.bg-stone-500\/100 {
  background-color: rgb(120 113 108 / 1);
}

.bg-stone-500\/15 {
  background-color: rgb(120 113 108 / 0.15);
}

.bg-stone-500\/20 {
  background-color: rgb(120 113 108 / 0.2);
}

.bg-stone-500\/25 {
  background-color: rgb(120 113 108 / 0.25);
}

.bg-stone-500\/30 {
  background-color: rgb(120 113 108 / 0.3);
}

.bg-stone-500\/35 {
  background-color: rgb(120 113 108 / 0.35);
}

.bg-stone-500\/40 {
  background-color: rgb(120 113 108 / 0.4);
}

.bg-stone-500\/45 {
  background-color: rgb(120 113 108 / 0.45);
}

.bg-stone-500\/5 {
  background-color: rgb(120 113 108 / 0.05);
}

.bg-stone-500\/50 {
  background-color: rgb(120 113 108 / 0.5);
}

.bg-stone-500\/55 {
  background-color: rgb(120 113 108 / 0.55);
}

.bg-stone-500\/60 {
  background-color: rgb(120 113 108 / 0.6);
}

.bg-stone-500\/65 {
  background-color: rgb(120 113 108 / 0.65);
}

.bg-stone-500\/70 {
  background-color: rgb(120 113 108 / 0.7);
}

.bg-stone-500\/75 {
  background-color: rgb(120 113 108 / 0.75);
}

.bg-stone-500\/80 {
  background-color: rgb(120 113 108 / 0.8);
}

.bg-stone-500\/85 {
  background-color: rgb(120 113 108 / 0.85);
}

.bg-stone-500\/90 {
  background-color: rgb(120 113 108 / 0.9);
}

.bg-stone-500\/95 {
  background-color: rgb(120 113 108 / 0.95);
}

.bg-stone-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(87 83 78 / var(--tw-bg-opacity, 1));
}

.bg-stone-600\/0 {
  background-color: rgb(87 83 78 / 0);
}

.bg-stone-600\/10 {
  background-color: rgb(87 83 78 / 0.1);
}

.bg-stone-600\/100 {
  background-color: rgb(87 83 78 / 1);
}

.bg-stone-600\/15 {
  background-color: rgb(87 83 78 / 0.15);
}

.bg-stone-600\/20 {
  background-color: rgb(87 83 78 / 0.2);
}

.bg-stone-600\/25 {
  background-color: rgb(87 83 78 / 0.25);
}

.bg-stone-600\/30 {
  background-color: rgb(87 83 78 / 0.3);
}

.bg-stone-600\/35 {
  background-color: rgb(87 83 78 / 0.35);
}

.bg-stone-600\/40 {
  background-color: rgb(87 83 78 / 0.4);
}

.bg-stone-600\/45 {
  background-color: rgb(87 83 78 / 0.45);
}

.bg-stone-600\/5 {
  background-color: rgb(87 83 78 / 0.05);
}

.bg-stone-600\/50 {
  background-color: rgb(87 83 78 / 0.5);
}

.bg-stone-600\/55 {
  background-color: rgb(87 83 78 / 0.55);
}

.bg-stone-600\/60 {
  background-color: rgb(87 83 78 / 0.6);
}

.bg-stone-600\/65 {
  background-color: rgb(87 83 78 / 0.65);
}

.bg-stone-600\/70 {
  background-color: rgb(87 83 78 / 0.7);
}

.bg-stone-600\/75 {
  background-color: rgb(87 83 78 / 0.75);
}

.bg-stone-600\/80 {
  background-color: rgb(87 83 78 / 0.8);
}

.bg-stone-600\/85 {
  background-color: rgb(87 83 78 / 0.85);
}

.bg-stone-600\/90 {
  background-color: rgb(87 83 78 / 0.9);
}

.bg-stone-600\/95 {
  background-color: rgb(87 83 78 / 0.95);
}

.bg-stone-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(68 64 60 / var(--tw-bg-opacity, 1));
}

.bg-stone-700\/0 {
  background-color: rgb(68 64 60 / 0);
}

.bg-stone-700\/10 {
  background-color: rgb(68 64 60 / 0.1);
}

.bg-stone-700\/100 {
  background-color: rgb(68 64 60 / 1);
}

.bg-stone-700\/15 {
  background-color: rgb(68 64 60 / 0.15);
}

.bg-stone-700\/20 {
  background-color: rgb(68 64 60 / 0.2);
}

.bg-stone-700\/25 {
  background-color: rgb(68 64 60 / 0.25);
}

.bg-stone-700\/30 {
  background-color: rgb(68 64 60 / 0.3);
}

.bg-stone-700\/35 {
  background-color: rgb(68 64 60 / 0.35);
}

.bg-stone-700\/40 {
  background-color: rgb(68 64 60 / 0.4);
}

.bg-stone-700\/45 {
  background-color: rgb(68 64 60 / 0.45);
}

.bg-stone-700\/5 {
  background-color: rgb(68 64 60 / 0.05);
}

.bg-stone-700\/50 {
  background-color: rgb(68 64 60 / 0.5);
}

.bg-stone-700\/55 {
  background-color: rgb(68 64 60 / 0.55);
}

.bg-stone-700\/60 {
  background-color: rgb(68 64 60 / 0.6);
}

.bg-stone-700\/65 {
  background-color: rgb(68 64 60 / 0.65);
}

.bg-stone-700\/70 {
  background-color: rgb(68 64 60 / 0.7);
}

.bg-stone-700\/75 {
  background-color: rgb(68 64 60 / 0.75);
}

.bg-stone-700\/80 {
  background-color: rgb(68 64 60 / 0.8);
}

.bg-stone-700\/85 {
  background-color: rgb(68 64 60 / 0.85);
}

.bg-stone-700\/90 {
  background-color: rgb(68 64 60 / 0.9);
}

.bg-stone-700\/95 {
  background-color: rgb(68 64 60 / 0.95);
}

.bg-stone-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(41 37 36 / var(--tw-bg-opacity, 1));
}

.bg-stone-800\/0 {
  background-color: rgb(41 37 36 / 0);
}

.bg-stone-800\/10 {
  background-color: rgb(41 37 36 / 0.1);
}

.bg-stone-800\/100 {
  background-color: rgb(41 37 36 / 1);
}

.bg-stone-800\/15 {
  background-color: rgb(41 37 36 / 0.15);
}

.bg-stone-800\/20 {
  background-color: rgb(41 37 36 / 0.2);
}

.bg-stone-800\/25 {
  background-color: rgb(41 37 36 / 0.25);
}

.bg-stone-800\/30 {
  background-color: rgb(41 37 36 / 0.3);
}

.bg-stone-800\/35 {
  background-color: rgb(41 37 36 / 0.35);
}

.bg-stone-800\/40 {
  background-color: rgb(41 37 36 / 0.4);
}

.bg-stone-800\/45 {
  background-color: rgb(41 37 36 / 0.45);
}

.bg-stone-800\/5 {
  background-color: rgb(41 37 36 / 0.05);
}

.bg-stone-800\/50 {
  background-color: rgb(41 37 36 / 0.5);
}

.bg-stone-800\/55 {
  background-color: rgb(41 37 36 / 0.55);
}

.bg-stone-800\/60 {
  background-color: rgb(41 37 36 / 0.6);
}

.bg-stone-800\/65 {
  background-color: rgb(41 37 36 / 0.65);
}

.bg-stone-800\/70 {
  background-color: rgb(41 37 36 / 0.7);
}

.bg-stone-800\/75 {
  background-color: rgb(41 37 36 / 0.75);
}

.bg-stone-800\/80 {
  background-color: rgb(41 37 36 / 0.8);
}

.bg-stone-800\/85 {
  background-color: rgb(41 37 36 / 0.85);
}

.bg-stone-800\/90 {
  background-color: rgb(41 37 36 / 0.9);
}

.bg-stone-800\/95 {
  background-color: rgb(41 37 36 / 0.95);
}

.bg-stone-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(28 25 23 / var(--tw-bg-opacity, 1));
}

.bg-stone-900\/0 {
  background-color: rgb(28 25 23 / 0);
}

.bg-stone-900\/10 {
  background-color: rgb(28 25 23 / 0.1);
}

.bg-stone-900\/100 {
  background-color: rgb(28 25 23 / 1);
}

.bg-stone-900\/15 {
  background-color: rgb(28 25 23 / 0.15);
}

.bg-stone-900\/20 {
  background-color: rgb(28 25 23 / 0.2);
}

.bg-stone-900\/25 {
  background-color: rgb(28 25 23 / 0.25);
}

.bg-stone-900\/30 {
  background-color: rgb(28 25 23 / 0.3);
}

.bg-stone-900\/35 {
  background-color: rgb(28 25 23 / 0.35);
}

.bg-stone-900\/40 {
  background-color: rgb(28 25 23 / 0.4);
}

.bg-stone-900\/45 {
  background-color: rgb(28 25 23 / 0.45);
}

.bg-stone-900\/5 {
  background-color: rgb(28 25 23 / 0.05);
}

.bg-stone-900\/50 {
  background-color: rgb(28 25 23 / 0.5);
}

.bg-stone-900\/55 {
  background-color: rgb(28 25 23 / 0.55);
}

.bg-stone-900\/60 {
  background-color: rgb(28 25 23 / 0.6);
}

.bg-stone-900\/65 {
  background-color: rgb(28 25 23 / 0.65);
}

.bg-stone-900\/70 {
  background-color: rgb(28 25 23 / 0.7);
}

.bg-stone-900\/75 {
  background-color: rgb(28 25 23 / 0.75);
}

.bg-stone-900\/80 {
  background-color: rgb(28 25 23 / 0.8);
}

.bg-stone-900\/85 {
  background-color: rgb(28 25 23 / 0.85);
}

.bg-stone-900\/90 {
  background-color: rgb(28 25 23 / 0.9);
}

.bg-stone-900\/95 {
  background-color: rgb(28 25 23 / 0.95);
}

.bg-surface {
  --tw-bg-opacity: 1;
  background-color: rgb(251 249 242 / var(--tw-bg-opacity, 1));
}

.bg-surface-container-low {
  --tw-bg-opacity: 1;
  background-color: rgb(245 244 237 / var(--tw-bg-opacity, 1));
}

.bg-surface-variant {
  --tw-bg-opacity: 1;
  background-color: rgb(227 227 220 / var(--tw-bg-opacity, 1));
}

.bg-teal-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(204 251 241 / var(--tw-bg-opacity, 1));
}

.bg-teal-100\/0 {
  background-color: rgb(204 251 241 / 0);
}

.bg-teal-100\/10 {
  background-color: rgb(204 251 241 / 0.1);
}

.bg-teal-100\/100 {
  background-color: rgb(204 251 241 / 1);
}

.bg-teal-100\/15 {
  background-color: rgb(204 251 241 / 0.15);
}

.bg-teal-100\/20 {
  background-color: rgb(204 251 241 / 0.2);
}

.bg-teal-100\/25 {
  background-color: rgb(204 251 241 / 0.25);
}

.bg-teal-100\/30 {
  background-color: rgb(204 251 241 / 0.3);
}

.bg-teal-100\/35 {
  background-color: rgb(204 251 241 / 0.35);
}

.bg-teal-100\/40 {
  background-color: rgb(204 251 241 / 0.4);
}

.bg-teal-100\/45 {
  background-color: rgb(204 251 241 / 0.45);
}

.bg-teal-100\/5 {
  background-color: rgb(204 251 241 / 0.05);
}

.bg-teal-100\/50 {
  background-color: rgb(204 251 241 / 0.5);
}

.bg-teal-100\/55 {
  background-color: rgb(204 251 241 / 0.55);
}

.bg-teal-100\/60 {
  background-color: rgb(204 251 241 / 0.6);
}

.bg-teal-100\/65 {
  background-color: rgb(204 251 241 / 0.65);
}

.bg-teal-100\/70 {
  background-color: rgb(204 251 241 / 0.7);
}

.bg-teal-100\/75 {
  background-color: rgb(204 251 241 / 0.75);
}

.bg-teal-100\/80 {
  background-color: rgb(204 251 241 / 0.8);
}

.bg-teal-100\/85 {
  background-color: rgb(204 251 241 / 0.85);
}

.bg-teal-100\/90 {
  background-color: rgb(204 251 241 / 0.9);
}

.bg-teal-100\/95 {
  background-color: rgb(204 251 241 / 0.95);
}

.bg-teal-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(153 246 228 / var(--tw-bg-opacity, 1));
}

.bg-teal-200\/0 {
  background-color: rgb(153 246 228 / 0);
}

.bg-teal-200\/10 {
  background-color: rgb(153 246 228 / 0.1);
}

.bg-teal-200\/100 {
  background-color: rgb(153 246 228 / 1);
}

.bg-teal-200\/15 {
  background-color: rgb(153 246 228 / 0.15);
}

.bg-teal-200\/20 {
  background-color: rgb(153 246 228 / 0.2);
}

.bg-teal-200\/25 {
  background-color: rgb(153 246 228 / 0.25);
}

.bg-teal-200\/30 {
  background-color: rgb(153 246 228 / 0.3);
}

.bg-teal-200\/35 {
  background-color: rgb(153 246 228 / 0.35);
}

.bg-teal-200\/40 {
  background-color: rgb(153 246 228 / 0.4);
}

.bg-teal-200\/45 {
  background-color: rgb(153 246 228 / 0.45);
}

.bg-teal-200\/5 {
  background-color: rgb(153 246 228 / 0.05);
}

.bg-teal-200\/50 {
  background-color: rgb(153 246 228 / 0.5);
}

.bg-teal-200\/55 {
  background-color: rgb(153 246 228 / 0.55);
}

.bg-teal-200\/60 {
  background-color: rgb(153 246 228 / 0.6);
}

.bg-teal-200\/65 {
  background-color: rgb(153 246 228 / 0.65);
}

.bg-teal-200\/70 {
  background-color: rgb(153 246 228 / 0.7);
}

.bg-teal-200\/75 {
  background-color: rgb(153 246 228 / 0.75);
}

.bg-teal-200\/80 {
  background-color: rgb(153 246 228 / 0.8);
}

.bg-teal-200\/85 {
  background-color: rgb(153 246 228 / 0.85);
}

.bg-teal-200\/90 {
  background-color: rgb(153 246 228 / 0.9);
}

.bg-teal-200\/95 {
  background-color: rgb(153 246 228 / 0.95);
}

.bg-teal-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(94 234 212 / var(--tw-bg-opacity, 1));
}

.bg-teal-300\/0 {
  background-color: rgb(94 234 212 / 0);
}

.bg-teal-300\/10 {
  background-color: rgb(94 234 212 / 0.1);
}

.bg-teal-300\/100 {
  background-color: rgb(94 234 212 / 1);
}

.bg-teal-300\/15 {
  background-color: rgb(94 234 212 / 0.15);
}

.bg-teal-300\/20 {
  background-color: rgb(94 234 212 / 0.2);
}

.bg-teal-300\/25 {
  background-color: rgb(94 234 212 / 0.25);
}

.bg-teal-300\/30 {
  background-color: rgb(94 234 212 / 0.3);
}

.bg-teal-300\/35 {
  background-color: rgb(94 234 212 / 0.35);
}

.bg-teal-300\/40 {
  background-color: rgb(94 234 212 / 0.4);
}

.bg-teal-300\/45 {
  background-color: rgb(94 234 212 / 0.45);
}

.bg-teal-300\/5 {
  background-color: rgb(94 234 212 / 0.05);
}

.bg-teal-300\/50 {
  background-color: rgb(94 234 212 / 0.5);
}

.bg-teal-300\/55 {
  background-color: rgb(94 234 212 / 0.55);
}

.bg-teal-300\/60 {
  background-color: rgb(94 234 212 / 0.6);
}

.bg-teal-300\/65 {
  background-color: rgb(94 234 212 / 0.65);
}

.bg-teal-300\/70 {
  background-color: rgb(94 234 212 / 0.7);
}

.bg-teal-300\/75 {
  background-color: rgb(94 234 212 / 0.75);
}

.bg-teal-300\/80 {
  background-color: rgb(94 234 212 / 0.8);
}

.bg-teal-300\/85 {
  background-color: rgb(94 234 212 / 0.85);
}

.bg-teal-300\/90 {
  background-color: rgb(94 234 212 / 0.9);
}

.bg-teal-300\/95 {
  background-color: rgb(94 234 212 / 0.95);
}

.bg-teal-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(45 212 191 / var(--tw-bg-opacity, 1));
}

.bg-teal-400\/0 {
  background-color: rgb(45 212 191 / 0);
}

.bg-teal-400\/10 {
  background-color: rgb(45 212 191 / 0.1);
}

.bg-teal-400\/100 {
  background-color: rgb(45 212 191 / 1);
}

.bg-teal-400\/15 {
  background-color: rgb(45 212 191 / 0.15);
}

.bg-teal-400\/20 {
  background-color: rgb(45 212 191 / 0.2);
}

.bg-teal-400\/25 {
  background-color: rgb(45 212 191 / 0.25);
}

.bg-teal-400\/30 {
  background-color: rgb(45 212 191 / 0.3);
}

.bg-teal-400\/35 {
  background-color: rgb(45 212 191 / 0.35);
}

.bg-teal-400\/40 {
  background-color: rgb(45 212 191 / 0.4);
}

.bg-teal-400\/45 {
  background-color: rgb(45 212 191 / 0.45);
}

.bg-teal-400\/5 {
  background-color: rgb(45 212 191 / 0.05);
}

.bg-teal-400\/50 {
  background-color: rgb(45 212 191 / 0.5);
}

.bg-teal-400\/55 {
  background-color: rgb(45 212 191 / 0.55);
}

.bg-teal-400\/60 {
  background-color: rgb(45 212 191 / 0.6);
}

.bg-teal-400\/65 {
  background-color: rgb(45 212 191 / 0.65);
}

.bg-teal-400\/70 {
  background-color: rgb(45 212 191 / 0.7);
}

.bg-teal-400\/75 {
  background-color: rgb(45 212 191 / 0.75);
}

.bg-teal-400\/80 {
  background-color: rgb(45 212 191 / 0.8);
}

.bg-teal-400\/85 {
  background-color: rgb(45 212 191 / 0.85);
}

.bg-teal-400\/90 {
  background-color: rgb(45 212 191 / 0.9);
}

.bg-teal-400\/95 {
  background-color: rgb(45 212 191 / 0.95);
}

.bg-teal-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 250 / var(--tw-bg-opacity, 1));
}

.bg-teal-50\/0 {
  background-color: rgb(240 253 250 / 0);
}

.bg-teal-50\/10 {
  background-color: rgb(240 253 250 / 0.1);
}

.bg-teal-50\/100 {
  background-color: rgb(240 253 250 / 1);
}

.bg-teal-50\/15 {
  background-color: rgb(240 253 250 / 0.15);
}

.bg-teal-50\/20 {
  background-color: rgb(240 253 250 / 0.2);
}

.bg-teal-50\/25 {
  background-color: rgb(240 253 250 / 0.25);
}

.bg-teal-50\/30 {
  background-color: rgb(240 253 250 / 0.3);
}

.bg-teal-50\/35 {
  background-color: rgb(240 253 250 / 0.35);
}

.bg-teal-50\/40 {
  background-color: rgb(240 253 250 / 0.4);
}

.bg-teal-50\/45 {
  background-color: rgb(240 253 250 / 0.45);
}

.bg-teal-50\/5 {
  background-color: rgb(240 253 250 / 0.05);
}

.bg-teal-50\/50 {
  background-color: rgb(240 253 250 / 0.5);
}

.bg-teal-50\/55 {
  background-color: rgb(240 253 250 / 0.55);
}

.bg-teal-50\/60 {
  background-color: rgb(240 253 250 / 0.6);
}

.bg-teal-50\/65 {
  background-color: rgb(240 253 250 / 0.65);
}

.bg-teal-50\/70 {
  background-color: rgb(240 253 250 / 0.7);
}

.bg-teal-50\/75 {
  background-color: rgb(240 253 250 / 0.75);
}

.bg-teal-50\/80 {
  background-color: rgb(240 253 250 / 0.8);
}

.bg-teal-50\/85 {
  background-color: rgb(240 253 250 / 0.85);
}

.bg-teal-50\/90 {
  background-color: rgb(240 253 250 / 0.9);
}

.bg-teal-50\/95 {
  background-color: rgb(240 253 250 / 0.95);
}

.bg-teal-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(20 184 166 / var(--tw-bg-opacity, 1));
}

.bg-teal-500\/0 {
  background-color: rgb(20 184 166 / 0);
}

.bg-teal-500\/10 {
  background-color: rgb(20 184 166 / 0.1);
}

.bg-teal-500\/100 {
  background-color: rgb(20 184 166 / 1);
}

.bg-teal-500\/15 {
  background-color: rgb(20 184 166 / 0.15);
}

.bg-teal-500\/20 {
  background-color: rgb(20 184 166 / 0.2);
}

.bg-teal-500\/25 {
  background-color: rgb(20 184 166 / 0.25);
}

.bg-teal-500\/30 {
  background-color: rgb(20 184 166 / 0.3);
}

.bg-teal-500\/35 {
  background-color: rgb(20 184 166 / 0.35);
}

.bg-teal-500\/40 {
  background-color: rgb(20 184 166 / 0.4);
}

.bg-teal-500\/45 {
  background-color: rgb(20 184 166 / 0.45);
}

.bg-teal-500\/5 {
  background-color: rgb(20 184 166 / 0.05);
}

.bg-teal-500\/50 {
  background-color: rgb(20 184 166 / 0.5);
}

.bg-teal-500\/55 {
  background-color: rgb(20 184 166 / 0.55);
}

.bg-teal-500\/60 {
  background-color: rgb(20 184 166 / 0.6);
}

.bg-teal-500\/65 {
  background-color: rgb(20 184 166 / 0.65);
}

.bg-teal-500\/70 {
  background-color: rgb(20 184 166 / 0.7);
}

.bg-teal-500\/75 {
  background-color: rgb(20 184 166 / 0.75);
}

.bg-teal-500\/80 {
  background-color: rgb(20 184 166 / 0.8);
}

.bg-teal-500\/85 {
  background-color: rgb(20 184 166 / 0.85);
}

.bg-teal-500\/90 {
  background-color: rgb(20 184 166 / 0.9);
}

.bg-teal-500\/95 {
  background-color: rgb(20 184 166 / 0.95);
}

.bg-teal-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(13 148 136 / var(--tw-bg-opacity, 1));
}

.bg-teal-600\/0 {
  background-color: rgb(13 148 136 / 0);
}

.bg-teal-600\/10 {
  background-color: rgb(13 148 136 / 0.1);
}

.bg-teal-600\/100 {
  background-color: rgb(13 148 136 / 1);
}

.bg-teal-600\/15 {
  background-color: rgb(13 148 136 / 0.15);
}

.bg-teal-600\/20 {
  background-color: rgb(13 148 136 / 0.2);
}

.bg-teal-600\/25 {
  background-color: rgb(13 148 136 / 0.25);
}

.bg-teal-600\/30 {
  background-color: rgb(13 148 136 / 0.3);
}

.bg-teal-600\/35 {
  background-color: rgb(13 148 136 / 0.35);
}

.bg-teal-600\/40 {
  background-color: rgb(13 148 136 / 0.4);
}

.bg-teal-600\/45 {
  background-color: rgb(13 148 136 / 0.45);
}

.bg-teal-600\/5 {
  background-color: rgb(13 148 136 / 0.05);
}

.bg-teal-600\/50 {
  background-color: rgb(13 148 136 / 0.5);
}

.bg-teal-600\/55 {
  background-color: rgb(13 148 136 / 0.55);
}

.bg-teal-600\/60 {
  background-color: rgb(13 148 136 / 0.6);
}

.bg-teal-600\/65 {
  background-color: rgb(13 148 136 / 0.65);
}

.bg-teal-600\/70 {
  background-color: rgb(13 148 136 / 0.7);
}

.bg-teal-600\/75 {
  background-color: rgb(13 148 136 / 0.75);
}

.bg-teal-600\/80 {
  background-color: rgb(13 148 136 / 0.8);
}

.bg-teal-600\/85 {
  background-color: rgb(13 148 136 / 0.85);
}

.bg-teal-600\/90 {
  background-color: rgb(13 148 136 / 0.9);
}

.bg-teal-600\/95 {
  background-color: rgb(13 148 136 / 0.95);
}

.bg-teal-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(15 118 110 / var(--tw-bg-opacity, 1));
}

.bg-teal-700\/0 {
  background-color: rgb(15 118 110 / 0);
}

.bg-teal-700\/10 {
  background-color: rgb(15 118 110 / 0.1);
}

.bg-teal-700\/100 {
  background-color: rgb(15 118 110 / 1);
}

.bg-teal-700\/15 {
  background-color: rgb(15 118 110 / 0.15);
}

.bg-teal-700\/20 {
  background-color: rgb(15 118 110 / 0.2);
}

.bg-teal-700\/25 {
  background-color: rgb(15 118 110 / 0.25);
}

.bg-teal-700\/30 {
  background-color: rgb(15 118 110 / 0.3);
}

.bg-teal-700\/35 {
  background-color: rgb(15 118 110 / 0.35);
}

.bg-teal-700\/40 {
  background-color: rgb(15 118 110 / 0.4);
}

.bg-teal-700\/45 {
  background-color: rgb(15 118 110 / 0.45);
}

.bg-teal-700\/5 {
  background-color: rgb(15 118 110 / 0.05);
}

.bg-teal-700\/50 {
  background-color: rgb(15 118 110 / 0.5);
}

.bg-teal-700\/55 {
  background-color: rgb(15 118 110 / 0.55);
}

.bg-teal-700\/60 {
  background-color: rgb(15 118 110 / 0.6);
}

.bg-teal-700\/65 {
  background-color: rgb(15 118 110 / 0.65);
}

.bg-teal-700\/70 {
  background-color: rgb(15 118 110 / 0.7);
}

.bg-teal-700\/75 {
  background-color: rgb(15 118 110 / 0.75);
}

.bg-teal-700\/80 {
  background-color: rgb(15 118 110 / 0.8);
}

.bg-teal-700\/85 {
  background-color: rgb(15 118 110 / 0.85);
}

.bg-teal-700\/90 {
  background-color: rgb(15 118 110 / 0.9);
}

.bg-teal-700\/95 {
  background-color: rgb(15 118 110 / 0.95);
}

.bg-teal-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(17 94 89 / var(--tw-bg-opacity, 1));
}

.bg-teal-800\/0 {
  background-color: rgb(17 94 89 / 0);
}

.bg-teal-800\/10 {
  background-color: rgb(17 94 89 / 0.1);
}

.bg-teal-800\/100 {
  background-color: rgb(17 94 89 / 1);
}

.bg-teal-800\/15 {
  background-color: rgb(17 94 89 / 0.15);
}

.bg-teal-800\/20 {
  background-color: rgb(17 94 89 / 0.2);
}

.bg-teal-800\/25 {
  background-color: rgb(17 94 89 / 0.25);
}

.bg-teal-800\/30 {
  background-color: rgb(17 94 89 / 0.3);
}

.bg-teal-800\/35 {
  background-color: rgb(17 94 89 / 0.35);
}

.bg-teal-800\/40 {
  background-color: rgb(17 94 89 / 0.4);
}

.bg-teal-800\/45 {
  background-color: rgb(17 94 89 / 0.45);
}

.bg-teal-800\/5 {
  background-color: rgb(17 94 89 / 0.05);
}

.bg-teal-800\/50 {
  background-color: rgb(17 94 89 / 0.5);
}

.bg-teal-800\/55 {
  background-color: rgb(17 94 89 / 0.55);
}

.bg-teal-800\/60 {
  background-color: rgb(17 94 89 / 0.6);
}

.bg-teal-800\/65 {
  background-color: rgb(17 94 89 / 0.65);
}

.bg-teal-800\/70 {
  background-color: rgb(17 94 89 / 0.7);
}

.bg-teal-800\/75 {
  background-color: rgb(17 94 89 / 0.75);
}

.bg-teal-800\/80 {
  background-color: rgb(17 94 89 / 0.8);
}

.bg-teal-800\/85 {
  background-color: rgb(17 94 89 / 0.85);
}

.bg-teal-800\/90 {
  background-color: rgb(17 94 89 / 0.9);
}

.bg-teal-800\/95 {
  background-color: rgb(17 94 89 / 0.95);
}

.bg-teal-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(19 78 74 / var(--tw-bg-opacity, 1));
}

.bg-teal-900\/0 {
  background-color: rgb(19 78 74 / 0);
}

.bg-teal-900\/10 {
  background-color: rgb(19 78 74 / 0.1);
}

.bg-teal-900\/100 {
  background-color: rgb(19 78 74 / 1);
}

.bg-teal-900\/15 {
  background-color: rgb(19 78 74 / 0.15);
}

.bg-teal-900\/20 {
  background-color: rgb(19 78 74 / 0.2);
}

.bg-teal-900\/25 {
  background-color: rgb(19 78 74 / 0.25);
}

.bg-teal-900\/30 {
  background-color: rgb(19 78 74 / 0.3);
}

.bg-teal-900\/35 {
  background-color: rgb(19 78 74 / 0.35);
}

.bg-teal-900\/40 {
  background-color: rgb(19 78 74 / 0.4);
}

.bg-teal-900\/45 {
  background-color: rgb(19 78 74 / 0.45);
}

.bg-teal-900\/5 {
  background-color: rgb(19 78 74 / 0.05);
}

.bg-teal-900\/50 {
  background-color: rgb(19 78 74 / 0.5);
}

.bg-teal-900\/55 {
  background-color: rgb(19 78 74 / 0.55);
}

.bg-teal-900\/60 {
  background-color: rgb(19 78 74 / 0.6);
}

.bg-teal-900\/65 {
  background-color: rgb(19 78 74 / 0.65);
}

.bg-teal-900\/70 {
  background-color: rgb(19 78 74 / 0.7);
}

.bg-teal-900\/75 {
  background-color: rgb(19 78 74 / 0.75);
}

.bg-teal-900\/80 {
  background-color: rgb(19 78 74 / 0.8);
}

.bg-teal-900\/85 {
  background-color: rgb(19 78 74 / 0.85);
}

.bg-teal-900\/90 {
  background-color: rgb(19 78 74 / 0.9);
}

.bg-teal-900\/95 {
  background-color: rgb(19 78 74 / 0.95);
}

.bg-tertiary-fixed {
  --tw-bg-opacity: 1;
  background-color: rgb(227 226 223 / var(--tw-bg-opacity, 1));
}

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

.bg-violet-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(237 233 254 / var(--tw-bg-opacity, 1));
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-white\/10 {
  background-color: rgb(255 255 255 / 0.1);
}

.bg-white\/5 {
  background-color: rgb(255 255 255 / 0.05);
}

.bg-white\/85 {
  background-color: rgb(255 255 255 / 0.85);
}

.bg-white\/90 {
  background-color: rgb(255 255 255 / 0.9);
}

.bg-\[radial-gradient\(circle_at_top_right\2c _rgba\(96\2c 165\2c 250\2c 0\.24\)\2c _transparent_26\%\)\2c linear-gradient\(135deg\2c _\#0f172a_0\%\2c _\#16355b_56\%\2c _\#234a7d_100\%\)\] {
  background-image: radial-gradient(circle at top right, rgba(96,165,250,0.24), transparent 26%),linear-gradient(135deg, #0f172a 0%, #16355b 56%, #234a7d 100%);
}

.object-contain {
  object-fit: contain;
}

.object-cover {
  object-fit: cover;
}

.p-0 {
  padding: 0px;
}

.p-1\.5 {
  padding: 0.375rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-lg {
  padding: 40px;
}

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

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

.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

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

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

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

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

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

.px-\[18px\] {
  padding-left: 18px;
  padding-right: 18px;
}

.px-gutter {
  padding-left: 24px;
  padding-right: 24px;
}

.px-lg {
  padding-left: 40px;
  padding-right: 40px;
}

.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

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

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

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

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

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

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-3\.5 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

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

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

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-lg {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-sm {
  padding-top: 12px;
  padding-bottom: 12px;
}

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

.pb-md {
  padding-bottom: 24px;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

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

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

.pt-3 {
  padding-top: 0.75rem;
}

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

.pt-5 {
  padding-top: 1.25rem;
}

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

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

.pt-sm {
  padding-top: 12px;
}

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

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

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

.align-top {
  vertical-align: top;
}

.font-body-lg {
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.font-body-md {
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.font-display-xl {
  font-family: Georgia, "Times New Roman", serif;
}

.font-headline-md {
  font-family: Georgia, "Times New Roman", serif;
}

.font-label-sm {
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.font-sans {
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.font-serif {
  font-family: Georgia, "Times New Roman", serif;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-\[1\.2rem\] {
  font-size: 1.2rem;
}

.text-\[1\.45rem\] {
  font-size: 1.45rem;
}

.text-\[10px\] {
  font-size: 10px;
}

.text-\[11px\] {
  font-size: 11px;
}

.text-\[13px\] {
  font-size: 13px;
}

.text-\[18px\] {
  font-size: 18px;
}

.text-\[3\.8rem\] {
  font-size: 3.8rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-headline-md {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
}

.text-label-sm {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-black {
  font-weight: 900;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.normal-case {
  text-transform: none;
}

.leading-5 {
  line-height: 1.25rem;
}

.leading-6 {
  line-height: 1.5rem;
}

.leading-7 {
  line-height: 1.75rem;
}

.leading-\[1\.45\] {
  line-height: 1.45;
}

.leading-\[1\.85\] {
  line-height: 1.85;
}

.leading-none {
  line-height: 1;
}

.leading-normal {
  line-height: 1.5;
}

.leading-tight {
  line-height: 1.25;
}

.tracking-\[0\.15em\] {
  letter-spacing: 0.15em;
}

.tracking-\[0\.25em\] {
  letter-spacing: 0.25em;
}

.tracking-\[0\.28em\] {
  letter-spacing: 0.28em;
}

.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}

.tracking-\[0\.35em\] {
  letter-spacing: 0.35em;
}

.tracking-\[0\.3em\] {
  letter-spacing: 0.3em;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.text-\[\#c96442\] {
  --tw-text-opacity: 1;
  color: rgb(201 100 66 / var(--tw-text-opacity, 1));
}

.text-amber-100 {
  --tw-text-opacity: 1;
  color: rgb(254 243 199 / var(--tw-text-opacity, 1));
}

.text-amber-100\/0 {
  color: rgb(254 243 199 / 0);
}

.text-amber-100\/10 {
  color: rgb(254 243 199 / 0.1);
}

.text-amber-100\/100 {
  color: rgb(254 243 199 / 1);
}

.text-amber-100\/15 {
  color: rgb(254 243 199 / 0.15);
}

.text-amber-100\/20 {
  color: rgb(254 243 199 / 0.2);
}

.text-amber-100\/25 {
  color: rgb(254 243 199 / 0.25);
}

.text-amber-100\/30 {
  color: rgb(254 243 199 / 0.3);
}

.text-amber-100\/35 {
  color: rgb(254 243 199 / 0.35);
}

.text-amber-100\/40 {
  color: rgb(254 243 199 / 0.4);
}

.text-amber-100\/45 {
  color: rgb(254 243 199 / 0.45);
}

.text-amber-100\/5 {
  color: rgb(254 243 199 / 0.05);
}

.text-amber-100\/50 {
  color: rgb(254 243 199 / 0.5);
}

.text-amber-100\/55 {
  color: rgb(254 243 199 / 0.55);
}

.text-amber-100\/60 {
  color: rgb(254 243 199 / 0.6);
}

.text-amber-100\/65 {
  color: rgb(254 243 199 / 0.65);
}

.text-amber-100\/70 {
  color: rgb(254 243 199 / 0.7);
}

.text-amber-100\/75 {
  color: rgb(254 243 199 / 0.75);
}

.text-amber-100\/80 {
  color: rgb(254 243 199 / 0.8);
}

.text-amber-100\/85 {
  color: rgb(254 243 199 / 0.85);
}

.text-amber-100\/90 {
  color: rgb(254 243 199 / 0.9);
}

.text-amber-100\/95 {
  color: rgb(254 243 199 / 0.95);
}

.text-amber-200 {
  --tw-text-opacity: 1;
  color: rgb(253 230 138 / var(--tw-text-opacity, 1));
}

.text-amber-200\/0 {
  color: rgb(253 230 138 / 0);
}

.text-amber-200\/10 {
  color: rgb(253 230 138 / 0.1);
}

.text-amber-200\/100 {
  color: rgb(253 230 138 / 1);
}

.text-amber-200\/15 {
  color: rgb(253 230 138 / 0.15);
}

.text-amber-200\/20 {
  color: rgb(253 230 138 / 0.2);
}

.text-amber-200\/25 {
  color: rgb(253 230 138 / 0.25);
}

.text-amber-200\/30 {
  color: rgb(253 230 138 / 0.3);
}

.text-amber-200\/35 {
  color: rgb(253 230 138 / 0.35);
}

.text-amber-200\/40 {
  color: rgb(253 230 138 / 0.4);
}

.text-amber-200\/45 {
  color: rgb(253 230 138 / 0.45);
}

.text-amber-200\/5 {
  color: rgb(253 230 138 / 0.05);
}

.text-amber-200\/50 {
  color: rgb(253 230 138 / 0.5);
}

.text-amber-200\/55 {
  color: rgb(253 230 138 / 0.55);
}

.text-amber-200\/60 {
  color: rgb(253 230 138 / 0.6);
}

.text-amber-200\/65 {
  color: rgb(253 230 138 / 0.65);
}

.text-amber-200\/70 {
  color: rgb(253 230 138 / 0.7);
}

.text-amber-200\/75 {
  color: rgb(253 230 138 / 0.75);
}

.text-amber-200\/80 {
  color: rgb(253 230 138 / 0.8);
}

.text-amber-200\/85 {
  color: rgb(253 230 138 / 0.85);
}

.text-amber-200\/90 {
  color: rgb(253 230 138 / 0.9);
}

.text-amber-200\/95 {
  color: rgb(253 230 138 / 0.95);
}

.text-amber-300 {
  --tw-text-opacity: 1;
  color: rgb(252 211 77 / var(--tw-text-opacity, 1));
}

.text-amber-300\/0 {
  color: rgb(252 211 77 / 0);
}

.text-amber-300\/10 {
  color: rgb(252 211 77 / 0.1);
}

.text-amber-300\/100 {
  color: rgb(252 211 77 / 1);
}

.text-amber-300\/15 {
  color: rgb(252 211 77 / 0.15);
}

.text-amber-300\/20 {
  color: rgb(252 211 77 / 0.2);
}

.text-amber-300\/25 {
  color: rgb(252 211 77 / 0.25);
}

.text-amber-300\/30 {
  color: rgb(252 211 77 / 0.3);
}

.text-amber-300\/35 {
  color: rgb(252 211 77 / 0.35);
}

.text-amber-300\/40 {
  color: rgb(252 211 77 / 0.4);
}

.text-amber-300\/45 {
  color: rgb(252 211 77 / 0.45);
}

.text-amber-300\/5 {
  color: rgb(252 211 77 / 0.05);
}

.text-amber-300\/50 {
  color: rgb(252 211 77 / 0.5);
}

.text-amber-300\/55 {
  color: rgb(252 211 77 / 0.55);
}

.text-amber-300\/60 {
  color: rgb(252 211 77 / 0.6);
}

.text-amber-300\/65 {
  color: rgb(252 211 77 / 0.65);
}

.text-amber-300\/70 {
  color: rgb(252 211 77 / 0.7);
}

.text-amber-300\/75 {
  color: rgb(252 211 77 / 0.75);
}

.text-amber-300\/80 {
  color: rgb(252 211 77 / 0.8);
}

.text-amber-300\/85 {
  color: rgb(252 211 77 / 0.85);
}

.text-amber-300\/90 {
  color: rgb(252 211 77 / 0.9);
}

.text-amber-300\/95 {
  color: rgb(252 211 77 / 0.95);
}

.text-amber-400 {
  --tw-text-opacity: 1;
  color: rgb(251 191 36 / var(--tw-text-opacity, 1));
}

.text-amber-400\/0 {
  color: rgb(251 191 36 / 0);
}

.text-amber-400\/10 {
  color: rgb(251 191 36 / 0.1);
}

.text-amber-400\/100 {
  color: rgb(251 191 36 / 1);
}

.text-amber-400\/15 {
  color: rgb(251 191 36 / 0.15);
}

.text-amber-400\/20 {
  color: rgb(251 191 36 / 0.2);
}

.text-amber-400\/25 {
  color: rgb(251 191 36 / 0.25);
}

.text-amber-400\/30 {
  color: rgb(251 191 36 / 0.3);
}

.text-amber-400\/35 {
  color: rgb(251 191 36 / 0.35);
}

.text-amber-400\/40 {
  color: rgb(251 191 36 / 0.4);
}

.text-amber-400\/45 {
  color: rgb(251 191 36 / 0.45);
}

.text-amber-400\/5 {
  color: rgb(251 191 36 / 0.05);
}

.text-amber-400\/50 {
  color: rgb(251 191 36 / 0.5);
}

.text-amber-400\/55 {
  color: rgb(251 191 36 / 0.55);
}

.text-amber-400\/60 {
  color: rgb(251 191 36 / 0.6);
}

.text-amber-400\/65 {
  color: rgb(251 191 36 / 0.65);
}

.text-amber-400\/70 {
  color: rgb(251 191 36 / 0.7);
}

.text-amber-400\/75 {
  color: rgb(251 191 36 / 0.75);
}

.text-amber-400\/80 {
  color: rgb(251 191 36 / 0.8);
}

.text-amber-400\/85 {
  color: rgb(251 191 36 / 0.85);
}

.text-amber-400\/90 {
  color: rgb(251 191 36 / 0.9);
}

.text-amber-400\/95 {
  color: rgb(251 191 36 / 0.95);
}

.text-amber-50 {
  --tw-text-opacity: 1;
  color: rgb(255 251 235 / var(--tw-text-opacity, 1));
}

.text-amber-50\/0 {
  color: rgb(255 251 235 / 0);
}

.text-amber-50\/10 {
  color: rgb(255 251 235 / 0.1);
}

.text-amber-50\/100 {
  color: rgb(255 251 235 / 1);
}

.text-amber-50\/15 {
  color: rgb(255 251 235 / 0.15);
}

.text-amber-50\/20 {
  color: rgb(255 251 235 / 0.2);
}

.text-amber-50\/25 {
  color: rgb(255 251 235 / 0.25);
}

.text-amber-50\/30 {
  color: rgb(255 251 235 / 0.3);
}

.text-amber-50\/35 {
  color: rgb(255 251 235 / 0.35);
}

.text-amber-50\/40 {
  color: rgb(255 251 235 / 0.4);
}

.text-amber-50\/45 {
  color: rgb(255 251 235 / 0.45);
}

.text-amber-50\/5 {
  color: rgb(255 251 235 / 0.05);
}

.text-amber-50\/50 {
  color: rgb(255 251 235 / 0.5);
}

.text-amber-50\/55 {
  color: rgb(255 251 235 / 0.55);
}

.text-amber-50\/60 {
  color: rgb(255 251 235 / 0.6);
}

.text-amber-50\/65 {
  color: rgb(255 251 235 / 0.65);
}

.text-amber-50\/70 {
  color: rgb(255 251 235 / 0.7);
}

.text-amber-50\/75 {
  color: rgb(255 251 235 / 0.75);
}

.text-amber-50\/80 {
  color: rgb(255 251 235 / 0.8);
}

.text-amber-50\/85 {
  color: rgb(255 251 235 / 0.85);
}

.text-amber-50\/90 {
  color: rgb(255 251 235 / 0.9);
}

.text-amber-50\/95 {
  color: rgb(255 251 235 / 0.95);
}

.text-amber-500 {
  --tw-text-opacity: 1;
  color: rgb(245 158 11 / var(--tw-text-opacity, 1));
}

.text-amber-500\/0 {
  color: rgb(245 158 11 / 0);
}

.text-amber-500\/10 {
  color: rgb(245 158 11 / 0.1);
}

.text-amber-500\/100 {
  color: rgb(245 158 11 / 1);
}

.text-amber-500\/15 {
  color: rgb(245 158 11 / 0.15);
}

.text-amber-500\/20 {
  color: rgb(245 158 11 / 0.2);
}

.text-amber-500\/25 {
  color: rgb(245 158 11 / 0.25);
}

.text-amber-500\/30 {
  color: rgb(245 158 11 / 0.3);
}

.text-amber-500\/35 {
  color: rgb(245 158 11 / 0.35);
}

.text-amber-500\/40 {
  color: rgb(245 158 11 / 0.4);
}

.text-amber-500\/45 {
  color: rgb(245 158 11 / 0.45);
}

.text-amber-500\/5 {
  color: rgb(245 158 11 / 0.05);
}

.text-amber-500\/50 {
  color: rgb(245 158 11 / 0.5);
}

.text-amber-500\/55 {
  color: rgb(245 158 11 / 0.55);
}

.text-amber-500\/60 {
  color: rgb(245 158 11 / 0.6);
}

.text-amber-500\/65 {
  color: rgb(245 158 11 / 0.65);
}

.text-amber-500\/70 {
  color: rgb(245 158 11 / 0.7);
}

.text-amber-500\/75 {
  color: rgb(245 158 11 / 0.75);
}

.text-amber-500\/80 {
  color: rgb(245 158 11 / 0.8);
}

.text-amber-500\/85 {
  color: rgb(245 158 11 / 0.85);
}

.text-amber-500\/90 {
  color: rgb(245 158 11 / 0.9);
}

.text-amber-500\/95 {
  color: rgb(245 158 11 / 0.95);
}

.text-amber-600 {
  --tw-text-opacity: 1;
  color: rgb(217 119 6 / var(--tw-text-opacity, 1));
}

.text-amber-600\/0 {
  color: rgb(217 119 6 / 0);
}

.text-amber-600\/10 {
  color: rgb(217 119 6 / 0.1);
}

.text-amber-600\/100 {
  color: rgb(217 119 6 / 1);
}

.text-amber-600\/15 {
  color: rgb(217 119 6 / 0.15);
}

.text-amber-600\/20 {
  color: rgb(217 119 6 / 0.2);
}

.text-amber-600\/25 {
  color: rgb(217 119 6 / 0.25);
}

.text-amber-600\/30 {
  color: rgb(217 119 6 / 0.3);
}

.text-amber-600\/35 {
  color: rgb(217 119 6 / 0.35);
}

.text-amber-600\/40 {
  color: rgb(217 119 6 / 0.4);
}

.text-amber-600\/45 {
  color: rgb(217 119 6 / 0.45);
}

.text-amber-600\/5 {
  color: rgb(217 119 6 / 0.05);
}

.text-amber-600\/50 {
  color: rgb(217 119 6 / 0.5);
}

.text-amber-600\/55 {
  color: rgb(217 119 6 / 0.55);
}

.text-amber-600\/60 {
  color: rgb(217 119 6 / 0.6);
}

.text-amber-600\/65 {
  color: rgb(217 119 6 / 0.65);
}

.text-amber-600\/70 {
  color: rgb(217 119 6 / 0.7);
}

.text-amber-600\/75 {
  color: rgb(217 119 6 / 0.75);
}

.text-amber-600\/80 {
  color: rgb(217 119 6 / 0.8);
}

.text-amber-600\/85 {
  color: rgb(217 119 6 / 0.85);
}

.text-amber-600\/90 {
  color: rgb(217 119 6 / 0.9);
}

.text-amber-600\/95 {
  color: rgb(217 119 6 / 0.95);
}

.text-amber-700 {
  --tw-text-opacity: 1;
  color: rgb(180 83 9 / var(--tw-text-opacity, 1));
}

.text-amber-700\/0 {
  color: rgb(180 83 9 / 0);
}

.text-amber-700\/10 {
  color: rgb(180 83 9 / 0.1);
}

.text-amber-700\/100 {
  color: rgb(180 83 9 / 1);
}

.text-amber-700\/15 {
  color: rgb(180 83 9 / 0.15);
}

.text-amber-700\/20 {
  color: rgb(180 83 9 / 0.2);
}

.text-amber-700\/25 {
  color: rgb(180 83 9 / 0.25);
}

.text-amber-700\/30 {
  color: rgb(180 83 9 / 0.3);
}

.text-amber-700\/35 {
  color: rgb(180 83 9 / 0.35);
}

.text-amber-700\/40 {
  color: rgb(180 83 9 / 0.4);
}

.text-amber-700\/45 {
  color: rgb(180 83 9 / 0.45);
}

.text-amber-700\/5 {
  color: rgb(180 83 9 / 0.05);
}

.text-amber-700\/50 {
  color: rgb(180 83 9 / 0.5);
}

.text-amber-700\/55 {
  color: rgb(180 83 9 / 0.55);
}

.text-amber-700\/60 {
  color: rgb(180 83 9 / 0.6);
}

.text-amber-700\/65 {
  color: rgb(180 83 9 / 0.65);
}

.text-amber-700\/70 {
  color: rgb(180 83 9 / 0.7);
}

.text-amber-700\/75 {
  color: rgb(180 83 9 / 0.75);
}

.text-amber-700\/80 {
  color: rgb(180 83 9 / 0.8);
}

.text-amber-700\/85 {
  color: rgb(180 83 9 / 0.85);
}

.text-amber-700\/90 {
  color: rgb(180 83 9 / 0.9);
}

.text-amber-700\/95 {
  color: rgb(180 83 9 / 0.95);
}

.text-amber-800 {
  --tw-text-opacity: 1;
  color: rgb(146 64 14 / var(--tw-text-opacity, 1));
}

.text-amber-800\/0 {
  color: rgb(146 64 14 / 0);
}

.text-amber-800\/10 {
  color: rgb(146 64 14 / 0.1);
}

.text-amber-800\/100 {
  color: rgb(146 64 14 / 1);
}

.text-amber-800\/15 {
  color: rgb(146 64 14 / 0.15);
}

.text-amber-800\/20 {
  color: rgb(146 64 14 / 0.2);
}

.text-amber-800\/25 {
  color: rgb(146 64 14 / 0.25);
}

.text-amber-800\/30 {
  color: rgb(146 64 14 / 0.3);
}

.text-amber-800\/35 {
  color: rgb(146 64 14 / 0.35);
}

.text-amber-800\/40 {
  color: rgb(146 64 14 / 0.4);
}

.text-amber-800\/45 {
  color: rgb(146 64 14 / 0.45);
}

.text-amber-800\/5 {
  color: rgb(146 64 14 / 0.05);
}

.text-amber-800\/50 {
  color: rgb(146 64 14 / 0.5);
}

.text-amber-800\/55 {
  color: rgb(146 64 14 / 0.55);
}

.text-amber-800\/60 {
  color: rgb(146 64 14 / 0.6);
}

.text-amber-800\/65 {
  color: rgb(146 64 14 / 0.65);
}

.text-amber-800\/70 {
  color: rgb(146 64 14 / 0.7);
}

.text-amber-800\/75 {
  color: rgb(146 64 14 / 0.75);
}

.text-amber-800\/80 {
  color: rgb(146 64 14 / 0.8);
}

.text-amber-800\/85 {
  color: rgb(146 64 14 / 0.85);
}

.text-amber-800\/90 {
  color: rgb(146 64 14 / 0.9);
}

.text-amber-800\/95 {
  color: rgb(146 64 14 / 0.95);
}

.text-amber-900 {
  --tw-text-opacity: 1;
  color: rgb(120 53 15 / var(--tw-text-opacity, 1));
}

.text-amber-900\/0 {
  color: rgb(120 53 15 / 0);
}

.text-amber-900\/10 {
  color: rgb(120 53 15 / 0.1);
}

.text-amber-900\/100 {
  color: rgb(120 53 15 / 1);
}

.text-amber-900\/15 {
  color: rgb(120 53 15 / 0.15);
}

.text-amber-900\/20 {
  color: rgb(120 53 15 / 0.2);
}

.text-amber-900\/25 {
  color: rgb(120 53 15 / 0.25);
}

.text-amber-900\/30 {
  color: rgb(120 53 15 / 0.3);
}

.text-amber-900\/35 {
  color: rgb(120 53 15 / 0.35);
}

.text-amber-900\/40 {
  color: rgb(120 53 15 / 0.4);
}

.text-amber-900\/45 {
  color: rgb(120 53 15 / 0.45);
}

.text-amber-900\/5 {
  color: rgb(120 53 15 / 0.05);
}

.text-amber-900\/50 {
  color: rgb(120 53 15 / 0.5);
}

.text-amber-900\/55 {
  color: rgb(120 53 15 / 0.55);
}

.text-amber-900\/60 {
  color: rgb(120 53 15 / 0.6);
}

.text-amber-900\/65 {
  color: rgb(120 53 15 / 0.65);
}

.text-amber-900\/70 {
  color: rgb(120 53 15 / 0.7);
}

.text-amber-900\/75 {
  color: rgb(120 53 15 / 0.75);
}

.text-amber-900\/80 {
  color: rgb(120 53 15 / 0.8);
}

.text-amber-900\/85 {
  color: rgb(120 53 15 / 0.85);
}

.text-amber-900\/90 {
  color: rgb(120 53 15 / 0.9);
}

.text-amber-900\/95 {
  color: rgb(120 53 15 / 0.95);
}

.text-blue-100 {
  --tw-text-opacity: 1;
  color: rgb(219 234 254 / var(--tw-text-opacity, 1));
}

.text-blue-100\/0 {
  color: rgb(219 234 254 / 0);
}

.text-blue-100\/10 {
  color: rgb(219 234 254 / 0.1);
}

.text-blue-100\/100 {
  color: rgb(219 234 254 / 1);
}

.text-blue-100\/15 {
  color: rgb(219 234 254 / 0.15);
}

.text-blue-100\/20 {
  color: rgb(219 234 254 / 0.2);
}

.text-blue-100\/25 {
  color: rgb(219 234 254 / 0.25);
}

.text-blue-100\/30 {
  color: rgb(219 234 254 / 0.3);
}

.text-blue-100\/35 {
  color: rgb(219 234 254 / 0.35);
}

.text-blue-100\/40 {
  color: rgb(219 234 254 / 0.4);
}

.text-blue-100\/45 {
  color: rgb(219 234 254 / 0.45);
}

.text-blue-100\/5 {
  color: rgb(219 234 254 / 0.05);
}

.text-blue-100\/50 {
  color: rgb(219 234 254 / 0.5);
}

.text-blue-100\/55 {
  color: rgb(219 234 254 / 0.55);
}

.text-blue-100\/60 {
  color: rgb(219 234 254 / 0.6);
}

.text-blue-100\/65 {
  color: rgb(219 234 254 / 0.65);
}

.text-blue-100\/70 {
  color: rgb(219 234 254 / 0.7);
}

.text-blue-100\/75 {
  color: rgb(219 234 254 / 0.75);
}

.text-blue-100\/80 {
  color: rgb(219 234 254 / 0.8);
}

.text-blue-100\/85 {
  color: rgb(219 234 254 / 0.85);
}

.text-blue-100\/90 {
  color: rgb(219 234 254 / 0.9);
}

.text-blue-100\/95 {
  color: rgb(219 234 254 / 0.95);
}

.text-blue-200 {
  --tw-text-opacity: 1;
  color: rgb(191 219 254 / var(--tw-text-opacity, 1));
}

.text-blue-200\/0 {
  color: rgb(191 219 254 / 0);
}

.text-blue-200\/10 {
  color: rgb(191 219 254 / 0.1);
}

.text-blue-200\/100 {
  color: rgb(191 219 254 / 1);
}

.text-blue-200\/15 {
  color: rgb(191 219 254 / 0.15);
}

.text-blue-200\/20 {
  color: rgb(191 219 254 / 0.2);
}

.text-blue-200\/25 {
  color: rgb(191 219 254 / 0.25);
}

.text-blue-200\/30 {
  color: rgb(191 219 254 / 0.3);
}

.text-blue-200\/35 {
  color: rgb(191 219 254 / 0.35);
}

.text-blue-200\/40 {
  color: rgb(191 219 254 / 0.4);
}

.text-blue-200\/45 {
  color: rgb(191 219 254 / 0.45);
}

.text-blue-200\/5 {
  color: rgb(191 219 254 / 0.05);
}

.text-blue-200\/50 {
  color: rgb(191 219 254 / 0.5);
}

.text-blue-200\/55 {
  color: rgb(191 219 254 / 0.55);
}

.text-blue-200\/60 {
  color: rgb(191 219 254 / 0.6);
}

.text-blue-200\/65 {
  color: rgb(191 219 254 / 0.65);
}

.text-blue-200\/70 {
  color: rgb(191 219 254 / 0.7);
}

.text-blue-200\/75 {
  color: rgb(191 219 254 / 0.75);
}

.text-blue-200\/80 {
  color: rgb(191 219 254 / 0.8);
}

.text-blue-200\/85 {
  color: rgb(191 219 254 / 0.85);
}

.text-blue-200\/90 {
  color: rgb(191 219 254 / 0.9);
}

.text-blue-200\/95 {
  color: rgb(191 219 254 / 0.95);
}

.text-blue-300 {
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / var(--tw-text-opacity, 1));
}

.text-blue-300\/0 {
  color: rgb(147 197 253 / 0);
}

.text-blue-300\/10 {
  color: rgb(147 197 253 / 0.1);
}

.text-blue-300\/100 {
  color: rgb(147 197 253 / 1);
}

.text-blue-300\/15 {
  color: rgb(147 197 253 / 0.15);
}

.text-blue-300\/20 {
  color: rgb(147 197 253 / 0.2);
}

.text-blue-300\/25 {
  color: rgb(147 197 253 / 0.25);
}

.text-blue-300\/30 {
  color: rgb(147 197 253 / 0.3);
}

.text-blue-300\/35 {
  color: rgb(147 197 253 / 0.35);
}

.text-blue-300\/40 {
  color: rgb(147 197 253 / 0.4);
}

.text-blue-300\/45 {
  color: rgb(147 197 253 / 0.45);
}

.text-blue-300\/5 {
  color: rgb(147 197 253 / 0.05);
}

.text-blue-300\/50 {
  color: rgb(147 197 253 / 0.5);
}

.text-blue-300\/55 {
  color: rgb(147 197 253 / 0.55);
}

.text-blue-300\/60 {
  color: rgb(147 197 253 / 0.6);
}

.text-blue-300\/65 {
  color: rgb(147 197 253 / 0.65);
}

.text-blue-300\/70 {
  color: rgb(147 197 253 / 0.7);
}

.text-blue-300\/75 {
  color: rgb(147 197 253 / 0.75);
}

.text-blue-300\/80 {
  color: rgb(147 197 253 / 0.8);
}

.text-blue-300\/85 {
  color: rgb(147 197 253 / 0.85);
}

.text-blue-300\/90 {
  color: rgb(147 197 253 / 0.9);
}

.text-blue-300\/95 {
  color: rgb(147 197 253 / 0.95);
}

.text-blue-400 {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}

.text-blue-400\/0 {
  color: rgb(96 165 250 / 0);
}

.text-blue-400\/10 {
  color: rgb(96 165 250 / 0.1);
}

.text-blue-400\/100 {
  color: rgb(96 165 250 / 1);
}

.text-blue-400\/15 {
  color: rgb(96 165 250 / 0.15);
}

.text-blue-400\/20 {
  color: rgb(96 165 250 / 0.2);
}

.text-blue-400\/25 {
  color: rgb(96 165 250 / 0.25);
}

.text-blue-400\/30 {
  color: rgb(96 165 250 / 0.3);
}

.text-blue-400\/35 {
  color: rgb(96 165 250 / 0.35);
}

.text-blue-400\/40 {
  color: rgb(96 165 250 / 0.4);
}

.text-blue-400\/45 {
  color: rgb(96 165 250 / 0.45);
}

.text-blue-400\/5 {
  color: rgb(96 165 250 / 0.05);
}

.text-blue-400\/50 {
  color: rgb(96 165 250 / 0.5);
}

.text-blue-400\/55 {
  color: rgb(96 165 250 / 0.55);
}

.text-blue-400\/60 {
  color: rgb(96 165 250 / 0.6);
}

.text-blue-400\/65 {
  color: rgb(96 165 250 / 0.65);
}

.text-blue-400\/70 {
  color: rgb(96 165 250 / 0.7);
}

.text-blue-400\/75 {
  color: rgb(96 165 250 / 0.75);
}

.text-blue-400\/80 {
  color: rgb(96 165 250 / 0.8);
}

.text-blue-400\/85 {
  color: rgb(96 165 250 / 0.85);
}

.text-blue-400\/90 {
  color: rgb(96 165 250 / 0.9);
}

.text-blue-400\/95 {
  color: rgb(96 165 250 / 0.95);
}

.text-blue-50 {
  --tw-text-opacity: 1;
  color: rgb(239 246 255 / var(--tw-text-opacity, 1));
}

.text-blue-50\/0 {
  color: rgb(239 246 255 / 0);
}

.text-blue-50\/10 {
  color: rgb(239 246 255 / 0.1);
}

.text-blue-50\/100 {
  color: rgb(239 246 255 / 1);
}

.text-blue-50\/15 {
  color: rgb(239 246 255 / 0.15);
}

.text-blue-50\/20 {
  color: rgb(239 246 255 / 0.2);
}

.text-blue-50\/25 {
  color: rgb(239 246 255 / 0.25);
}

.text-blue-50\/30 {
  color: rgb(239 246 255 / 0.3);
}

.text-blue-50\/35 {
  color: rgb(239 246 255 / 0.35);
}

.text-blue-50\/40 {
  color: rgb(239 246 255 / 0.4);
}

.text-blue-50\/45 {
  color: rgb(239 246 255 / 0.45);
}

.text-blue-50\/5 {
  color: rgb(239 246 255 / 0.05);
}

.text-blue-50\/50 {
  color: rgb(239 246 255 / 0.5);
}

.text-blue-50\/55 {
  color: rgb(239 246 255 / 0.55);
}

.text-blue-50\/60 {
  color: rgb(239 246 255 / 0.6);
}

.text-blue-50\/65 {
  color: rgb(239 246 255 / 0.65);
}

.text-blue-50\/70 {
  color: rgb(239 246 255 / 0.7);
}

.text-blue-50\/75 {
  color: rgb(239 246 255 / 0.75);
}

.text-blue-50\/80 {
  color: rgb(239 246 255 / 0.8);
}

.text-blue-50\/85 {
  color: rgb(239 246 255 / 0.85);
}

.text-blue-50\/90 {
  color: rgb(239 246 255 / 0.9);
}

.text-blue-50\/95 {
  color: rgb(239 246 255 / 0.95);
}

.text-blue-500 {
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}

.text-blue-500\/0 {
  color: rgb(59 130 246 / 0);
}

.text-blue-500\/10 {
  color: rgb(59 130 246 / 0.1);
}

.text-blue-500\/100 {
  color: rgb(59 130 246 / 1);
}

.text-blue-500\/15 {
  color: rgb(59 130 246 / 0.15);
}

.text-blue-500\/20 {
  color: rgb(59 130 246 / 0.2);
}

.text-blue-500\/25 {
  color: rgb(59 130 246 / 0.25);
}

.text-blue-500\/30 {
  color: rgb(59 130 246 / 0.3);
}

.text-blue-500\/35 {
  color: rgb(59 130 246 / 0.35);
}

.text-blue-500\/40 {
  color: rgb(59 130 246 / 0.4);
}

.text-blue-500\/45 {
  color: rgb(59 130 246 / 0.45);
}

.text-blue-500\/5 {
  color: rgb(59 130 246 / 0.05);
}

.text-blue-500\/50 {
  color: rgb(59 130 246 / 0.5);
}

.text-blue-500\/55 {
  color: rgb(59 130 246 / 0.55);
}

.text-blue-500\/60 {
  color: rgb(59 130 246 / 0.6);
}

.text-blue-500\/65 {
  color: rgb(59 130 246 / 0.65);
}

.text-blue-500\/70 {
  color: rgb(59 130 246 / 0.7);
}

.text-blue-500\/75 {
  color: rgb(59 130 246 / 0.75);
}

.text-blue-500\/80 {
  color: rgb(59 130 246 / 0.8);
}

.text-blue-500\/85 {
  color: rgb(59 130 246 / 0.85);
}

.text-blue-500\/90 {
  color: rgb(59 130 246 / 0.9);
}

.text-blue-500\/95 {
  color: rgb(59 130 246 / 0.95);
}

.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}

.text-blue-600\/0 {
  color: rgb(37 99 235 / 0);
}

.text-blue-600\/10 {
  color: rgb(37 99 235 / 0.1);
}

.text-blue-600\/100 {
  color: rgb(37 99 235 / 1);
}

.text-blue-600\/15 {
  color: rgb(37 99 235 / 0.15);
}

.text-blue-600\/20 {
  color: rgb(37 99 235 / 0.2);
}

.text-blue-600\/25 {
  color: rgb(37 99 235 / 0.25);
}

.text-blue-600\/30 {
  color: rgb(37 99 235 / 0.3);
}

.text-blue-600\/35 {
  color: rgb(37 99 235 / 0.35);
}

.text-blue-600\/40 {
  color: rgb(37 99 235 / 0.4);
}

.text-blue-600\/45 {
  color: rgb(37 99 235 / 0.45);
}

.text-blue-600\/5 {
  color: rgb(37 99 235 / 0.05);
}

.text-blue-600\/50 {
  color: rgb(37 99 235 / 0.5);
}

.text-blue-600\/55 {
  color: rgb(37 99 235 / 0.55);
}

.text-blue-600\/60 {
  color: rgb(37 99 235 / 0.6);
}

.text-blue-600\/65 {
  color: rgb(37 99 235 / 0.65);
}

.text-blue-600\/70 {
  color: rgb(37 99 235 / 0.7);
}

.text-blue-600\/75 {
  color: rgb(37 99 235 / 0.75);
}

.text-blue-600\/80 {
  color: rgb(37 99 235 / 0.8);
}

.text-blue-600\/85 {
  color: rgb(37 99 235 / 0.85);
}

.text-blue-600\/90 {
  color: rgb(37 99 235 / 0.9);
}

.text-blue-600\/95 {
  color: rgb(37 99 235 / 0.95);
}

.text-blue-700 {
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}

.text-blue-700\/0 {
  color: rgb(29 78 216 / 0);
}

.text-blue-700\/10 {
  color: rgb(29 78 216 / 0.1);
}

.text-blue-700\/100 {
  color: rgb(29 78 216 / 1);
}

.text-blue-700\/15 {
  color: rgb(29 78 216 / 0.15);
}

.text-blue-700\/20 {
  color: rgb(29 78 216 / 0.2);
}

.text-blue-700\/25 {
  color: rgb(29 78 216 / 0.25);
}

.text-blue-700\/30 {
  color: rgb(29 78 216 / 0.3);
}

.text-blue-700\/35 {
  color: rgb(29 78 216 / 0.35);
}

.text-blue-700\/40 {
  color: rgb(29 78 216 / 0.4);
}

.text-blue-700\/45 {
  color: rgb(29 78 216 / 0.45);
}

.text-blue-700\/5 {
  color: rgb(29 78 216 / 0.05);
}

.text-blue-700\/50 {
  color: rgb(29 78 216 / 0.5);
}

.text-blue-700\/55 {
  color: rgb(29 78 216 / 0.55);
}

.text-blue-700\/60 {
  color: rgb(29 78 216 / 0.6);
}

.text-blue-700\/65 {
  color: rgb(29 78 216 / 0.65);
}

.text-blue-700\/70 {
  color: rgb(29 78 216 / 0.7);
}

.text-blue-700\/75 {
  color: rgb(29 78 216 / 0.75);
}

.text-blue-700\/80 {
  color: rgb(29 78 216 / 0.8);
}

.text-blue-700\/85 {
  color: rgb(29 78 216 / 0.85);
}

.text-blue-700\/90 {
  color: rgb(29 78 216 / 0.9);
}

.text-blue-700\/95 {
  color: rgb(29 78 216 / 0.95);
}

.text-blue-800 {
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}

.text-blue-800\/0 {
  color: rgb(30 64 175 / 0);
}

.text-blue-800\/10 {
  color: rgb(30 64 175 / 0.1);
}

.text-blue-800\/100 {
  color: rgb(30 64 175 / 1);
}

.text-blue-800\/15 {
  color: rgb(30 64 175 / 0.15);
}

.text-blue-800\/20 {
  color: rgb(30 64 175 / 0.2);
}

.text-blue-800\/25 {
  color: rgb(30 64 175 / 0.25);
}

.text-blue-800\/30 {
  color: rgb(30 64 175 / 0.3);
}

.text-blue-800\/35 {
  color: rgb(30 64 175 / 0.35);
}

.text-blue-800\/40 {
  color: rgb(30 64 175 / 0.4);
}

.text-blue-800\/45 {
  color: rgb(30 64 175 / 0.45);
}

.text-blue-800\/5 {
  color: rgb(30 64 175 / 0.05);
}

.text-blue-800\/50 {
  color: rgb(30 64 175 / 0.5);
}

.text-blue-800\/55 {
  color: rgb(30 64 175 / 0.55);
}

.text-blue-800\/60 {
  color: rgb(30 64 175 / 0.6);
}

.text-blue-800\/65 {
  color: rgb(30 64 175 / 0.65);
}

.text-blue-800\/70 {
  color: rgb(30 64 175 / 0.7);
}

.text-blue-800\/75 {
  color: rgb(30 64 175 / 0.75);
}

.text-blue-800\/80 {
  color: rgb(30 64 175 / 0.8);
}

.text-blue-800\/85 {
  color: rgb(30 64 175 / 0.85);
}

.text-blue-800\/90 {
  color: rgb(30 64 175 / 0.9);
}

.text-blue-800\/95 {
  color: rgb(30 64 175 / 0.95);
}

.text-blue-900 {
  --tw-text-opacity: 1;
  color: rgb(30 58 138 / var(--tw-text-opacity, 1));
}

.text-blue-900\/0 {
  color: rgb(30 58 138 / 0);
}

.text-blue-900\/10 {
  color: rgb(30 58 138 / 0.1);
}

.text-blue-900\/100 {
  color: rgb(30 58 138 / 1);
}

.text-blue-900\/15 {
  color: rgb(30 58 138 / 0.15);
}

.text-blue-900\/20 {
  color: rgb(30 58 138 / 0.2);
}

.text-blue-900\/25 {
  color: rgb(30 58 138 / 0.25);
}

.text-blue-900\/30 {
  color: rgb(30 58 138 / 0.3);
}

.text-blue-900\/35 {
  color: rgb(30 58 138 / 0.35);
}

.text-blue-900\/40 {
  color: rgb(30 58 138 / 0.4);
}

.text-blue-900\/45 {
  color: rgb(30 58 138 / 0.45);
}

.text-blue-900\/5 {
  color: rgb(30 58 138 / 0.05);
}

.text-blue-900\/50 {
  color: rgb(30 58 138 / 0.5);
}

.text-blue-900\/55 {
  color: rgb(30 58 138 / 0.55);
}

.text-blue-900\/60 {
  color: rgb(30 58 138 / 0.6);
}

.text-blue-900\/65 {
  color: rgb(30 58 138 / 0.65);
}

.text-blue-900\/70 {
  color: rgb(30 58 138 / 0.7);
}

.text-blue-900\/75 {
  color: rgb(30 58 138 / 0.75);
}

.text-blue-900\/80 {
  color: rgb(30 58 138 / 0.8);
}

.text-blue-900\/85 {
  color: rgb(30 58 138 / 0.85);
}

.text-blue-900\/90 {
  color: rgb(30 58 138 / 0.9);
}

.text-blue-900\/95 {
  color: rgb(30 58 138 / 0.95);
}

.text-emerald-100 {
  --tw-text-opacity: 1;
  color: rgb(209 250 229 / var(--tw-text-opacity, 1));
}

.text-emerald-100\/0 {
  color: rgb(209 250 229 / 0);
}

.text-emerald-100\/10 {
  color: rgb(209 250 229 / 0.1);
}

.text-emerald-100\/100 {
  color: rgb(209 250 229 / 1);
}

.text-emerald-100\/15 {
  color: rgb(209 250 229 / 0.15);
}

.text-emerald-100\/20 {
  color: rgb(209 250 229 / 0.2);
}

.text-emerald-100\/25 {
  color: rgb(209 250 229 / 0.25);
}

.text-emerald-100\/30 {
  color: rgb(209 250 229 / 0.3);
}

.text-emerald-100\/35 {
  color: rgb(209 250 229 / 0.35);
}

.text-emerald-100\/40 {
  color: rgb(209 250 229 / 0.4);
}

.text-emerald-100\/45 {
  color: rgb(209 250 229 / 0.45);
}

.text-emerald-100\/5 {
  color: rgb(209 250 229 / 0.05);
}

.text-emerald-100\/50 {
  color: rgb(209 250 229 / 0.5);
}

.text-emerald-100\/55 {
  color: rgb(209 250 229 / 0.55);
}

.text-emerald-100\/60 {
  color: rgb(209 250 229 / 0.6);
}

.text-emerald-100\/65 {
  color: rgb(209 250 229 / 0.65);
}

.text-emerald-100\/70 {
  color: rgb(209 250 229 / 0.7);
}

.text-emerald-100\/75 {
  color: rgb(209 250 229 / 0.75);
}

.text-emerald-100\/80 {
  color: rgb(209 250 229 / 0.8);
}

.text-emerald-100\/85 {
  color: rgb(209 250 229 / 0.85);
}

.text-emerald-100\/90 {
  color: rgb(209 250 229 / 0.9);
}

.text-emerald-100\/95 {
  color: rgb(209 250 229 / 0.95);
}

.text-emerald-200 {
  --tw-text-opacity: 1;
  color: rgb(167 243 208 / var(--tw-text-opacity, 1));
}

.text-emerald-200\/0 {
  color: rgb(167 243 208 / 0);
}

.text-emerald-200\/10 {
  color: rgb(167 243 208 / 0.1);
}

.text-emerald-200\/100 {
  color: rgb(167 243 208 / 1);
}

.text-emerald-200\/15 {
  color: rgb(167 243 208 / 0.15);
}

.text-emerald-200\/20 {
  color: rgb(167 243 208 / 0.2);
}

.text-emerald-200\/25 {
  color: rgb(167 243 208 / 0.25);
}

.text-emerald-200\/30 {
  color: rgb(167 243 208 / 0.3);
}

.text-emerald-200\/35 {
  color: rgb(167 243 208 / 0.35);
}

.text-emerald-200\/40 {
  color: rgb(167 243 208 / 0.4);
}

.text-emerald-200\/45 {
  color: rgb(167 243 208 / 0.45);
}

.text-emerald-200\/5 {
  color: rgb(167 243 208 / 0.05);
}

.text-emerald-200\/50 {
  color: rgb(167 243 208 / 0.5);
}

.text-emerald-200\/55 {
  color: rgb(167 243 208 / 0.55);
}

.text-emerald-200\/60 {
  color: rgb(167 243 208 / 0.6);
}

.text-emerald-200\/65 {
  color: rgb(167 243 208 / 0.65);
}

.text-emerald-200\/70 {
  color: rgb(167 243 208 / 0.7);
}

.text-emerald-200\/75 {
  color: rgb(167 243 208 / 0.75);
}

.text-emerald-200\/80 {
  color: rgb(167 243 208 / 0.8);
}

.text-emerald-200\/85 {
  color: rgb(167 243 208 / 0.85);
}

.text-emerald-200\/90 {
  color: rgb(167 243 208 / 0.9);
}

.text-emerald-200\/95 {
  color: rgb(167 243 208 / 0.95);
}

.text-emerald-300 {
  --tw-text-opacity: 1;
  color: rgb(110 231 183 / var(--tw-text-opacity, 1));
}

.text-emerald-300\/0 {
  color: rgb(110 231 183 / 0);
}

.text-emerald-300\/10 {
  color: rgb(110 231 183 / 0.1);
}

.text-emerald-300\/100 {
  color: rgb(110 231 183 / 1);
}

.text-emerald-300\/15 {
  color: rgb(110 231 183 / 0.15);
}

.text-emerald-300\/20 {
  color: rgb(110 231 183 / 0.2);
}

.text-emerald-300\/25 {
  color: rgb(110 231 183 / 0.25);
}

.text-emerald-300\/30 {
  color: rgb(110 231 183 / 0.3);
}

.text-emerald-300\/35 {
  color: rgb(110 231 183 / 0.35);
}

.text-emerald-300\/40 {
  color: rgb(110 231 183 / 0.4);
}

.text-emerald-300\/45 {
  color: rgb(110 231 183 / 0.45);
}

.text-emerald-300\/5 {
  color: rgb(110 231 183 / 0.05);
}

.text-emerald-300\/50 {
  color: rgb(110 231 183 / 0.5);
}

.text-emerald-300\/55 {
  color: rgb(110 231 183 / 0.55);
}

.text-emerald-300\/60 {
  color: rgb(110 231 183 / 0.6);
}

.text-emerald-300\/65 {
  color: rgb(110 231 183 / 0.65);
}

.text-emerald-300\/70 {
  color: rgb(110 231 183 / 0.7);
}

.text-emerald-300\/75 {
  color: rgb(110 231 183 / 0.75);
}

.text-emerald-300\/80 {
  color: rgb(110 231 183 / 0.8);
}

.text-emerald-300\/85 {
  color: rgb(110 231 183 / 0.85);
}

.text-emerald-300\/90 {
  color: rgb(110 231 183 / 0.9);
}

.text-emerald-300\/95 {
  color: rgb(110 231 183 / 0.95);
}

.text-emerald-400 {
  --tw-text-opacity: 1;
  color: rgb(52 211 153 / var(--tw-text-opacity, 1));
}

.text-emerald-400\/0 {
  color: rgb(52 211 153 / 0);
}

.text-emerald-400\/10 {
  color: rgb(52 211 153 / 0.1);
}

.text-emerald-400\/100 {
  color: rgb(52 211 153 / 1);
}

.text-emerald-400\/15 {
  color: rgb(52 211 153 / 0.15);
}

.text-emerald-400\/20 {
  color: rgb(52 211 153 / 0.2);
}

.text-emerald-400\/25 {
  color: rgb(52 211 153 / 0.25);
}

.text-emerald-400\/30 {
  color: rgb(52 211 153 / 0.3);
}

.text-emerald-400\/35 {
  color: rgb(52 211 153 / 0.35);
}

.text-emerald-400\/40 {
  color: rgb(52 211 153 / 0.4);
}

.text-emerald-400\/45 {
  color: rgb(52 211 153 / 0.45);
}

.text-emerald-400\/5 {
  color: rgb(52 211 153 / 0.05);
}

.text-emerald-400\/50 {
  color: rgb(52 211 153 / 0.5);
}

.text-emerald-400\/55 {
  color: rgb(52 211 153 / 0.55);
}

.text-emerald-400\/60 {
  color: rgb(52 211 153 / 0.6);
}

.text-emerald-400\/65 {
  color: rgb(52 211 153 / 0.65);
}

.text-emerald-400\/70 {
  color: rgb(52 211 153 / 0.7);
}

.text-emerald-400\/75 {
  color: rgb(52 211 153 / 0.75);
}

.text-emerald-400\/80 {
  color: rgb(52 211 153 / 0.8);
}

.text-emerald-400\/85 {
  color: rgb(52 211 153 / 0.85);
}

.text-emerald-400\/90 {
  color: rgb(52 211 153 / 0.9);
}

.text-emerald-400\/95 {
  color: rgb(52 211 153 / 0.95);
}

.text-emerald-50 {
  --tw-text-opacity: 1;
  color: rgb(236 253 245 / var(--tw-text-opacity, 1));
}

.text-emerald-50\/0 {
  color: rgb(236 253 245 / 0);
}

.text-emerald-50\/10 {
  color: rgb(236 253 245 / 0.1);
}

.text-emerald-50\/100 {
  color: rgb(236 253 245 / 1);
}

.text-emerald-50\/15 {
  color: rgb(236 253 245 / 0.15);
}

.text-emerald-50\/20 {
  color: rgb(236 253 245 / 0.2);
}

.text-emerald-50\/25 {
  color: rgb(236 253 245 / 0.25);
}

.text-emerald-50\/30 {
  color: rgb(236 253 245 / 0.3);
}

.text-emerald-50\/35 {
  color: rgb(236 253 245 / 0.35);
}

.text-emerald-50\/40 {
  color: rgb(236 253 245 / 0.4);
}

.text-emerald-50\/45 {
  color: rgb(236 253 245 / 0.45);
}

.text-emerald-50\/5 {
  color: rgb(236 253 245 / 0.05);
}

.text-emerald-50\/50 {
  color: rgb(236 253 245 / 0.5);
}

.text-emerald-50\/55 {
  color: rgb(236 253 245 / 0.55);
}

.text-emerald-50\/60 {
  color: rgb(236 253 245 / 0.6);
}

.text-emerald-50\/65 {
  color: rgb(236 253 245 / 0.65);
}

.text-emerald-50\/70 {
  color: rgb(236 253 245 / 0.7);
}

.text-emerald-50\/75 {
  color: rgb(236 253 245 / 0.75);
}

.text-emerald-50\/80 {
  color: rgb(236 253 245 / 0.8);
}

.text-emerald-50\/85 {
  color: rgb(236 253 245 / 0.85);
}

.text-emerald-50\/90 {
  color: rgb(236 253 245 / 0.9);
}

.text-emerald-50\/95 {
  color: rgb(236 253 245 / 0.95);
}

.text-emerald-500 {
  --tw-text-opacity: 1;
  color: rgb(16 185 129 / var(--tw-text-opacity, 1));
}

.text-emerald-500\/0 {
  color: rgb(16 185 129 / 0);
}

.text-emerald-500\/10 {
  color: rgb(16 185 129 / 0.1);
}

.text-emerald-500\/100 {
  color: rgb(16 185 129 / 1);
}

.text-emerald-500\/15 {
  color: rgb(16 185 129 / 0.15);
}

.text-emerald-500\/20 {
  color: rgb(16 185 129 / 0.2);
}

.text-emerald-500\/25 {
  color: rgb(16 185 129 / 0.25);
}

.text-emerald-500\/30 {
  color: rgb(16 185 129 / 0.3);
}

.text-emerald-500\/35 {
  color: rgb(16 185 129 / 0.35);
}

.text-emerald-500\/40 {
  color: rgb(16 185 129 / 0.4);
}

.text-emerald-500\/45 {
  color: rgb(16 185 129 / 0.45);
}

.text-emerald-500\/5 {
  color: rgb(16 185 129 / 0.05);
}

.text-emerald-500\/50 {
  color: rgb(16 185 129 / 0.5);
}

.text-emerald-500\/55 {
  color: rgb(16 185 129 / 0.55);
}

.text-emerald-500\/60 {
  color: rgb(16 185 129 / 0.6);
}

.text-emerald-500\/65 {
  color: rgb(16 185 129 / 0.65);
}

.text-emerald-500\/70 {
  color: rgb(16 185 129 / 0.7);
}

.text-emerald-500\/75 {
  color: rgb(16 185 129 / 0.75);
}

.text-emerald-500\/80 {
  color: rgb(16 185 129 / 0.8);
}

.text-emerald-500\/85 {
  color: rgb(16 185 129 / 0.85);
}

.text-emerald-500\/90 {
  color: rgb(16 185 129 / 0.9);
}

.text-emerald-500\/95 {
  color: rgb(16 185 129 / 0.95);
}

.text-emerald-600 {
  --tw-text-opacity: 1;
  color: rgb(5 150 105 / var(--tw-text-opacity, 1));
}

.text-emerald-600\/0 {
  color: rgb(5 150 105 / 0);
}

.text-emerald-600\/10 {
  color: rgb(5 150 105 / 0.1);
}

.text-emerald-600\/100 {
  color: rgb(5 150 105 / 1);
}

.text-emerald-600\/15 {
  color: rgb(5 150 105 / 0.15);
}

.text-emerald-600\/20 {
  color: rgb(5 150 105 / 0.2);
}

.text-emerald-600\/25 {
  color: rgb(5 150 105 / 0.25);
}

.text-emerald-600\/30 {
  color: rgb(5 150 105 / 0.3);
}

.text-emerald-600\/35 {
  color: rgb(5 150 105 / 0.35);
}

.text-emerald-600\/40 {
  color: rgb(5 150 105 / 0.4);
}

.text-emerald-600\/45 {
  color: rgb(5 150 105 / 0.45);
}

.text-emerald-600\/5 {
  color: rgb(5 150 105 / 0.05);
}

.text-emerald-600\/50 {
  color: rgb(5 150 105 / 0.5);
}

.text-emerald-600\/55 {
  color: rgb(5 150 105 / 0.55);
}

.text-emerald-600\/60 {
  color: rgb(5 150 105 / 0.6);
}

.text-emerald-600\/65 {
  color: rgb(5 150 105 / 0.65);
}

.text-emerald-600\/70 {
  color: rgb(5 150 105 / 0.7);
}

.text-emerald-600\/75 {
  color: rgb(5 150 105 / 0.75);
}

.text-emerald-600\/80 {
  color: rgb(5 150 105 / 0.8);
}

.text-emerald-600\/85 {
  color: rgb(5 150 105 / 0.85);
}

.text-emerald-600\/90 {
  color: rgb(5 150 105 / 0.9);
}

.text-emerald-600\/95 {
  color: rgb(5 150 105 / 0.95);
}

.text-emerald-700 {
  --tw-text-opacity: 1;
  color: rgb(4 120 87 / var(--tw-text-opacity, 1));
}

.text-emerald-700\/0 {
  color: rgb(4 120 87 / 0);
}

.text-emerald-700\/10 {
  color: rgb(4 120 87 / 0.1);
}

.text-emerald-700\/100 {
  color: rgb(4 120 87 / 1);
}

.text-emerald-700\/15 {
  color: rgb(4 120 87 / 0.15);
}

.text-emerald-700\/20 {
  color: rgb(4 120 87 / 0.2);
}

.text-emerald-700\/25 {
  color: rgb(4 120 87 / 0.25);
}

.text-emerald-700\/30 {
  color: rgb(4 120 87 / 0.3);
}

.text-emerald-700\/35 {
  color: rgb(4 120 87 / 0.35);
}

.text-emerald-700\/40 {
  color: rgb(4 120 87 / 0.4);
}

.text-emerald-700\/45 {
  color: rgb(4 120 87 / 0.45);
}

.text-emerald-700\/5 {
  color: rgb(4 120 87 / 0.05);
}

.text-emerald-700\/50 {
  color: rgb(4 120 87 / 0.5);
}

.text-emerald-700\/55 {
  color: rgb(4 120 87 / 0.55);
}

.text-emerald-700\/60 {
  color: rgb(4 120 87 / 0.6);
}

.text-emerald-700\/65 {
  color: rgb(4 120 87 / 0.65);
}

.text-emerald-700\/70 {
  color: rgb(4 120 87 / 0.7);
}

.text-emerald-700\/75 {
  color: rgb(4 120 87 / 0.75);
}

.text-emerald-700\/80 {
  color: rgb(4 120 87 / 0.8);
}

.text-emerald-700\/85 {
  color: rgb(4 120 87 / 0.85);
}

.text-emerald-700\/90 {
  color: rgb(4 120 87 / 0.9);
}

.text-emerald-700\/95 {
  color: rgb(4 120 87 / 0.95);
}

.text-emerald-800 {
  --tw-text-opacity: 1;
  color: rgb(6 95 70 / var(--tw-text-opacity, 1));
}

.text-emerald-800\/0 {
  color: rgb(6 95 70 / 0);
}

.text-emerald-800\/10 {
  color: rgb(6 95 70 / 0.1);
}

.text-emerald-800\/100 {
  color: rgb(6 95 70 / 1);
}

.text-emerald-800\/15 {
  color: rgb(6 95 70 / 0.15);
}

.text-emerald-800\/20 {
  color: rgb(6 95 70 / 0.2);
}

.text-emerald-800\/25 {
  color: rgb(6 95 70 / 0.25);
}

.text-emerald-800\/30 {
  color: rgb(6 95 70 / 0.3);
}

.text-emerald-800\/35 {
  color: rgb(6 95 70 / 0.35);
}

.text-emerald-800\/40 {
  color: rgb(6 95 70 / 0.4);
}

.text-emerald-800\/45 {
  color: rgb(6 95 70 / 0.45);
}

.text-emerald-800\/5 {
  color: rgb(6 95 70 / 0.05);
}

.text-emerald-800\/50 {
  color: rgb(6 95 70 / 0.5);
}

.text-emerald-800\/55 {
  color: rgb(6 95 70 / 0.55);
}

.text-emerald-800\/60 {
  color: rgb(6 95 70 / 0.6);
}

.text-emerald-800\/65 {
  color: rgb(6 95 70 / 0.65);
}

.text-emerald-800\/70 {
  color: rgb(6 95 70 / 0.7);
}

.text-emerald-800\/75 {
  color: rgb(6 95 70 / 0.75);
}

.text-emerald-800\/80 {
  color: rgb(6 95 70 / 0.8);
}

.text-emerald-800\/85 {
  color: rgb(6 95 70 / 0.85);
}

.text-emerald-800\/90 {
  color: rgb(6 95 70 / 0.9);
}

.text-emerald-800\/95 {
  color: rgb(6 95 70 / 0.95);
}

.text-emerald-900 {
  --tw-text-opacity: 1;
  color: rgb(6 78 59 / var(--tw-text-opacity, 1));
}

.text-emerald-900\/0 {
  color: rgb(6 78 59 / 0);
}

.text-emerald-900\/10 {
  color: rgb(6 78 59 / 0.1);
}

.text-emerald-900\/100 {
  color: rgb(6 78 59 / 1);
}

.text-emerald-900\/15 {
  color: rgb(6 78 59 / 0.15);
}

.text-emerald-900\/20 {
  color: rgb(6 78 59 / 0.2);
}

.text-emerald-900\/25 {
  color: rgb(6 78 59 / 0.25);
}

.text-emerald-900\/30 {
  color: rgb(6 78 59 / 0.3);
}

.text-emerald-900\/35 {
  color: rgb(6 78 59 / 0.35);
}

.text-emerald-900\/40 {
  color: rgb(6 78 59 / 0.4);
}

.text-emerald-900\/45 {
  color: rgb(6 78 59 / 0.45);
}

.text-emerald-900\/5 {
  color: rgb(6 78 59 / 0.05);
}

.text-emerald-900\/50 {
  color: rgb(6 78 59 / 0.5);
}

.text-emerald-900\/55 {
  color: rgb(6 78 59 / 0.55);
}

.text-emerald-900\/60 {
  color: rgb(6 78 59 / 0.6);
}

.text-emerald-900\/65 {
  color: rgb(6 78 59 / 0.65);
}

.text-emerald-900\/70 {
  color: rgb(6 78 59 / 0.7);
}

.text-emerald-900\/75 {
  color: rgb(6 78 59 / 0.75);
}

.text-emerald-900\/80 {
  color: rgb(6 78 59 / 0.8);
}

.text-emerald-900\/85 {
  color: rgb(6 78 59 / 0.85);
}

.text-emerald-900\/90 {
  color: rgb(6 78 59 / 0.9);
}

.text-emerald-900\/95 {
  color: rgb(6 78 59 / 0.95);
}

.text-error {
  --tw-text-opacity: 1;
  color: rgb(186 26 26 / var(--tw-text-opacity, 1));
}

.text-inverse-on-surface {
  --tw-text-opacity: 1;
  color: rgb(242 241 234 / var(--tw-text-opacity, 1));
}

.text-on-error {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-on-primary {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-on-surface {
  --tw-text-opacity: 1;
  color: rgb(27 28 24 / var(--tw-text-opacity, 1));
}

.text-on-surface-variant {
  --tw-text-opacity: 1;
  color: rgb(86 66 60 / var(--tw-text-opacity, 1));
}

.text-on-tertiary-fixed-variant {
  --tw-text-opacity: 1;
  color: rgb(70 71 68 / var(--tw-text-opacity, 1));
}

.text-orange-100 {
  --tw-text-opacity: 1;
  color: rgb(255 237 213 / var(--tw-text-opacity, 1));
}

.text-orange-100\/0 {
  color: rgb(255 237 213 / 0);
}

.text-orange-100\/10 {
  color: rgb(255 237 213 / 0.1);
}

.text-orange-100\/100 {
  color: rgb(255 237 213 / 1);
}

.text-orange-100\/15 {
  color: rgb(255 237 213 / 0.15);
}

.text-orange-100\/20 {
  color: rgb(255 237 213 / 0.2);
}

.text-orange-100\/25 {
  color: rgb(255 237 213 / 0.25);
}

.text-orange-100\/30 {
  color: rgb(255 237 213 / 0.3);
}

.text-orange-100\/35 {
  color: rgb(255 237 213 / 0.35);
}

.text-orange-100\/40 {
  color: rgb(255 237 213 / 0.4);
}

.text-orange-100\/45 {
  color: rgb(255 237 213 / 0.45);
}

.text-orange-100\/5 {
  color: rgb(255 237 213 / 0.05);
}

.text-orange-100\/50 {
  color: rgb(255 237 213 / 0.5);
}

.text-orange-100\/55 {
  color: rgb(255 237 213 / 0.55);
}

.text-orange-100\/60 {
  color: rgb(255 237 213 / 0.6);
}

.text-orange-100\/65 {
  color: rgb(255 237 213 / 0.65);
}

.text-orange-100\/70 {
  color: rgb(255 237 213 / 0.7);
}

.text-orange-100\/75 {
  color: rgb(255 237 213 / 0.75);
}

.text-orange-100\/80 {
  color: rgb(255 237 213 / 0.8);
}

.text-orange-100\/85 {
  color: rgb(255 237 213 / 0.85);
}

.text-orange-100\/90 {
  color: rgb(255 237 213 / 0.9);
}

.text-orange-100\/95 {
  color: rgb(255 237 213 / 0.95);
}

.text-orange-200 {
  --tw-text-opacity: 1;
  color: rgb(254 215 170 / var(--tw-text-opacity, 1));
}

.text-orange-200\/0 {
  color: rgb(254 215 170 / 0);
}

.text-orange-200\/10 {
  color: rgb(254 215 170 / 0.1);
}

.text-orange-200\/100 {
  color: rgb(254 215 170 / 1);
}

.text-orange-200\/15 {
  color: rgb(254 215 170 / 0.15);
}

.text-orange-200\/20 {
  color: rgb(254 215 170 / 0.2);
}

.text-orange-200\/25 {
  color: rgb(254 215 170 / 0.25);
}

.text-orange-200\/30 {
  color: rgb(254 215 170 / 0.3);
}

.text-orange-200\/35 {
  color: rgb(254 215 170 / 0.35);
}

.text-orange-200\/40 {
  color: rgb(254 215 170 / 0.4);
}

.text-orange-200\/45 {
  color: rgb(254 215 170 / 0.45);
}

.text-orange-200\/5 {
  color: rgb(254 215 170 / 0.05);
}

.text-orange-200\/50 {
  color: rgb(254 215 170 / 0.5);
}

.text-orange-200\/55 {
  color: rgb(254 215 170 / 0.55);
}

.text-orange-200\/60 {
  color: rgb(254 215 170 / 0.6);
}

.text-orange-200\/65 {
  color: rgb(254 215 170 / 0.65);
}

.text-orange-200\/70 {
  color: rgb(254 215 170 / 0.7);
}

.text-orange-200\/75 {
  color: rgb(254 215 170 / 0.75);
}

.text-orange-200\/80 {
  color: rgb(254 215 170 / 0.8);
}

.text-orange-200\/85 {
  color: rgb(254 215 170 / 0.85);
}

.text-orange-200\/90 {
  color: rgb(254 215 170 / 0.9);
}

.text-orange-200\/95 {
  color: rgb(254 215 170 / 0.95);
}

.text-orange-300 {
  --tw-text-opacity: 1;
  color: rgb(253 186 116 / var(--tw-text-opacity, 1));
}

.text-orange-300\/0 {
  color: rgb(253 186 116 / 0);
}

.text-orange-300\/10 {
  color: rgb(253 186 116 / 0.1);
}

.text-orange-300\/100 {
  color: rgb(253 186 116 / 1);
}

.text-orange-300\/15 {
  color: rgb(253 186 116 / 0.15);
}

.text-orange-300\/20 {
  color: rgb(253 186 116 / 0.2);
}

.text-orange-300\/25 {
  color: rgb(253 186 116 / 0.25);
}

.text-orange-300\/30 {
  color: rgb(253 186 116 / 0.3);
}

.text-orange-300\/35 {
  color: rgb(253 186 116 / 0.35);
}

.text-orange-300\/40 {
  color: rgb(253 186 116 / 0.4);
}

.text-orange-300\/45 {
  color: rgb(253 186 116 / 0.45);
}

.text-orange-300\/5 {
  color: rgb(253 186 116 / 0.05);
}

.text-orange-300\/50 {
  color: rgb(253 186 116 / 0.5);
}

.text-orange-300\/55 {
  color: rgb(253 186 116 / 0.55);
}

.text-orange-300\/60 {
  color: rgb(253 186 116 / 0.6);
}

.text-orange-300\/65 {
  color: rgb(253 186 116 / 0.65);
}

.text-orange-300\/70 {
  color: rgb(253 186 116 / 0.7);
}

.text-orange-300\/75 {
  color: rgb(253 186 116 / 0.75);
}

.text-orange-300\/80 {
  color: rgb(253 186 116 / 0.8);
}

.text-orange-300\/85 {
  color: rgb(253 186 116 / 0.85);
}

.text-orange-300\/90 {
  color: rgb(253 186 116 / 0.9);
}

.text-orange-300\/95 {
  color: rgb(253 186 116 / 0.95);
}

.text-orange-400 {
  --tw-text-opacity: 1;
  color: rgb(251 146 60 / var(--tw-text-opacity, 1));
}

.text-orange-400\/0 {
  color: rgb(251 146 60 / 0);
}

.text-orange-400\/10 {
  color: rgb(251 146 60 / 0.1);
}

.text-orange-400\/100 {
  color: rgb(251 146 60 / 1);
}

.text-orange-400\/15 {
  color: rgb(251 146 60 / 0.15);
}

.text-orange-400\/20 {
  color: rgb(251 146 60 / 0.2);
}

.text-orange-400\/25 {
  color: rgb(251 146 60 / 0.25);
}

.text-orange-400\/30 {
  color: rgb(251 146 60 / 0.3);
}

.text-orange-400\/35 {
  color: rgb(251 146 60 / 0.35);
}

.text-orange-400\/40 {
  color: rgb(251 146 60 / 0.4);
}

.text-orange-400\/45 {
  color: rgb(251 146 60 / 0.45);
}

.text-orange-400\/5 {
  color: rgb(251 146 60 / 0.05);
}

.text-orange-400\/50 {
  color: rgb(251 146 60 / 0.5);
}

.text-orange-400\/55 {
  color: rgb(251 146 60 / 0.55);
}

.text-orange-400\/60 {
  color: rgb(251 146 60 / 0.6);
}

.text-orange-400\/65 {
  color: rgb(251 146 60 / 0.65);
}

.text-orange-400\/70 {
  color: rgb(251 146 60 / 0.7);
}

.text-orange-400\/75 {
  color: rgb(251 146 60 / 0.75);
}

.text-orange-400\/80 {
  color: rgb(251 146 60 / 0.8);
}

.text-orange-400\/85 {
  color: rgb(251 146 60 / 0.85);
}

.text-orange-400\/90 {
  color: rgb(251 146 60 / 0.9);
}

.text-orange-400\/95 {
  color: rgb(251 146 60 / 0.95);
}

.text-orange-50 {
  --tw-text-opacity: 1;
  color: rgb(255 247 237 / var(--tw-text-opacity, 1));
}

.text-orange-50\/0 {
  color: rgb(255 247 237 / 0);
}

.text-orange-50\/10 {
  color: rgb(255 247 237 / 0.1);
}

.text-orange-50\/100 {
  color: rgb(255 247 237 / 1);
}

.text-orange-50\/15 {
  color: rgb(255 247 237 / 0.15);
}

.text-orange-50\/20 {
  color: rgb(255 247 237 / 0.2);
}

.text-orange-50\/25 {
  color: rgb(255 247 237 / 0.25);
}

.text-orange-50\/30 {
  color: rgb(255 247 237 / 0.3);
}

.text-orange-50\/35 {
  color: rgb(255 247 237 / 0.35);
}

.text-orange-50\/40 {
  color: rgb(255 247 237 / 0.4);
}

.text-orange-50\/45 {
  color: rgb(255 247 237 / 0.45);
}

.text-orange-50\/5 {
  color: rgb(255 247 237 / 0.05);
}

.text-orange-50\/50 {
  color: rgb(255 247 237 / 0.5);
}

.text-orange-50\/55 {
  color: rgb(255 247 237 / 0.55);
}

.text-orange-50\/60 {
  color: rgb(255 247 237 / 0.6);
}

.text-orange-50\/65 {
  color: rgb(255 247 237 / 0.65);
}

.text-orange-50\/70 {
  color: rgb(255 247 237 / 0.7);
}

.text-orange-50\/75 {
  color: rgb(255 247 237 / 0.75);
}

.text-orange-50\/80 {
  color: rgb(255 247 237 / 0.8);
}

.text-orange-50\/85 {
  color: rgb(255 247 237 / 0.85);
}

.text-orange-50\/90 {
  color: rgb(255 247 237 / 0.9);
}

.text-orange-50\/95 {
  color: rgb(255 247 237 / 0.95);
}

.text-orange-500 {
  --tw-text-opacity: 1;
  color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}

.text-orange-500\/0 {
  color: rgb(249 115 22 / 0);
}

.text-orange-500\/10 {
  color: rgb(249 115 22 / 0.1);
}

.text-orange-500\/100 {
  color: rgb(249 115 22 / 1);
}

.text-orange-500\/15 {
  color: rgb(249 115 22 / 0.15);
}

.text-orange-500\/20 {
  color: rgb(249 115 22 / 0.2);
}

.text-orange-500\/25 {
  color: rgb(249 115 22 / 0.25);
}

.text-orange-500\/30 {
  color: rgb(249 115 22 / 0.3);
}

.text-orange-500\/35 {
  color: rgb(249 115 22 / 0.35);
}

.text-orange-500\/40 {
  color: rgb(249 115 22 / 0.4);
}

.text-orange-500\/45 {
  color: rgb(249 115 22 / 0.45);
}

.text-orange-500\/5 {
  color: rgb(249 115 22 / 0.05);
}

.text-orange-500\/50 {
  color: rgb(249 115 22 / 0.5);
}

.text-orange-500\/55 {
  color: rgb(249 115 22 / 0.55);
}

.text-orange-500\/60 {
  color: rgb(249 115 22 / 0.6);
}

.text-orange-500\/65 {
  color: rgb(249 115 22 / 0.65);
}

.text-orange-500\/70 {
  color: rgb(249 115 22 / 0.7);
}

.text-orange-500\/75 {
  color: rgb(249 115 22 / 0.75);
}

.text-orange-500\/80 {
  color: rgb(249 115 22 / 0.8);
}

.text-orange-500\/85 {
  color: rgb(249 115 22 / 0.85);
}

.text-orange-500\/90 {
  color: rgb(249 115 22 / 0.9);
}

.text-orange-500\/95 {
  color: rgb(249 115 22 / 0.95);
}

.text-orange-600 {
  --tw-text-opacity: 1;
  color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}

.text-orange-600\/0 {
  color: rgb(234 88 12 / 0);
}

.text-orange-600\/10 {
  color: rgb(234 88 12 / 0.1);
}

.text-orange-600\/100 {
  color: rgb(234 88 12 / 1);
}

.text-orange-600\/15 {
  color: rgb(234 88 12 / 0.15);
}

.text-orange-600\/20 {
  color: rgb(234 88 12 / 0.2);
}

.text-orange-600\/25 {
  color: rgb(234 88 12 / 0.25);
}

.text-orange-600\/30 {
  color: rgb(234 88 12 / 0.3);
}

.text-orange-600\/35 {
  color: rgb(234 88 12 / 0.35);
}

.text-orange-600\/40 {
  color: rgb(234 88 12 / 0.4);
}

.text-orange-600\/45 {
  color: rgb(234 88 12 / 0.45);
}

.text-orange-600\/5 {
  color: rgb(234 88 12 / 0.05);
}

.text-orange-600\/50 {
  color: rgb(234 88 12 / 0.5);
}

.text-orange-600\/55 {
  color: rgb(234 88 12 / 0.55);
}

.text-orange-600\/60 {
  color: rgb(234 88 12 / 0.6);
}

.text-orange-600\/65 {
  color: rgb(234 88 12 / 0.65);
}

.text-orange-600\/70 {
  color: rgb(234 88 12 / 0.7);
}

.text-orange-600\/75 {
  color: rgb(234 88 12 / 0.75);
}

.text-orange-600\/80 {
  color: rgb(234 88 12 / 0.8);
}

.text-orange-600\/85 {
  color: rgb(234 88 12 / 0.85);
}

.text-orange-600\/90 {
  color: rgb(234 88 12 / 0.9);
}

.text-orange-600\/95 {
  color: rgb(234 88 12 / 0.95);
}

.text-orange-700 {
  --tw-text-opacity: 1;
  color: rgb(194 65 12 / var(--tw-text-opacity, 1));
}

.text-orange-700\/0 {
  color: rgb(194 65 12 / 0);
}

.text-orange-700\/10 {
  color: rgb(194 65 12 / 0.1);
}

.text-orange-700\/100 {
  color: rgb(194 65 12 / 1);
}

.text-orange-700\/15 {
  color: rgb(194 65 12 / 0.15);
}

.text-orange-700\/20 {
  color: rgb(194 65 12 / 0.2);
}

.text-orange-700\/25 {
  color: rgb(194 65 12 / 0.25);
}

.text-orange-700\/30 {
  color: rgb(194 65 12 / 0.3);
}

.text-orange-700\/35 {
  color: rgb(194 65 12 / 0.35);
}

.text-orange-700\/40 {
  color: rgb(194 65 12 / 0.4);
}

.text-orange-700\/45 {
  color: rgb(194 65 12 / 0.45);
}

.text-orange-700\/5 {
  color: rgb(194 65 12 / 0.05);
}

.text-orange-700\/50 {
  color: rgb(194 65 12 / 0.5);
}

.text-orange-700\/55 {
  color: rgb(194 65 12 / 0.55);
}

.text-orange-700\/60 {
  color: rgb(194 65 12 / 0.6);
}

.text-orange-700\/65 {
  color: rgb(194 65 12 / 0.65);
}

.text-orange-700\/70 {
  color: rgb(194 65 12 / 0.7);
}

.text-orange-700\/75 {
  color: rgb(194 65 12 / 0.75);
}

.text-orange-700\/80 {
  color: rgb(194 65 12 / 0.8);
}

.text-orange-700\/85 {
  color: rgb(194 65 12 / 0.85);
}

.text-orange-700\/90 {
  color: rgb(194 65 12 / 0.9);
}

.text-orange-700\/95 {
  color: rgb(194 65 12 / 0.95);
}

.text-orange-800 {
  --tw-text-opacity: 1;
  color: rgb(154 52 18 / var(--tw-text-opacity, 1));
}

.text-orange-800\/0 {
  color: rgb(154 52 18 / 0);
}

.text-orange-800\/10 {
  color: rgb(154 52 18 / 0.1);
}

.text-orange-800\/100 {
  color: rgb(154 52 18 / 1);
}

.text-orange-800\/15 {
  color: rgb(154 52 18 / 0.15);
}

.text-orange-800\/20 {
  color: rgb(154 52 18 / 0.2);
}

.text-orange-800\/25 {
  color: rgb(154 52 18 / 0.25);
}

.text-orange-800\/30 {
  color: rgb(154 52 18 / 0.3);
}

.text-orange-800\/35 {
  color: rgb(154 52 18 / 0.35);
}

.text-orange-800\/40 {
  color: rgb(154 52 18 / 0.4);
}

.text-orange-800\/45 {
  color: rgb(154 52 18 / 0.45);
}

.text-orange-800\/5 {
  color: rgb(154 52 18 / 0.05);
}

.text-orange-800\/50 {
  color: rgb(154 52 18 / 0.5);
}

.text-orange-800\/55 {
  color: rgb(154 52 18 / 0.55);
}

.text-orange-800\/60 {
  color: rgb(154 52 18 / 0.6);
}

.text-orange-800\/65 {
  color: rgb(154 52 18 / 0.65);
}

.text-orange-800\/70 {
  color: rgb(154 52 18 / 0.7);
}

.text-orange-800\/75 {
  color: rgb(154 52 18 / 0.75);
}

.text-orange-800\/80 {
  color: rgb(154 52 18 / 0.8);
}

.text-orange-800\/85 {
  color: rgb(154 52 18 / 0.85);
}

.text-orange-800\/90 {
  color: rgb(154 52 18 / 0.9);
}

.text-orange-800\/95 {
  color: rgb(154 52 18 / 0.95);
}

.text-orange-900 {
  --tw-text-opacity: 1;
  color: rgb(124 45 18 / var(--tw-text-opacity, 1));
}

.text-orange-900\/0 {
  color: rgb(124 45 18 / 0);
}

.text-orange-900\/10 {
  color: rgb(124 45 18 / 0.1);
}

.text-orange-900\/100 {
  color: rgb(124 45 18 / 1);
}

.text-orange-900\/15 {
  color: rgb(124 45 18 / 0.15);
}

.text-orange-900\/20 {
  color: rgb(124 45 18 / 0.2);
}

.text-orange-900\/25 {
  color: rgb(124 45 18 / 0.25);
}

.text-orange-900\/30 {
  color: rgb(124 45 18 / 0.3);
}

.text-orange-900\/35 {
  color: rgb(124 45 18 / 0.35);
}

.text-orange-900\/40 {
  color: rgb(124 45 18 / 0.4);
}

.text-orange-900\/45 {
  color: rgb(124 45 18 / 0.45);
}

.text-orange-900\/5 {
  color: rgb(124 45 18 / 0.05);
}

.text-orange-900\/50 {
  color: rgb(124 45 18 / 0.5);
}

.text-orange-900\/55 {
  color: rgb(124 45 18 / 0.55);
}

.text-orange-900\/60 {
  color: rgb(124 45 18 / 0.6);
}

.text-orange-900\/65 {
  color: rgb(124 45 18 / 0.65);
}

.text-orange-900\/70 {
  color: rgb(124 45 18 / 0.7);
}

.text-orange-900\/75 {
  color: rgb(124 45 18 / 0.75);
}

.text-orange-900\/80 {
  color: rgb(124 45 18 / 0.8);
}

.text-orange-900\/85 {
  color: rgb(124 45 18 / 0.85);
}

.text-orange-900\/90 {
  color: rgb(124 45 18 / 0.9);
}

.text-orange-900\/95 {
  color: rgb(124 45 18 / 0.95);
}

.text-outline-variant {
  --tw-text-opacity: 1;
  color: rgb(220 193 184 / var(--tw-text-opacity, 1));
}

.text-primary {
  --tw-text-opacity: 1;
  color: rgb(154 64 33 / var(--tw-text-opacity, 1));
}

.text-purple-400 {
  --tw-text-opacity: 1;
  color: rgb(192 132 252 / var(--tw-text-opacity, 1));
}

.text-red-400 {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}

.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}

.text-rose-100 {
  --tw-text-opacity: 1;
  color: rgb(255 228 230 / var(--tw-text-opacity, 1));
}

.text-rose-100\/0 {
  color: rgb(255 228 230 / 0);
}

.text-rose-100\/10 {
  color: rgb(255 228 230 / 0.1);
}

.text-rose-100\/100 {
  color: rgb(255 228 230 / 1);
}

.text-rose-100\/15 {
  color: rgb(255 228 230 / 0.15);
}

.text-rose-100\/20 {
  color: rgb(255 228 230 / 0.2);
}

.text-rose-100\/25 {
  color: rgb(255 228 230 / 0.25);
}

.text-rose-100\/30 {
  color: rgb(255 228 230 / 0.3);
}

.text-rose-100\/35 {
  color: rgb(255 228 230 / 0.35);
}

.text-rose-100\/40 {
  color: rgb(255 228 230 / 0.4);
}

.text-rose-100\/45 {
  color: rgb(255 228 230 / 0.45);
}

.text-rose-100\/5 {
  color: rgb(255 228 230 / 0.05);
}

.text-rose-100\/50 {
  color: rgb(255 228 230 / 0.5);
}

.text-rose-100\/55 {
  color: rgb(255 228 230 / 0.55);
}

.text-rose-100\/60 {
  color: rgb(255 228 230 / 0.6);
}

.text-rose-100\/65 {
  color: rgb(255 228 230 / 0.65);
}

.text-rose-100\/70 {
  color: rgb(255 228 230 / 0.7);
}

.text-rose-100\/75 {
  color: rgb(255 228 230 / 0.75);
}

.text-rose-100\/80 {
  color: rgb(255 228 230 / 0.8);
}

.text-rose-100\/85 {
  color: rgb(255 228 230 / 0.85);
}

.text-rose-100\/90 {
  color: rgb(255 228 230 / 0.9);
}

.text-rose-100\/95 {
  color: rgb(255 228 230 / 0.95);
}

.text-rose-200 {
  --tw-text-opacity: 1;
  color: rgb(254 205 211 / var(--tw-text-opacity, 1));
}

.text-rose-200\/0 {
  color: rgb(254 205 211 / 0);
}

.text-rose-200\/10 {
  color: rgb(254 205 211 / 0.1);
}

.text-rose-200\/100 {
  color: rgb(254 205 211 / 1);
}

.text-rose-200\/15 {
  color: rgb(254 205 211 / 0.15);
}

.text-rose-200\/20 {
  color: rgb(254 205 211 / 0.2);
}

.text-rose-200\/25 {
  color: rgb(254 205 211 / 0.25);
}

.text-rose-200\/30 {
  color: rgb(254 205 211 / 0.3);
}

.text-rose-200\/35 {
  color: rgb(254 205 211 / 0.35);
}

.text-rose-200\/40 {
  color: rgb(254 205 211 / 0.4);
}

.text-rose-200\/45 {
  color: rgb(254 205 211 / 0.45);
}

.text-rose-200\/5 {
  color: rgb(254 205 211 / 0.05);
}

.text-rose-200\/50 {
  color: rgb(254 205 211 / 0.5);
}

.text-rose-200\/55 {
  color: rgb(254 205 211 / 0.55);
}

.text-rose-200\/60 {
  color: rgb(254 205 211 / 0.6);
}

.text-rose-200\/65 {
  color: rgb(254 205 211 / 0.65);
}

.text-rose-200\/70 {
  color: rgb(254 205 211 / 0.7);
}

.text-rose-200\/75 {
  color: rgb(254 205 211 / 0.75);
}

.text-rose-200\/80 {
  color: rgb(254 205 211 / 0.8);
}

.text-rose-200\/85 {
  color: rgb(254 205 211 / 0.85);
}

.text-rose-200\/90 {
  color: rgb(254 205 211 / 0.9);
}

.text-rose-200\/95 {
  color: rgb(254 205 211 / 0.95);
}

.text-rose-300 {
  --tw-text-opacity: 1;
  color: rgb(253 164 175 / var(--tw-text-opacity, 1));
}

.text-rose-300\/0 {
  color: rgb(253 164 175 / 0);
}

.text-rose-300\/10 {
  color: rgb(253 164 175 / 0.1);
}

.text-rose-300\/100 {
  color: rgb(253 164 175 / 1);
}

.text-rose-300\/15 {
  color: rgb(253 164 175 / 0.15);
}

.text-rose-300\/20 {
  color: rgb(253 164 175 / 0.2);
}

.text-rose-300\/25 {
  color: rgb(253 164 175 / 0.25);
}

.text-rose-300\/30 {
  color: rgb(253 164 175 / 0.3);
}

.text-rose-300\/35 {
  color: rgb(253 164 175 / 0.35);
}

.text-rose-300\/40 {
  color: rgb(253 164 175 / 0.4);
}

.text-rose-300\/45 {
  color: rgb(253 164 175 / 0.45);
}

.text-rose-300\/5 {
  color: rgb(253 164 175 / 0.05);
}

.text-rose-300\/50 {
  color: rgb(253 164 175 / 0.5);
}

.text-rose-300\/55 {
  color: rgb(253 164 175 / 0.55);
}

.text-rose-300\/60 {
  color: rgb(253 164 175 / 0.6);
}

.text-rose-300\/65 {
  color: rgb(253 164 175 / 0.65);
}

.text-rose-300\/70 {
  color: rgb(253 164 175 / 0.7);
}

.text-rose-300\/75 {
  color: rgb(253 164 175 / 0.75);
}

.text-rose-300\/80 {
  color: rgb(253 164 175 / 0.8);
}

.text-rose-300\/85 {
  color: rgb(253 164 175 / 0.85);
}

.text-rose-300\/90 {
  color: rgb(253 164 175 / 0.9);
}

.text-rose-300\/95 {
  color: rgb(253 164 175 / 0.95);
}

.text-rose-400 {
  --tw-text-opacity: 1;
  color: rgb(251 113 133 / var(--tw-text-opacity, 1));
}

.text-rose-400\/0 {
  color: rgb(251 113 133 / 0);
}

.text-rose-400\/10 {
  color: rgb(251 113 133 / 0.1);
}

.text-rose-400\/100 {
  color: rgb(251 113 133 / 1);
}

.text-rose-400\/15 {
  color: rgb(251 113 133 / 0.15);
}

.text-rose-400\/20 {
  color: rgb(251 113 133 / 0.2);
}

.text-rose-400\/25 {
  color: rgb(251 113 133 / 0.25);
}

.text-rose-400\/30 {
  color: rgb(251 113 133 / 0.3);
}

.text-rose-400\/35 {
  color: rgb(251 113 133 / 0.35);
}

.text-rose-400\/40 {
  color: rgb(251 113 133 / 0.4);
}

.text-rose-400\/45 {
  color: rgb(251 113 133 / 0.45);
}

.text-rose-400\/5 {
  color: rgb(251 113 133 / 0.05);
}

.text-rose-400\/50 {
  color: rgb(251 113 133 / 0.5);
}

.text-rose-400\/55 {
  color: rgb(251 113 133 / 0.55);
}

.text-rose-400\/60 {
  color: rgb(251 113 133 / 0.6);
}

.text-rose-400\/65 {
  color: rgb(251 113 133 / 0.65);
}

.text-rose-400\/70 {
  color: rgb(251 113 133 / 0.7);
}

.text-rose-400\/75 {
  color: rgb(251 113 133 / 0.75);
}

.text-rose-400\/80 {
  color: rgb(251 113 133 / 0.8);
}

.text-rose-400\/85 {
  color: rgb(251 113 133 / 0.85);
}

.text-rose-400\/90 {
  color: rgb(251 113 133 / 0.9);
}

.text-rose-400\/95 {
  color: rgb(251 113 133 / 0.95);
}

.text-rose-50 {
  --tw-text-opacity: 1;
  color: rgb(255 241 242 / var(--tw-text-opacity, 1));
}

.text-rose-50\/0 {
  color: rgb(255 241 242 / 0);
}

.text-rose-50\/10 {
  color: rgb(255 241 242 / 0.1);
}

.text-rose-50\/100 {
  color: rgb(255 241 242 / 1);
}

.text-rose-50\/15 {
  color: rgb(255 241 242 / 0.15);
}

.text-rose-50\/20 {
  color: rgb(255 241 242 / 0.2);
}

.text-rose-50\/25 {
  color: rgb(255 241 242 / 0.25);
}

.text-rose-50\/30 {
  color: rgb(255 241 242 / 0.3);
}

.text-rose-50\/35 {
  color: rgb(255 241 242 / 0.35);
}

.text-rose-50\/40 {
  color: rgb(255 241 242 / 0.4);
}

.text-rose-50\/45 {
  color: rgb(255 241 242 / 0.45);
}

.text-rose-50\/5 {
  color: rgb(255 241 242 / 0.05);
}

.text-rose-50\/50 {
  color: rgb(255 241 242 / 0.5);
}

.text-rose-50\/55 {
  color: rgb(255 241 242 / 0.55);
}

.text-rose-50\/60 {
  color: rgb(255 241 242 / 0.6);
}

.text-rose-50\/65 {
  color: rgb(255 241 242 / 0.65);
}

.text-rose-50\/70 {
  color: rgb(255 241 242 / 0.7);
}

.text-rose-50\/75 {
  color: rgb(255 241 242 / 0.75);
}

.text-rose-50\/80 {
  color: rgb(255 241 242 / 0.8);
}

.text-rose-50\/85 {
  color: rgb(255 241 242 / 0.85);
}

.text-rose-50\/90 {
  color: rgb(255 241 242 / 0.9);
}

.text-rose-50\/95 {
  color: rgb(255 241 242 / 0.95);
}

.text-rose-500 {
  --tw-text-opacity: 1;
  color: rgb(244 63 94 / var(--tw-text-opacity, 1));
}

.text-rose-500\/0 {
  color: rgb(244 63 94 / 0);
}

.text-rose-500\/10 {
  color: rgb(244 63 94 / 0.1);
}

.text-rose-500\/100 {
  color: rgb(244 63 94 / 1);
}

.text-rose-500\/15 {
  color: rgb(244 63 94 / 0.15);
}

.text-rose-500\/20 {
  color: rgb(244 63 94 / 0.2);
}

.text-rose-500\/25 {
  color: rgb(244 63 94 / 0.25);
}

.text-rose-500\/30 {
  color: rgb(244 63 94 / 0.3);
}

.text-rose-500\/35 {
  color: rgb(244 63 94 / 0.35);
}

.text-rose-500\/40 {
  color: rgb(244 63 94 / 0.4);
}

.text-rose-500\/45 {
  color: rgb(244 63 94 / 0.45);
}

.text-rose-500\/5 {
  color: rgb(244 63 94 / 0.05);
}

.text-rose-500\/50 {
  color: rgb(244 63 94 / 0.5);
}

.text-rose-500\/55 {
  color: rgb(244 63 94 / 0.55);
}

.text-rose-500\/60 {
  color: rgb(244 63 94 / 0.6);
}

.text-rose-500\/65 {
  color: rgb(244 63 94 / 0.65);
}

.text-rose-500\/70 {
  color: rgb(244 63 94 / 0.7);
}

.text-rose-500\/75 {
  color: rgb(244 63 94 / 0.75);
}

.text-rose-500\/80 {
  color: rgb(244 63 94 / 0.8);
}

.text-rose-500\/85 {
  color: rgb(244 63 94 / 0.85);
}

.text-rose-500\/90 {
  color: rgb(244 63 94 / 0.9);
}

.text-rose-500\/95 {
  color: rgb(244 63 94 / 0.95);
}

.text-rose-600 {
  --tw-text-opacity: 1;
  color: rgb(225 29 72 / var(--tw-text-opacity, 1));
}

.text-rose-600\/0 {
  color: rgb(225 29 72 / 0);
}

.text-rose-600\/10 {
  color: rgb(225 29 72 / 0.1);
}

.text-rose-600\/100 {
  color: rgb(225 29 72 / 1);
}

.text-rose-600\/15 {
  color: rgb(225 29 72 / 0.15);
}

.text-rose-600\/20 {
  color: rgb(225 29 72 / 0.2);
}

.text-rose-600\/25 {
  color: rgb(225 29 72 / 0.25);
}

.text-rose-600\/30 {
  color: rgb(225 29 72 / 0.3);
}

.text-rose-600\/35 {
  color: rgb(225 29 72 / 0.35);
}

.text-rose-600\/40 {
  color: rgb(225 29 72 / 0.4);
}

.text-rose-600\/45 {
  color: rgb(225 29 72 / 0.45);
}

.text-rose-600\/5 {
  color: rgb(225 29 72 / 0.05);
}

.text-rose-600\/50 {
  color: rgb(225 29 72 / 0.5);
}

.text-rose-600\/55 {
  color: rgb(225 29 72 / 0.55);
}

.text-rose-600\/60 {
  color: rgb(225 29 72 / 0.6);
}

.text-rose-600\/65 {
  color: rgb(225 29 72 / 0.65);
}

.text-rose-600\/70 {
  color: rgb(225 29 72 / 0.7);
}

.text-rose-600\/75 {
  color: rgb(225 29 72 / 0.75);
}

.text-rose-600\/80 {
  color: rgb(225 29 72 / 0.8);
}

.text-rose-600\/85 {
  color: rgb(225 29 72 / 0.85);
}

.text-rose-600\/90 {
  color: rgb(225 29 72 / 0.9);
}

.text-rose-600\/95 {
  color: rgb(225 29 72 / 0.95);
}

.text-rose-700 {
  --tw-text-opacity: 1;
  color: rgb(190 18 60 / var(--tw-text-opacity, 1));
}

.text-rose-700\/0 {
  color: rgb(190 18 60 / 0);
}

.text-rose-700\/10 {
  color: rgb(190 18 60 / 0.1);
}

.text-rose-700\/100 {
  color: rgb(190 18 60 / 1);
}

.text-rose-700\/15 {
  color: rgb(190 18 60 / 0.15);
}

.text-rose-700\/20 {
  color: rgb(190 18 60 / 0.2);
}

.text-rose-700\/25 {
  color: rgb(190 18 60 / 0.25);
}

.text-rose-700\/30 {
  color: rgb(190 18 60 / 0.3);
}

.text-rose-700\/35 {
  color: rgb(190 18 60 / 0.35);
}

.text-rose-700\/40 {
  color: rgb(190 18 60 / 0.4);
}

.text-rose-700\/45 {
  color: rgb(190 18 60 / 0.45);
}

.text-rose-700\/5 {
  color: rgb(190 18 60 / 0.05);
}

.text-rose-700\/50 {
  color: rgb(190 18 60 / 0.5);
}

.text-rose-700\/55 {
  color: rgb(190 18 60 / 0.55);
}

.text-rose-700\/60 {
  color: rgb(190 18 60 / 0.6);
}

.text-rose-700\/65 {
  color: rgb(190 18 60 / 0.65);
}

.text-rose-700\/70 {
  color: rgb(190 18 60 / 0.7);
}

.text-rose-700\/75 {
  color: rgb(190 18 60 / 0.75);
}

.text-rose-700\/80 {
  color: rgb(190 18 60 / 0.8);
}

.text-rose-700\/85 {
  color: rgb(190 18 60 / 0.85);
}

.text-rose-700\/90 {
  color: rgb(190 18 60 / 0.9);
}

.text-rose-700\/95 {
  color: rgb(190 18 60 / 0.95);
}

.text-rose-800 {
  --tw-text-opacity: 1;
  color: rgb(159 18 57 / var(--tw-text-opacity, 1));
}

.text-rose-800\/0 {
  color: rgb(159 18 57 / 0);
}

.text-rose-800\/10 {
  color: rgb(159 18 57 / 0.1);
}

.text-rose-800\/100 {
  color: rgb(159 18 57 / 1);
}

.text-rose-800\/15 {
  color: rgb(159 18 57 / 0.15);
}

.text-rose-800\/20 {
  color: rgb(159 18 57 / 0.2);
}

.text-rose-800\/25 {
  color: rgb(159 18 57 / 0.25);
}

.text-rose-800\/30 {
  color: rgb(159 18 57 / 0.3);
}

.text-rose-800\/35 {
  color: rgb(159 18 57 / 0.35);
}

.text-rose-800\/40 {
  color: rgb(159 18 57 / 0.4);
}

.text-rose-800\/45 {
  color: rgb(159 18 57 / 0.45);
}

.text-rose-800\/5 {
  color: rgb(159 18 57 / 0.05);
}

.text-rose-800\/50 {
  color: rgb(159 18 57 / 0.5);
}

.text-rose-800\/55 {
  color: rgb(159 18 57 / 0.55);
}

.text-rose-800\/60 {
  color: rgb(159 18 57 / 0.6);
}

.text-rose-800\/65 {
  color: rgb(159 18 57 / 0.65);
}

.text-rose-800\/70 {
  color: rgb(159 18 57 / 0.7);
}

.text-rose-800\/75 {
  color: rgb(159 18 57 / 0.75);
}

.text-rose-800\/80 {
  color: rgb(159 18 57 / 0.8);
}

.text-rose-800\/85 {
  color: rgb(159 18 57 / 0.85);
}

.text-rose-800\/90 {
  color: rgb(159 18 57 / 0.9);
}

.text-rose-800\/95 {
  color: rgb(159 18 57 / 0.95);
}

.text-rose-900 {
  --tw-text-opacity: 1;
  color: rgb(136 19 55 / var(--tw-text-opacity, 1));
}

.text-rose-900\/0 {
  color: rgb(136 19 55 / 0);
}

.text-rose-900\/10 {
  color: rgb(136 19 55 / 0.1);
}

.text-rose-900\/100 {
  color: rgb(136 19 55 / 1);
}

.text-rose-900\/15 {
  color: rgb(136 19 55 / 0.15);
}

.text-rose-900\/20 {
  color: rgb(136 19 55 / 0.2);
}

.text-rose-900\/25 {
  color: rgb(136 19 55 / 0.25);
}

.text-rose-900\/30 {
  color: rgb(136 19 55 / 0.3);
}

.text-rose-900\/35 {
  color: rgb(136 19 55 / 0.35);
}

.text-rose-900\/40 {
  color: rgb(136 19 55 / 0.4);
}

.text-rose-900\/45 {
  color: rgb(136 19 55 / 0.45);
}

.text-rose-900\/5 {
  color: rgb(136 19 55 / 0.05);
}

.text-rose-900\/50 {
  color: rgb(136 19 55 / 0.5);
}

.text-rose-900\/55 {
  color: rgb(136 19 55 / 0.55);
}

.text-rose-900\/60 {
  color: rgb(136 19 55 / 0.6);
}

.text-rose-900\/65 {
  color: rgb(136 19 55 / 0.65);
}

.text-rose-900\/70 {
  color: rgb(136 19 55 / 0.7);
}

.text-rose-900\/75 {
  color: rgb(136 19 55 / 0.75);
}

.text-rose-900\/80 {
  color: rgb(136 19 55 / 0.8);
}

.text-rose-900\/85 {
  color: rgb(136 19 55 / 0.85);
}

.text-rose-900\/90 {
  color: rgb(136 19 55 / 0.9);
}

.text-rose-900\/95 {
  color: rgb(136 19 55 / 0.95);
}

.text-secondary {
  --tw-text-opacity: 1;
  color: rgb(95 94 92 / var(--tw-text-opacity, 1));
}

.text-sky-100 {
  --tw-text-opacity: 1;
  color: rgb(224 242 254 / var(--tw-text-opacity, 1));
}

.text-sky-100\/0 {
  color: rgb(224 242 254 / 0);
}

.text-sky-100\/10 {
  color: rgb(224 242 254 / 0.1);
}

.text-sky-100\/100 {
  color: rgb(224 242 254 / 1);
}

.text-sky-100\/15 {
  color: rgb(224 242 254 / 0.15);
}

.text-sky-100\/20 {
  color: rgb(224 242 254 / 0.2);
}

.text-sky-100\/25 {
  color: rgb(224 242 254 / 0.25);
}

.text-sky-100\/30 {
  color: rgb(224 242 254 / 0.3);
}

.text-sky-100\/35 {
  color: rgb(224 242 254 / 0.35);
}

.text-sky-100\/40 {
  color: rgb(224 242 254 / 0.4);
}

.text-sky-100\/45 {
  color: rgb(224 242 254 / 0.45);
}

.text-sky-100\/5 {
  color: rgb(224 242 254 / 0.05);
}

.text-sky-100\/50 {
  color: rgb(224 242 254 / 0.5);
}

.text-sky-100\/55 {
  color: rgb(224 242 254 / 0.55);
}

.text-sky-100\/60 {
  color: rgb(224 242 254 / 0.6);
}

.text-sky-100\/65 {
  color: rgb(224 242 254 / 0.65);
}

.text-sky-100\/70 {
  color: rgb(224 242 254 / 0.7);
}

.text-sky-100\/75 {
  color: rgb(224 242 254 / 0.75);
}

.text-sky-100\/80 {
  color: rgb(224 242 254 / 0.8);
}

.text-sky-100\/85 {
  color: rgb(224 242 254 / 0.85);
}

.text-sky-100\/90 {
  color: rgb(224 242 254 / 0.9);
}

.text-sky-100\/95 {
  color: rgb(224 242 254 / 0.95);
}

.text-sky-200 {
  --tw-text-opacity: 1;
  color: rgb(186 230 253 / var(--tw-text-opacity, 1));
}

.text-sky-200\/0 {
  color: rgb(186 230 253 / 0);
}

.text-sky-200\/10 {
  color: rgb(186 230 253 / 0.1);
}

.text-sky-200\/100 {
  color: rgb(186 230 253 / 1);
}

.text-sky-200\/15 {
  color: rgb(186 230 253 / 0.15);
}

.text-sky-200\/20 {
  color: rgb(186 230 253 / 0.2);
}

.text-sky-200\/25 {
  color: rgb(186 230 253 / 0.25);
}

.text-sky-200\/30 {
  color: rgb(186 230 253 / 0.3);
}

.text-sky-200\/35 {
  color: rgb(186 230 253 / 0.35);
}

.text-sky-200\/40 {
  color: rgb(186 230 253 / 0.4);
}

.text-sky-200\/45 {
  color: rgb(186 230 253 / 0.45);
}

.text-sky-200\/5 {
  color: rgb(186 230 253 / 0.05);
}

.text-sky-200\/50 {
  color: rgb(186 230 253 / 0.5);
}

.text-sky-200\/55 {
  color: rgb(186 230 253 / 0.55);
}

.text-sky-200\/60 {
  color: rgb(186 230 253 / 0.6);
}

.text-sky-200\/65 {
  color: rgb(186 230 253 / 0.65);
}

.text-sky-200\/70 {
  color: rgb(186 230 253 / 0.7);
}

.text-sky-200\/75 {
  color: rgb(186 230 253 / 0.75);
}

.text-sky-200\/80 {
  color: rgb(186 230 253 / 0.8);
}

.text-sky-200\/85 {
  color: rgb(186 230 253 / 0.85);
}

.text-sky-200\/90 {
  color: rgb(186 230 253 / 0.9);
}

.text-sky-200\/95 {
  color: rgb(186 230 253 / 0.95);
}

.text-sky-300 {
  --tw-text-opacity: 1;
  color: rgb(125 211 252 / var(--tw-text-opacity, 1));
}

.text-sky-300\/0 {
  color: rgb(125 211 252 / 0);
}

.text-sky-300\/10 {
  color: rgb(125 211 252 / 0.1);
}

.text-sky-300\/100 {
  color: rgb(125 211 252 / 1);
}

.text-sky-300\/15 {
  color: rgb(125 211 252 / 0.15);
}

.text-sky-300\/20 {
  color: rgb(125 211 252 / 0.2);
}

.text-sky-300\/25 {
  color: rgb(125 211 252 / 0.25);
}

.text-sky-300\/30 {
  color: rgb(125 211 252 / 0.3);
}

.text-sky-300\/35 {
  color: rgb(125 211 252 / 0.35);
}

.text-sky-300\/40 {
  color: rgb(125 211 252 / 0.4);
}

.text-sky-300\/45 {
  color: rgb(125 211 252 / 0.45);
}

.text-sky-300\/5 {
  color: rgb(125 211 252 / 0.05);
}

.text-sky-300\/50 {
  color: rgb(125 211 252 / 0.5);
}

.text-sky-300\/55 {
  color: rgb(125 211 252 / 0.55);
}

.text-sky-300\/60 {
  color: rgb(125 211 252 / 0.6);
}

.text-sky-300\/65 {
  color: rgb(125 211 252 / 0.65);
}

.text-sky-300\/70 {
  color: rgb(125 211 252 / 0.7);
}

.text-sky-300\/75 {
  color: rgb(125 211 252 / 0.75);
}

.text-sky-300\/80 {
  color: rgb(125 211 252 / 0.8);
}

.text-sky-300\/85 {
  color: rgb(125 211 252 / 0.85);
}

.text-sky-300\/90 {
  color: rgb(125 211 252 / 0.9);
}

.text-sky-300\/95 {
  color: rgb(125 211 252 / 0.95);
}

.text-sky-400 {
  --tw-text-opacity: 1;
  color: rgb(56 189 248 / var(--tw-text-opacity, 1));
}

.text-sky-400\/0 {
  color: rgb(56 189 248 / 0);
}

.text-sky-400\/10 {
  color: rgb(56 189 248 / 0.1);
}

.text-sky-400\/100 {
  color: rgb(56 189 248 / 1);
}

.text-sky-400\/15 {
  color: rgb(56 189 248 / 0.15);
}

.text-sky-400\/20 {
  color: rgb(56 189 248 / 0.2);
}

.text-sky-400\/25 {
  color: rgb(56 189 248 / 0.25);
}

.text-sky-400\/30 {
  color: rgb(56 189 248 / 0.3);
}

.text-sky-400\/35 {
  color: rgb(56 189 248 / 0.35);
}

.text-sky-400\/40 {
  color: rgb(56 189 248 / 0.4);
}

.text-sky-400\/45 {
  color: rgb(56 189 248 / 0.45);
}

.text-sky-400\/5 {
  color: rgb(56 189 248 / 0.05);
}

.text-sky-400\/50 {
  color: rgb(56 189 248 / 0.5);
}

.text-sky-400\/55 {
  color: rgb(56 189 248 / 0.55);
}

.text-sky-400\/60 {
  color: rgb(56 189 248 / 0.6);
}

.text-sky-400\/65 {
  color: rgb(56 189 248 / 0.65);
}

.text-sky-400\/70 {
  color: rgb(56 189 248 / 0.7);
}

.text-sky-400\/75 {
  color: rgb(56 189 248 / 0.75);
}

.text-sky-400\/80 {
  color: rgb(56 189 248 / 0.8);
}

.text-sky-400\/85 {
  color: rgb(56 189 248 / 0.85);
}

.text-sky-400\/90 {
  color: rgb(56 189 248 / 0.9);
}

.text-sky-400\/95 {
  color: rgb(56 189 248 / 0.95);
}

.text-sky-50 {
  --tw-text-opacity: 1;
  color: rgb(240 249 255 / var(--tw-text-opacity, 1));
}

.text-sky-50\/0 {
  color: rgb(240 249 255 / 0);
}

.text-sky-50\/10 {
  color: rgb(240 249 255 / 0.1);
}

.text-sky-50\/100 {
  color: rgb(240 249 255 / 1);
}

.text-sky-50\/15 {
  color: rgb(240 249 255 / 0.15);
}

.text-sky-50\/20 {
  color: rgb(240 249 255 / 0.2);
}

.text-sky-50\/25 {
  color: rgb(240 249 255 / 0.25);
}

.text-sky-50\/30 {
  color: rgb(240 249 255 / 0.3);
}

.text-sky-50\/35 {
  color: rgb(240 249 255 / 0.35);
}

.text-sky-50\/40 {
  color: rgb(240 249 255 / 0.4);
}

.text-sky-50\/45 {
  color: rgb(240 249 255 / 0.45);
}

.text-sky-50\/5 {
  color: rgb(240 249 255 / 0.05);
}

.text-sky-50\/50 {
  color: rgb(240 249 255 / 0.5);
}

.text-sky-50\/55 {
  color: rgb(240 249 255 / 0.55);
}

.text-sky-50\/60 {
  color: rgb(240 249 255 / 0.6);
}

.text-sky-50\/65 {
  color: rgb(240 249 255 / 0.65);
}

.text-sky-50\/70 {
  color: rgb(240 249 255 / 0.7);
}

.text-sky-50\/75 {
  color: rgb(240 249 255 / 0.75);
}

.text-sky-50\/80 {
  color: rgb(240 249 255 / 0.8);
}

.text-sky-50\/85 {
  color: rgb(240 249 255 / 0.85);
}

.text-sky-50\/90 {
  color: rgb(240 249 255 / 0.9);
}

.text-sky-50\/95 {
  color: rgb(240 249 255 / 0.95);
}

.text-sky-500 {
  --tw-text-opacity: 1;
  color: rgb(14 165 233 / var(--tw-text-opacity, 1));
}

.text-sky-500\/0 {
  color: rgb(14 165 233 / 0);
}

.text-sky-500\/10 {
  color: rgb(14 165 233 / 0.1);
}

.text-sky-500\/100 {
  color: rgb(14 165 233 / 1);
}

.text-sky-500\/15 {
  color: rgb(14 165 233 / 0.15);
}

.text-sky-500\/20 {
  color: rgb(14 165 233 / 0.2);
}

.text-sky-500\/25 {
  color: rgb(14 165 233 / 0.25);
}

.text-sky-500\/30 {
  color: rgb(14 165 233 / 0.3);
}

.text-sky-500\/35 {
  color: rgb(14 165 233 / 0.35);
}

.text-sky-500\/40 {
  color: rgb(14 165 233 / 0.4);
}

.text-sky-500\/45 {
  color: rgb(14 165 233 / 0.45);
}

.text-sky-500\/5 {
  color: rgb(14 165 233 / 0.05);
}

.text-sky-500\/50 {
  color: rgb(14 165 233 / 0.5);
}

.text-sky-500\/55 {
  color: rgb(14 165 233 / 0.55);
}

.text-sky-500\/60 {
  color: rgb(14 165 233 / 0.6);
}

.text-sky-500\/65 {
  color: rgb(14 165 233 / 0.65);
}

.text-sky-500\/70 {
  color: rgb(14 165 233 / 0.7);
}

.text-sky-500\/75 {
  color: rgb(14 165 233 / 0.75);
}

.text-sky-500\/80 {
  color: rgb(14 165 233 / 0.8);
}

.text-sky-500\/85 {
  color: rgb(14 165 233 / 0.85);
}

.text-sky-500\/90 {
  color: rgb(14 165 233 / 0.9);
}

.text-sky-500\/95 {
  color: rgb(14 165 233 / 0.95);
}

.text-sky-600 {
  --tw-text-opacity: 1;
  color: rgb(2 132 199 / var(--tw-text-opacity, 1));
}

.text-sky-600\/0 {
  color: rgb(2 132 199 / 0);
}

.text-sky-600\/10 {
  color: rgb(2 132 199 / 0.1);
}

.text-sky-600\/100 {
  color: rgb(2 132 199 / 1);
}

.text-sky-600\/15 {
  color: rgb(2 132 199 / 0.15);
}

.text-sky-600\/20 {
  color: rgb(2 132 199 / 0.2);
}

.text-sky-600\/25 {
  color: rgb(2 132 199 / 0.25);
}

.text-sky-600\/30 {
  color: rgb(2 132 199 / 0.3);
}

.text-sky-600\/35 {
  color: rgb(2 132 199 / 0.35);
}

.text-sky-600\/40 {
  color: rgb(2 132 199 / 0.4);
}

.text-sky-600\/45 {
  color: rgb(2 132 199 / 0.45);
}

.text-sky-600\/5 {
  color: rgb(2 132 199 / 0.05);
}

.text-sky-600\/50 {
  color: rgb(2 132 199 / 0.5);
}

.text-sky-600\/55 {
  color: rgb(2 132 199 / 0.55);
}

.text-sky-600\/60 {
  color: rgb(2 132 199 / 0.6);
}

.text-sky-600\/65 {
  color: rgb(2 132 199 / 0.65);
}

.text-sky-600\/70 {
  color: rgb(2 132 199 / 0.7);
}

.text-sky-600\/75 {
  color: rgb(2 132 199 / 0.75);
}

.text-sky-600\/80 {
  color: rgb(2 132 199 / 0.8);
}

.text-sky-600\/85 {
  color: rgb(2 132 199 / 0.85);
}

.text-sky-600\/90 {
  color: rgb(2 132 199 / 0.9);
}

.text-sky-600\/95 {
  color: rgb(2 132 199 / 0.95);
}

.text-sky-700 {
  --tw-text-opacity: 1;
  color: rgb(3 105 161 / var(--tw-text-opacity, 1));
}

.text-sky-700\/0 {
  color: rgb(3 105 161 / 0);
}

.text-sky-700\/10 {
  color: rgb(3 105 161 / 0.1);
}

.text-sky-700\/100 {
  color: rgb(3 105 161 / 1);
}

.text-sky-700\/15 {
  color: rgb(3 105 161 / 0.15);
}

.text-sky-700\/20 {
  color: rgb(3 105 161 / 0.2);
}

.text-sky-700\/25 {
  color: rgb(3 105 161 / 0.25);
}

.text-sky-700\/30 {
  color: rgb(3 105 161 / 0.3);
}

.text-sky-700\/35 {
  color: rgb(3 105 161 / 0.35);
}

.text-sky-700\/40 {
  color: rgb(3 105 161 / 0.4);
}

.text-sky-700\/45 {
  color: rgb(3 105 161 / 0.45);
}

.text-sky-700\/5 {
  color: rgb(3 105 161 / 0.05);
}

.text-sky-700\/50 {
  color: rgb(3 105 161 / 0.5);
}

.text-sky-700\/55 {
  color: rgb(3 105 161 / 0.55);
}

.text-sky-700\/60 {
  color: rgb(3 105 161 / 0.6);
}

.text-sky-700\/65 {
  color: rgb(3 105 161 / 0.65);
}

.text-sky-700\/70 {
  color: rgb(3 105 161 / 0.7);
}

.text-sky-700\/75 {
  color: rgb(3 105 161 / 0.75);
}

.text-sky-700\/80 {
  color: rgb(3 105 161 / 0.8);
}

.text-sky-700\/85 {
  color: rgb(3 105 161 / 0.85);
}

.text-sky-700\/90 {
  color: rgb(3 105 161 / 0.9);
}

.text-sky-700\/95 {
  color: rgb(3 105 161 / 0.95);
}

.text-sky-800 {
  --tw-text-opacity: 1;
  color: rgb(7 89 133 / var(--tw-text-opacity, 1));
}

.text-sky-800\/0 {
  color: rgb(7 89 133 / 0);
}

.text-sky-800\/10 {
  color: rgb(7 89 133 / 0.1);
}

.text-sky-800\/100 {
  color: rgb(7 89 133 / 1);
}

.text-sky-800\/15 {
  color: rgb(7 89 133 / 0.15);
}

.text-sky-800\/20 {
  color: rgb(7 89 133 / 0.2);
}

.text-sky-800\/25 {
  color: rgb(7 89 133 / 0.25);
}

.text-sky-800\/30 {
  color: rgb(7 89 133 / 0.3);
}

.text-sky-800\/35 {
  color: rgb(7 89 133 / 0.35);
}

.text-sky-800\/40 {
  color: rgb(7 89 133 / 0.4);
}

.text-sky-800\/45 {
  color: rgb(7 89 133 / 0.45);
}

.text-sky-800\/5 {
  color: rgb(7 89 133 / 0.05);
}

.text-sky-800\/50 {
  color: rgb(7 89 133 / 0.5);
}

.text-sky-800\/55 {
  color: rgb(7 89 133 / 0.55);
}

.text-sky-800\/60 {
  color: rgb(7 89 133 / 0.6);
}

.text-sky-800\/65 {
  color: rgb(7 89 133 / 0.65);
}

.text-sky-800\/70 {
  color: rgb(7 89 133 / 0.7);
}

.text-sky-800\/75 {
  color: rgb(7 89 133 / 0.75);
}

.text-sky-800\/80 {
  color: rgb(7 89 133 / 0.8);
}

.text-sky-800\/85 {
  color: rgb(7 89 133 / 0.85);
}

.text-sky-800\/90 {
  color: rgb(7 89 133 / 0.9);
}

.text-sky-800\/95 {
  color: rgb(7 89 133 / 0.95);
}

.text-sky-900 {
  --tw-text-opacity: 1;
  color: rgb(12 74 110 / var(--tw-text-opacity, 1));
}

.text-sky-900\/0 {
  color: rgb(12 74 110 / 0);
}

.text-sky-900\/10 {
  color: rgb(12 74 110 / 0.1);
}

.text-sky-900\/100 {
  color: rgb(12 74 110 / 1);
}

.text-sky-900\/15 {
  color: rgb(12 74 110 / 0.15);
}

.text-sky-900\/20 {
  color: rgb(12 74 110 / 0.2);
}

.text-sky-900\/25 {
  color: rgb(12 74 110 / 0.25);
}

.text-sky-900\/30 {
  color: rgb(12 74 110 / 0.3);
}

.text-sky-900\/35 {
  color: rgb(12 74 110 / 0.35);
}

.text-sky-900\/40 {
  color: rgb(12 74 110 / 0.4);
}

.text-sky-900\/45 {
  color: rgb(12 74 110 / 0.45);
}

.text-sky-900\/5 {
  color: rgb(12 74 110 / 0.05);
}

.text-sky-900\/50 {
  color: rgb(12 74 110 / 0.5);
}

.text-sky-900\/55 {
  color: rgb(12 74 110 / 0.55);
}

.text-sky-900\/60 {
  color: rgb(12 74 110 / 0.6);
}

.text-sky-900\/65 {
  color: rgb(12 74 110 / 0.65);
}

.text-sky-900\/70 {
  color: rgb(12 74 110 / 0.7);
}

.text-sky-900\/75 {
  color: rgb(12 74 110 / 0.75);
}

.text-sky-900\/80 {
  color: rgb(12 74 110 / 0.8);
}

.text-sky-900\/85 {
  color: rgb(12 74 110 / 0.85);
}

.text-sky-900\/90 {
  color: rgb(12 74 110 / 0.9);
}

.text-sky-900\/95 {
  color: rgb(12 74 110 / 0.95);
}

.text-slate-100 {
  --tw-text-opacity: 1;
  color: rgb(241 245 249 / var(--tw-text-opacity, 1));
}

.text-slate-100\/0 {
  color: rgb(241 245 249 / 0);
}

.text-slate-100\/10 {
  color: rgb(241 245 249 / 0.1);
}

.text-slate-100\/100 {
  color: rgb(241 245 249 / 1);
}

.text-slate-100\/15 {
  color: rgb(241 245 249 / 0.15);
}

.text-slate-100\/20 {
  color: rgb(241 245 249 / 0.2);
}

.text-slate-100\/25 {
  color: rgb(241 245 249 / 0.25);
}

.text-slate-100\/30 {
  color: rgb(241 245 249 / 0.3);
}

.text-slate-100\/35 {
  color: rgb(241 245 249 / 0.35);
}

.text-slate-100\/40 {
  color: rgb(241 245 249 / 0.4);
}

.text-slate-100\/45 {
  color: rgb(241 245 249 / 0.45);
}

.text-slate-100\/5 {
  color: rgb(241 245 249 / 0.05);
}

.text-slate-100\/50 {
  color: rgb(241 245 249 / 0.5);
}

.text-slate-100\/55 {
  color: rgb(241 245 249 / 0.55);
}

.text-slate-100\/60 {
  color: rgb(241 245 249 / 0.6);
}

.text-slate-100\/65 {
  color: rgb(241 245 249 / 0.65);
}

.text-slate-100\/70 {
  color: rgb(241 245 249 / 0.7);
}

.text-slate-100\/75 {
  color: rgb(241 245 249 / 0.75);
}

.text-slate-100\/80 {
  color: rgb(241 245 249 / 0.8);
}

.text-slate-100\/85 {
  color: rgb(241 245 249 / 0.85);
}

.text-slate-100\/90 {
  color: rgb(241 245 249 / 0.9);
}

.text-slate-100\/95 {
  color: rgb(241 245 249 / 0.95);
}

.text-slate-200 {
  --tw-text-opacity: 1;
  color: rgb(226 232 240 / var(--tw-text-opacity, 1));
}

.text-slate-200\/0 {
  color: rgb(226 232 240 / 0);
}

.text-slate-200\/10 {
  color: rgb(226 232 240 / 0.1);
}

.text-slate-200\/100 {
  color: rgb(226 232 240 / 1);
}

.text-slate-200\/15 {
  color: rgb(226 232 240 / 0.15);
}

.text-slate-200\/20 {
  color: rgb(226 232 240 / 0.2);
}

.text-slate-200\/25 {
  color: rgb(226 232 240 / 0.25);
}

.text-slate-200\/30 {
  color: rgb(226 232 240 / 0.3);
}

.text-slate-200\/35 {
  color: rgb(226 232 240 / 0.35);
}

.text-slate-200\/40 {
  color: rgb(226 232 240 / 0.4);
}

.text-slate-200\/45 {
  color: rgb(226 232 240 / 0.45);
}

.text-slate-200\/5 {
  color: rgb(226 232 240 / 0.05);
}

.text-slate-200\/50 {
  color: rgb(226 232 240 / 0.5);
}

.text-slate-200\/55 {
  color: rgb(226 232 240 / 0.55);
}

.text-slate-200\/60 {
  color: rgb(226 232 240 / 0.6);
}

.text-slate-200\/65 {
  color: rgb(226 232 240 / 0.65);
}

.text-slate-200\/70 {
  color: rgb(226 232 240 / 0.7);
}

.text-slate-200\/75 {
  color: rgb(226 232 240 / 0.75);
}

.text-slate-200\/80 {
  color: rgb(226 232 240 / 0.8);
}

.text-slate-200\/85 {
  color: rgb(226 232 240 / 0.85);
}

.text-slate-200\/90 {
  color: rgb(226 232 240 / 0.9);
}

.text-slate-200\/95 {
  color: rgb(226 232 240 / 0.95);
}

.text-slate-300 {
  --tw-text-opacity: 1;
  color: rgb(203 213 225 / var(--tw-text-opacity, 1));
}

.text-slate-300\/0 {
  color: rgb(203 213 225 / 0);
}

.text-slate-300\/10 {
  color: rgb(203 213 225 / 0.1);
}

.text-slate-300\/100 {
  color: rgb(203 213 225 / 1);
}

.text-slate-300\/15 {
  color: rgb(203 213 225 / 0.15);
}

.text-slate-300\/20 {
  color: rgb(203 213 225 / 0.2);
}

.text-slate-300\/25 {
  color: rgb(203 213 225 / 0.25);
}

.text-slate-300\/30 {
  color: rgb(203 213 225 / 0.3);
}

.text-slate-300\/35 {
  color: rgb(203 213 225 / 0.35);
}

.text-slate-300\/40 {
  color: rgb(203 213 225 / 0.4);
}

.text-slate-300\/45 {
  color: rgb(203 213 225 / 0.45);
}

.text-slate-300\/5 {
  color: rgb(203 213 225 / 0.05);
}

.text-slate-300\/50 {
  color: rgb(203 213 225 / 0.5);
}

.text-slate-300\/55 {
  color: rgb(203 213 225 / 0.55);
}

.text-slate-300\/60 {
  color: rgb(203 213 225 / 0.6);
}

.text-slate-300\/65 {
  color: rgb(203 213 225 / 0.65);
}

.text-slate-300\/70 {
  color: rgb(203 213 225 / 0.7);
}

.text-slate-300\/75 {
  color: rgb(203 213 225 / 0.75);
}

.text-slate-300\/80 {
  color: rgb(203 213 225 / 0.8);
}

.text-slate-300\/85 {
  color: rgb(203 213 225 / 0.85);
}

.text-slate-300\/90 {
  color: rgb(203 213 225 / 0.9);
}

.text-slate-300\/95 {
  color: rgb(203 213 225 / 0.95);
}

.text-slate-400 {
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}

.text-slate-400\/0 {
  color: rgb(148 163 184 / 0);
}

.text-slate-400\/10 {
  color: rgb(148 163 184 / 0.1);
}

.text-slate-400\/100 {
  color: rgb(148 163 184 / 1);
}

.text-slate-400\/15 {
  color: rgb(148 163 184 / 0.15);
}

.text-slate-400\/20 {
  color: rgb(148 163 184 / 0.2);
}

.text-slate-400\/25 {
  color: rgb(148 163 184 / 0.25);
}

.text-slate-400\/30 {
  color: rgb(148 163 184 / 0.3);
}

.text-slate-400\/35 {
  color: rgb(148 163 184 / 0.35);
}

.text-slate-400\/40 {
  color: rgb(148 163 184 / 0.4);
}

.text-slate-400\/45 {
  color: rgb(148 163 184 / 0.45);
}

.text-slate-400\/5 {
  color: rgb(148 163 184 / 0.05);
}

.text-slate-400\/50 {
  color: rgb(148 163 184 / 0.5);
}

.text-slate-400\/55 {
  color: rgb(148 163 184 / 0.55);
}

.text-slate-400\/60 {
  color: rgb(148 163 184 / 0.6);
}

.text-slate-400\/65 {
  color: rgb(148 163 184 / 0.65);
}

.text-slate-400\/70 {
  color: rgb(148 163 184 / 0.7);
}

.text-slate-400\/75 {
  color: rgb(148 163 184 / 0.75);
}

.text-slate-400\/80 {
  color: rgb(148 163 184 / 0.8);
}

.text-slate-400\/85 {
  color: rgb(148 163 184 / 0.85);
}

.text-slate-400\/90 {
  color: rgb(148 163 184 / 0.9);
}

.text-slate-400\/95 {
  color: rgb(148 163 184 / 0.95);
}

.text-slate-50 {
  --tw-text-opacity: 1;
  color: rgb(248 250 252 / var(--tw-text-opacity, 1));
}

.text-slate-50\/0 {
  color: rgb(248 250 252 / 0);
}

.text-slate-50\/10 {
  color: rgb(248 250 252 / 0.1);
}

.text-slate-50\/100 {
  color: rgb(248 250 252 / 1);
}

.text-slate-50\/15 {
  color: rgb(248 250 252 / 0.15);
}

.text-slate-50\/20 {
  color: rgb(248 250 252 / 0.2);
}

.text-slate-50\/25 {
  color: rgb(248 250 252 / 0.25);
}

.text-slate-50\/30 {
  color: rgb(248 250 252 / 0.3);
}

.text-slate-50\/35 {
  color: rgb(248 250 252 / 0.35);
}

.text-slate-50\/40 {
  color: rgb(248 250 252 / 0.4);
}

.text-slate-50\/45 {
  color: rgb(248 250 252 / 0.45);
}

.text-slate-50\/5 {
  color: rgb(248 250 252 / 0.05);
}

.text-slate-50\/50 {
  color: rgb(248 250 252 / 0.5);
}

.text-slate-50\/55 {
  color: rgb(248 250 252 / 0.55);
}

.text-slate-50\/60 {
  color: rgb(248 250 252 / 0.6);
}

.text-slate-50\/65 {
  color: rgb(248 250 252 / 0.65);
}

.text-slate-50\/70 {
  color: rgb(248 250 252 / 0.7);
}

.text-slate-50\/75 {
  color: rgb(248 250 252 / 0.75);
}

.text-slate-50\/80 {
  color: rgb(248 250 252 / 0.8);
}

.text-slate-50\/85 {
  color: rgb(248 250 252 / 0.85);
}

.text-slate-50\/90 {
  color: rgb(248 250 252 / 0.9);
}

.text-slate-50\/95 {
  color: rgb(248 250 252 / 0.95);
}

.text-slate-500 {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}

.text-slate-500\/0 {
  color: rgb(100 116 139 / 0);
}

.text-slate-500\/10 {
  color: rgb(100 116 139 / 0.1);
}

.text-slate-500\/100 {
  color: rgb(100 116 139 / 1);
}

.text-slate-500\/15 {
  color: rgb(100 116 139 / 0.15);
}

.text-slate-500\/20 {
  color: rgb(100 116 139 / 0.2);
}

.text-slate-500\/25 {
  color: rgb(100 116 139 / 0.25);
}

.text-slate-500\/30 {
  color: rgb(100 116 139 / 0.3);
}

.text-slate-500\/35 {
  color: rgb(100 116 139 / 0.35);
}

.text-slate-500\/40 {
  color: rgb(100 116 139 / 0.4);
}

.text-slate-500\/45 {
  color: rgb(100 116 139 / 0.45);
}

.text-slate-500\/5 {
  color: rgb(100 116 139 / 0.05);
}

.text-slate-500\/50 {
  color: rgb(100 116 139 / 0.5);
}

.text-slate-500\/55 {
  color: rgb(100 116 139 / 0.55);
}

.text-slate-500\/60 {
  color: rgb(100 116 139 / 0.6);
}

.text-slate-500\/65 {
  color: rgb(100 116 139 / 0.65);
}

.text-slate-500\/70 {
  color: rgb(100 116 139 / 0.7);
}

.text-slate-500\/75 {
  color: rgb(100 116 139 / 0.75);
}

.text-slate-500\/80 {
  color: rgb(100 116 139 / 0.8);
}

.text-slate-500\/85 {
  color: rgb(100 116 139 / 0.85);
}

.text-slate-500\/90 {
  color: rgb(100 116 139 / 0.9);
}

.text-slate-500\/95 {
  color: rgb(100 116 139 / 0.95);
}

.text-slate-600 {
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}

.text-slate-600\/0 {
  color: rgb(71 85 105 / 0);
}

.text-slate-600\/10 {
  color: rgb(71 85 105 / 0.1);
}

.text-slate-600\/100 {
  color: rgb(71 85 105 / 1);
}

.text-slate-600\/15 {
  color: rgb(71 85 105 / 0.15);
}

.text-slate-600\/20 {
  color: rgb(71 85 105 / 0.2);
}

.text-slate-600\/25 {
  color: rgb(71 85 105 / 0.25);
}

.text-slate-600\/30 {
  color: rgb(71 85 105 / 0.3);
}

.text-slate-600\/35 {
  color: rgb(71 85 105 / 0.35);
}

.text-slate-600\/40 {
  color: rgb(71 85 105 / 0.4);
}

.text-slate-600\/45 {
  color: rgb(71 85 105 / 0.45);
}

.text-slate-600\/5 {
  color: rgb(71 85 105 / 0.05);
}

.text-slate-600\/50 {
  color: rgb(71 85 105 / 0.5);
}

.text-slate-600\/55 {
  color: rgb(71 85 105 / 0.55);
}

.text-slate-600\/60 {
  color: rgb(71 85 105 / 0.6);
}

.text-slate-600\/65 {
  color: rgb(71 85 105 / 0.65);
}

.text-slate-600\/70 {
  color: rgb(71 85 105 / 0.7);
}

.text-slate-600\/75 {
  color: rgb(71 85 105 / 0.75);
}

.text-slate-600\/80 {
  color: rgb(71 85 105 / 0.8);
}

.text-slate-600\/85 {
  color: rgb(71 85 105 / 0.85);
}

.text-slate-600\/90 {
  color: rgb(71 85 105 / 0.9);
}

.text-slate-600\/95 {
  color: rgb(71 85 105 / 0.95);
}

.text-slate-700 {
  --tw-text-opacity: 1;
  color: rgb(51 65 85 / var(--tw-text-opacity, 1));
}

.text-slate-700\/0 {
  color: rgb(51 65 85 / 0);
}

.text-slate-700\/10 {
  color: rgb(51 65 85 / 0.1);
}

.text-slate-700\/100 {
  color: rgb(51 65 85 / 1);
}

.text-slate-700\/15 {
  color: rgb(51 65 85 / 0.15);
}

.text-slate-700\/20 {
  color: rgb(51 65 85 / 0.2);
}

.text-slate-700\/25 {
  color: rgb(51 65 85 / 0.25);
}

.text-slate-700\/30 {
  color: rgb(51 65 85 / 0.3);
}

.text-slate-700\/35 {
  color: rgb(51 65 85 / 0.35);
}

.text-slate-700\/40 {
  color: rgb(51 65 85 / 0.4);
}

.text-slate-700\/45 {
  color: rgb(51 65 85 / 0.45);
}

.text-slate-700\/5 {
  color: rgb(51 65 85 / 0.05);
}

.text-slate-700\/50 {
  color: rgb(51 65 85 / 0.5);
}

.text-slate-700\/55 {
  color: rgb(51 65 85 / 0.55);
}

.text-slate-700\/60 {
  color: rgb(51 65 85 / 0.6);
}

.text-slate-700\/65 {
  color: rgb(51 65 85 / 0.65);
}

.text-slate-700\/70 {
  color: rgb(51 65 85 / 0.7);
}

.text-slate-700\/75 {
  color: rgb(51 65 85 / 0.75);
}

.text-slate-700\/80 {
  color: rgb(51 65 85 / 0.8);
}

.text-slate-700\/85 {
  color: rgb(51 65 85 / 0.85);
}

.text-slate-700\/90 {
  color: rgb(51 65 85 / 0.9);
}

.text-slate-700\/95 {
  color: rgb(51 65 85 / 0.95);
}

.text-slate-800 {
  --tw-text-opacity: 1;
  color: rgb(30 41 59 / var(--tw-text-opacity, 1));
}

.text-slate-800\/0 {
  color: rgb(30 41 59 / 0);
}

.text-slate-800\/10 {
  color: rgb(30 41 59 / 0.1);
}

.text-slate-800\/100 {
  color: rgb(30 41 59 / 1);
}

.text-slate-800\/15 {
  color: rgb(30 41 59 / 0.15);
}

.text-slate-800\/20 {
  color: rgb(30 41 59 / 0.2);
}

.text-slate-800\/25 {
  color: rgb(30 41 59 / 0.25);
}

.text-slate-800\/30 {
  color: rgb(30 41 59 / 0.3);
}

.text-slate-800\/35 {
  color: rgb(30 41 59 / 0.35);
}

.text-slate-800\/40 {
  color: rgb(30 41 59 / 0.4);
}

.text-slate-800\/45 {
  color: rgb(30 41 59 / 0.45);
}

.text-slate-800\/5 {
  color: rgb(30 41 59 / 0.05);
}

.text-slate-800\/50 {
  color: rgb(30 41 59 / 0.5);
}

.text-slate-800\/55 {
  color: rgb(30 41 59 / 0.55);
}

.text-slate-800\/60 {
  color: rgb(30 41 59 / 0.6);
}

.text-slate-800\/65 {
  color: rgb(30 41 59 / 0.65);
}

.text-slate-800\/70 {
  color: rgb(30 41 59 / 0.7);
}

.text-slate-800\/75 {
  color: rgb(30 41 59 / 0.75);
}

.text-slate-800\/80 {
  color: rgb(30 41 59 / 0.8);
}

.text-slate-800\/85 {
  color: rgb(30 41 59 / 0.85);
}

.text-slate-800\/90 {
  color: rgb(30 41 59 / 0.9);
}

.text-slate-800\/95 {
  color: rgb(30 41 59 / 0.95);
}

.text-slate-900 {
  --tw-text-opacity: 1;
  color: rgb(15 23 42 / var(--tw-text-opacity, 1));
}

.text-slate-900\/0 {
  color: rgb(15 23 42 / 0);
}

.text-slate-900\/10 {
  color: rgb(15 23 42 / 0.1);
}

.text-slate-900\/100 {
  color: rgb(15 23 42 / 1);
}

.text-slate-900\/15 {
  color: rgb(15 23 42 / 0.15);
}

.text-slate-900\/20 {
  color: rgb(15 23 42 / 0.2);
}

.text-slate-900\/25 {
  color: rgb(15 23 42 / 0.25);
}

.text-slate-900\/30 {
  color: rgb(15 23 42 / 0.3);
}

.text-slate-900\/35 {
  color: rgb(15 23 42 / 0.35);
}

.text-slate-900\/40 {
  color: rgb(15 23 42 / 0.4);
}

.text-slate-900\/45 {
  color: rgb(15 23 42 / 0.45);
}

.text-slate-900\/5 {
  color: rgb(15 23 42 / 0.05);
}

.text-slate-900\/50 {
  color: rgb(15 23 42 / 0.5);
}

.text-slate-900\/55 {
  color: rgb(15 23 42 / 0.55);
}

.text-slate-900\/60 {
  color: rgb(15 23 42 / 0.6);
}

.text-slate-900\/65 {
  color: rgb(15 23 42 / 0.65);
}

.text-slate-900\/70 {
  color: rgb(15 23 42 / 0.7);
}

.text-slate-900\/75 {
  color: rgb(15 23 42 / 0.75);
}

.text-slate-900\/80 {
  color: rgb(15 23 42 / 0.8);
}

.text-slate-900\/85 {
  color: rgb(15 23 42 / 0.85);
}

.text-slate-900\/90 {
  color: rgb(15 23 42 / 0.9);
}

.text-slate-900\/95 {
  color: rgb(15 23 42 / 0.95);
}

.text-stone-100 {
  --tw-text-opacity: 1;
  color: rgb(245 245 244 / var(--tw-text-opacity, 1));
}

.text-stone-100\/0 {
  color: rgb(245 245 244 / 0);
}

.text-stone-100\/10 {
  color: rgb(245 245 244 / 0.1);
}

.text-stone-100\/100 {
  color: rgb(245 245 244 / 1);
}

.text-stone-100\/15 {
  color: rgb(245 245 244 / 0.15);
}

.text-stone-100\/20 {
  color: rgb(245 245 244 / 0.2);
}

.text-stone-100\/25 {
  color: rgb(245 245 244 / 0.25);
}

.text-stone-100\/30 {
  color: rgb(245 245 244 / 0.3);
}

.text-stone-100\/35 {
  color: rgb(245 245 244 / 0.35);
}

.text-stone-100\/40 {
  color: rgb(245 245 244 / 0.4);
}

.text-stone-100\/45 {
  color: rgb(245 245 244 / 0.45);
}

.text-stone-100\/5 {
  color: rgb(245 245 244 / 0.05);
}

.text-stone-100\/50 {
  color: rgb(245 245 244 / 0.5);
}

.text-stone-100\/55 {
  color: rgb(245 245 244 / 0.55);
}

.text-stone-100\/60 {
  color: rgb(245 245 244 / 0.6);
}

.text-stone-100\/65 {
  color: rgb(245 245 244 / 0.65);
}

.text-stone-100\/70 {
  color: rgb(245 245 244 / 0.7);
}

.text-stone-100\/75 {
  color: rgb(245 245 244 / 0.75);
}

.text-stone-100\/80 {
  color: rgb(245 245 244 / 0.8);
}

.text-stone-100\/85 {
  color: rgb(245 245 244 / 0.85);
}

.text-stone-100\/90 {
  color: rgb(245 245 244 / 0.9);
}

.text-stone-100\/95 {
  color: rgb(245 245 244 / 0.95);
}

.text-stone-200 {
  --tw-text-opacity: 1;
  color: rgb(231 229 228 / var(--tw-text-opacity, 1));
}

.text-stone-200\/0 {
  color: rgb(231 229 228 / 0);
}

.text-stone-200\/10 {
  color: rgb(231 229 228 / 0.1);
}

.text-stone-200\/100 {
  color: rgb(231 229 228 / 1);
}

.text-stone-200\/15 {
  color: rgb(231 229 228 / 0.15);
}

.text-stone-200\/20 {
  color: rgb(231 229 228 / 0.2);
}

.text-stone-200\/25 {
  color: rgb(231 229 228 / 0.25);
}

.text-stone-200\/30 {
  color: rgb(231 229 228 / 0.3);
}

.text-stone-200\/35 {
  color: rgb(231 229 228 / 0.35);
}

.text-stone-200\/40 {
  color: rgb(231 229 228 / 0.4);
}

.text-stone-200\/45 {
  color: rgb(231 229 228 / 0.45);
}

.text-stone-200\/5 {
  color: rgb(231 229 228 / 0.05);
}

.text-stone-200\/50 {
  color: rgb(231 229 228 / 0.5);
}

.text-stone-200\/55 {
  color: rgb(231 229 228 / 0.55);
}

.text-stone-200\/60 {
  color: rgb(231 229 228 / 0.6);
}

.text-stone-200\/65 {
  color: rgb(231 229 228 / 0.65);
}

.text-stone-200\/70 {
  color: rgb(231 229 228 / 0.7);
}

.text-stone-200\/75 {
  color: rgb(231 229 228 / 0.75);
}

.text-stone-200\/80 {
  color: rgb(231 229 228 / 0.8);
}

.text-stone-200\/85 {
  color: rgb(231 229 228 / 0.85);
}

.text-stone-200\/90 {
  color: rgb(231 229 228 / 0.9);
}

.text-stone-200\/95 {
  color: rgb(231 229 228 / 0.95);
}

.text-stone-300 {
  --tw-text-opacity: 1;
  color: rgb(214 211 209 / var(--tw-text-opacity, 1));
}

.text-stone-300\/0 {
  color: rgb(214 211 209 / 0);
}

.text-stone-300\/10 {
  color: rgb(214 211 209 / 0.1);
}

.text-stone-300\/100 {
  color: rgb(214 211 209 / 1);
}

.text-stone-300\/15 {
  color: rgb(214 211 209 / 0.15);
}

.text-stone-300\/20 {
  color: rgb(214 211 209 / 0.2);
}

.text-stone-300\/25 {
  color: rgb(214 211 209 / 0.25);
}

.text-stone-300\/30 {
  color: rgb(214 211 209 / 0.3);
}

.text-stone-300\/35 {
  color: rgb(214 211 209 / 0.35);
}

.text-stone-300\/40 {
  color: rgb(214 211 209 / 0.4);
}

.text-stone-300\/45 {
  color: rgb(214 211 209 / 0.45);
}

.text-stone-300\/5 {
  color: rgb(214 211 209 / 0.05);
}

.text-stone-300\/50 {
  color: rgb(214 211 209 / 0.5);
}

.text-stone-300\/55 {
  color: rgb(214 211 209 / 0.55);
}

.text-stone-300\/60 {
  color: rgb(214 211 209 / 0.6);
}

.text-stone-300\/65 {
  color: rgb(214 211 209 / 0.65);
}

.text-stone-300\/70 {
  color: rgb(214 211 209 / 0.7);
}

.text-stone-300\/75 {
  color: rgb(214 211 209 / 0.75);
}

.text-stone-300\/80 {
  color: rgb(214 211 209 / 0.8);
}

.text-stone-300\/85 {
  color: rgb(214 211 209 / 0.85);
}

.text-stone-300\/90 {
  color: rgb(214 211 209 / 0.9);
}

.text-stone-300\/95 {
  color: rgb(214 211 209 / 0.95);
}

.text-stone-400 {
  --tw-text-opacity: 1;
  color: rgb(168 162 158 / var(--tw-text-opacity, 1));
}

.text-stone-400\/0 {
  color: rgb(168 162 158 / 0);
}

.text-stone-400\/10 {
  color: rgb(168 162 158 / 0.1);
}

.text-stone-400\/100 {
  color: rgb(168 162 158 / 1);
}

.text-stone-400\/15 {
  color: rgb(168 162 158 / 0.15);
}

.text-stone-400\/20 {
  color: rgb(168 162 158 / 0.2);
}

.text-stone-400\/25 {
  color: rgb(168 162 158 / 0.25);
}

.text-stone-400\/30 {
  color: rgb(168 162 158 / 0.3);
}

.text-stone-400\/35 {
  color: rgb(168 162 158 / 0.35);
}

.text-stone-400\/40 {
  color: rgb(168 162 158 / 0.4);
}

.text-stone-400\/45 {
  color: rgb(168 162 158 / 0.45);
}

.text-stone-400\/5 {
  color: rgb(168 162 158 / 0.05);
}

.text-stone-400\/50 {
  color: rgb(168 162 158 / 0.5);
}

.text-stone-400\/55 {
  color: rgb(168 162 158 / 0.55);
}

.text-stone-400\/60 {
  color: rgb(168 162 158 / 0.6);
}

.text-stone-400\/65 {
  color: rgb(168 162 158 / 0.65);
}

.text-stone-400\/70 {
  color: rgb(168 162 158 / 0.7);
}

.text-stone-400\/75 {
  color: rgb(168 162 158 / 0.75);
}

.text-stone-400\/80 {
  color: rgb(168 162 158 / 0.8);
}

.text-stone-400\/85 {
  color: rgb(168 162 158 / 0.85);
}

.text-stone-400\/90 {
  color: rgb(168 162 158 / 0.9);
}

.text-stone-400\/95 {
  color: rgb(168 162 158 / 0.95);
}

.text-stone-50 {
  --tw-text-opacity: 1;
  color: rgb(250 250 249 / var(--tw-text-opacity, 1));
}

.text-stone-50\/0 {
  color: rgb(250 250 249 / 0);
}

.text-stone-50\/10 {
  color: rgb(250 250 249 / 0.1);
}

.text-stone-50\/100 {
  color: rgb(250 250 249 / 1);
}

.text-stone-50\/15 {
  color: rgb(250 250 249 / 0.15);
}

.text-stone-50\/20 {
  color: rgb(250 250 249 / 0.2);
}

.text-stone-50\/25 {
  color: rgb(250 250 249 / 0.25);
}

.text-stone-50\/30 {
  color: rgb(250 250 249 / 0.3);
}

.text-stone-50\/35 {
  color: rgb(250 250 249 / 0.35);
}

.text-stone-50\/40 {
  color: rgb(250 250 249 / 0.4);
}

.text-stone-50\/45 {
  color: rgb(250 250 249 / 0.45);
}

.text-stone-50\/5 {
  color: rgb(250 250 249 / 0.05);
}

.text-stone-50\/50 {
  color: rgb(250 250 249 / 0.5);
}

.text-stone-50\/55 {
  color: rgb(250 250 249 / 0.55);
}

.text-stone-50\/60 {
  color: rgb(250 250 249 / 0.6);
}

.text-stone-50\/65 {
  color: rgb(250 250 249 / 0.65);
}

.text-stone-50\/70 {
  color: rgb(250 250 249 / 0.7);
}

.text-stone-50\/75 {
  color: rgb(250 250 249 / 0.75);
}

.text-stone-50\/80 {
  color: rgb(250 250 249 / 0.8);
}

.text-stone-50\/85 {
  color: rgb(250 250 249 / 0.85);
}

.text-stone-50\/90 {
  color: rgb(250 250 249 / 0.9);
}

.text-stone-50\/95 {
  color: rgb(250 250 249 / 0.95);
}

.text-stone-500 {
  --tw-text-opacity: 1;
  color: rgb(120 113 108 / var(--tw-text-opacity, 1));
}

.text-stone-500\/0 {
  color: rgb(120 113 108 / 0);
}

.text-stone-500\/10 {
  color: rgb(120 113 108 / 0.1);
}

.text-stone-500\/100 {
  color: rgb(120 113 108 / 1);
}

.text-stone-500\/15 {
  color: rgb(120 113 108 / 0.15);
}

.text-stone-500\/20 {
  color: rgb(120 113 108 / 0.2);
}

.text-stone-500\/25 {
  color: rgb(120 113 108 / 0.25);
}

.text-stone-500\/30 {
  color: rgb(120 113 108 / 0.3);
}

.text-stone-500\/35 {
  color: rgb(120 113 108 / 0.35);
}

.text-stone-500\/40 {
  color: rgb(120 113 108 / 0.4);
}

.text-stone-500\/45 {
  color: rgb(120 113 108 / 0.45);
}

.text-stone-500\/5 {
  color: rgb(120 113 108 / 0.05);
}

.text-stone-500\/50 {
  color: rgb(120 113 108 / 0.5);
}

.text-stone-500\/55 {
  color: rgb(120 113 108 / 0.55);
}

.text-stone-500\/60 {
  color: rgb(120 113 108 / 0.6);
}

.text-stone-500\/65 {
  color: rgb(120 113 108 / 0.65);
}

.text-stone-500\/70 {
  color: rgb(120 113 108 / 0.7);
}

.text-stone-500\/75 {
  color: rgb(120 113 108 / 0.75);
}

.text-stone-500\/80 {
  color: rgb(120 113 108 / 0.8);
}

.text-stone-500\/85 {
  color: rgb(120 113 108 / 0.85);
}

.text-stone-500\/90 {
  color: rgb(120 113 108 / 0.9);
}

.text-stone-500\/95 {
  color: rgb(120 113 108 / 0.95);
}

.text-stone-600 {
  --tw-text-opacity: 1;
  color: rgb(87 83 78 / var(--tw-text-opacity, 1));
}

.text-stone-600\/0 {
  color: rgb(87 83 78 / 0);
}

.text-stone-600\/10 {
  color: rgb(87 83 78 / 0.1);
}

.text-stone-600\/100 {
  color: rgb(87 83 78 / 1);
}

.text-stone-600\/15 {
  color: rgb(87 83 78 / 0.15);
}

.text-stone-600\/20 {
  color: rgb(87 83 78 / 0.2);
}

.text-stone-600\/25 {
  color: rgb(87 83 78 / 0.25);
}

.text-stone-600\/30 {
  color: rgb(87 83 78 / 0.3);
}

.text-stone-600\/35 {
  color: rgb(87 83 78 / 0.35);
}

.text-stone-600\/40 {
  color: rgb(87 83 78 / 0.4);
}

.text-stone-600\/45 {
  color: rgb(87 83 78 / 0.45);
}

.text-stone-600\/5 {
  color: rgb(87 83 78 / 0.05);
}

.text-stone-600\/50 {
  color: rgb(87 83 78 / 0.5);
}

.text-stone-600\/55 {
  color: rgb(87 83 78 / 0.55);
}

.text-stone-600\/60 {
  color: rgb(87 83 78 / 0.6);
}

.text-stone-600\/65 {
  color: rgb(87 83 78 / 0.65);
}

.text-stone-600\/70 {
  color: rgb(87 83 78 / 0.7);
}

.text-stone-600\/75 {
  color: rgb(87 83 78 / 0.75);
}

.text-stone-600\/80 {
  color: rgb(87 83 78 / 0.8);
}

.text-stone-600\/85 {
  color: rgb(87 83 78 / 0.85);
}

.text-stone-600\/90 {
  color: rgb(87 83 78 / 0.9);
}

.text-stone-600\/95 {
  color: rgb(87 83 78 / 0.95);
}

.text-stone-700 {
  --tw-text-opacity: 1;
  color: rgb(68 64 60 / var(--tw-text-opacity, 1));
}

.text-stone-700\/0 {
  color: rgb(68 64 60 / 0);
}

.text-stone-700\/10 {
  color: rgb(68 64 60 / 0.1);
}

.text-stone-700\/100 {
  color: rgb(68 64 60 / 1);
}

.text-stone-700\/15 {
  color: rgb(68 64 60 / 0.15);
}

.text-stone-700\/20 {
  color: rgb(68 64 60 / 0.2);
}

.text-stone-700\/25 {
  color: rgb(68 64 60 / 0.25);
}

.text-stone-700\/30 {
  color: rgb(68 64 60 / 0.3);
}

.text-stone-700\/35 {
  color: rgb(68 64 60 / 0.35);
}

.text-stone-700\/40 {
  color: rgb(68 64 60 / 0.4);
}

.text-stone-700\/45 {
  color: rgb(68 64 60 / 0.45);
}

.text-stone-700\/5 {
  color: rgb(68 64 60 / 0.05);
}

.text-stone-700\/50 {
  color: rgb(68 64 60 / 0.5);
}

.text-stone-700\/55 {
  color: rgb(68 64 60 / 0.55);
}

.text-stone-700\/60 {
  color: rgb(68 64 60 / 0.6);
}

.text-stone-700\/65 {
  color: rgb(68 64 60 / 0.65);
}

.text-stone-700\/70 {
  color: rgb(68 64 60 / 0.7);
}

.text-stone-700\/75 {
  color: rgb(68 64 60 / 0.75);
}

.text-stone-700\/80 {
  color: rgb(68 64 60 / 0.8);
}

.text-stone-700\/85 {
  color: rgb(68 64 60 / 0.85);
}

.text-stone-700\/90 {
  color: rgb(68 64 60 / 0.9);
}

.text-stone-700\/95 {
  color: rgb(68 64 60 / 0.95);
}

.text-stone-800 {
  --tw-text-opacity: 1;
  color: rgb(41 37 36 / var(--tw-text-opacity, 1));
}

.text-stone-800\/0 {
  color: rgb(41 37 36 / 0);
}

.text-stone-800\/10 {
  color: rgb(41 37 36 / 0.1);
}

.text-stone-800\/100 {
  color: rgb(41 37 36 / 1);
}

.text-stone-800\/15 {
  color: rgb(41 37 36 / 0.15);
}

.text-stone-800\/20 {
  color: rgb(41 37 36 / 0.2);
}

.text-stone-800\/25 {
  color: rgb(41 37 36 / 0.25);
}

.text-stone-800\/30 {
  color: rgb(41 37 36 / 0.3);
}

.text-stone-800\/35 {
  color: rgb(41 37 36 / 0.35);
}

.text-stone-800\/40 {
  color: rgb(41 37 36 / 0.4);
}

.text-stone-800\/45 {
  color: rgb(41 37 36 / 0.45);
}

.text-stone-800\/5 {
  color: rgb(41 37 36 / 0.05);
}

.text-stone-800\/50 {
  color: rgb(41 37 36 / 0.5);
}

.text-stone-800\/55 {
  color: rgb(41 37 36 / 0.55);
}

.text-stone-800\/60 {
  color: rgb(41 37 36 / 0.6);
}

.text-stone-800\/65 {
  color: rgb(41 37 36 / 0.65);
}

.text-stone-800\/70 {
  color: rgb(41 37 36 / 0.7);
}

.text-stone-800\/75 {
  color: rgb(41 37 36 / 0.75);
}

.text-stone-800\/80 {
  color: rgb(41 37 36 / 0.8);
}

.text-stone-800\/85 {
  color: rgb(41 37 36 / 0.85);
}

.text-stone-800\/90 {
  color: rgb(41 37 36 / 0.9);
}

.text-stone-800\/95 {
  color: rgb(41 37 36 / 0.95);
}

.text-stone-900 {
  --tw-text-opacity: 1;
  color: rgb(28 25 23 / var(--tw-text-opacity, 1));
}

.text-stone-900\/0 {
  color: rgb(28 25 23 / 0);
}

.text-stone-900\/10 {
  color: rgb(28 25 23 / 0.1);
}

.text-stone-900\/100 {
  color: rgb(28 25 23 / 1);
}

.text-stone-900\/15 {
  color: rgb(28 25 23 / 0.15);
}

.text-stone-900\/20 {
  color: rgb(28 25 23 / 0.2);
}

.text-stone-900\/25 {
  color: rgb(28 25 23 / 0.25);
}

.text-stone-900\/30 {
  color: rgb(28 25 23 / 0.3);
}

.text-stone-900\/35 {
  color: rgb(28 25 23 / 0.35);
}

.text-stone-900\/40 {
  color: rgb(28 25 23 / 0.4);
}

.text-stone-900\/45 {
  color: rgb(28 25 23 / 0.45);
}

.text-stone-900\/5 {
  color: rgb(28 25 23 / 0.05);
}

.text-stone-900\/50 {
  color: rgb(28 25 23 / 0.5);
}

.text-stone-900\/55 {
  color: rgb(28 25 23 / 0.55);
}

.text-stone-900\/60 {
  color: rgb(28 25 23 / 0.6);
}

.text-stone-900\/65 {
  color: rgb(28 25 23 / 0.65);
}

.text-stone-900\/70 {
  color: rgb(28 25 23 / 0.7);
}

.text-stone-900\/75 {
  color: rgb(28 25 23 / 0.75);
}

.text-stone-900\/80 {
  color: rgb(28 25 23 / 0.8);
}

.text-stone-900\/85 {
  color: rgb(28 25 23 / 0.85);
}

.text-stone-900\/90 {
  color: rgb(28 25 23 / 0.9);
}

.text-stone-900\/95 {
  color: rgb(28 25 23 / 0.95);
}

.text-teal-100 {
  --tw-text-opacity: 1;
  color: rgb(204 251 241 / var(--tw-text-opacity, 1));
}

.text-teal-100\/0 {
  color: rgb(204 251 241 / 0);
}

.text-teal-100\/10 {
  color: rgb(204 251 241 / 0.1);
}

.text-teal-100\/100 {
  color: rgb(204 251 241 / 1);
}

.text-teal-100\/15 {
  color: rgb(204 251 241 / 0.15);
}

.text-teal-100\/20 {
  color: rgb(204 251 241 / 0.2);
}

.text-teal-100\/25 {
  color: rgb(204 251 241 / 0.25);
}

.text-teal-100\/30 {
  color: rgb(204 251 241 / 0.3);
}

.text-teal-100\/35 {
  color: rgb(204 251 241 / 0.35);
}

.text-teal-100\/40 {
  color: rgb(204 251 241 / 0.4);
}

.text-teal-100\/45 {
  color: rgb(204 251 241 / 0.45);
}

.text-teal-100\/5 {
  color: rgb(204 251 241 / 0.05);
}

.text-teal-100\/50 {
  color: rgb(204 251 241 / 0.5);
}

.text-teal-100\/55 {
  color: rgb(204 251 241 / 0.55);
}

.text-teal-100\/60 {
  color: rgb(204 251 241 / 0.6);
}

.text-teal-100\/65 {
  color: rgb(204 251 241 / 0.65);
}

.text-teal-100\/70 {
  color: rgb(204 251 241 / 0.7);
}

.text-teal-100\/75 {
  color: rgb(204 251 241 / 0.75);
}

.text-teal-100\/80 {
  color: rgb(204 251 241 / 0.8);
}

.text-teal-100\/85 {
  color: rgb(204 251 241 / 0.85);
}

.text-teal-100\/90 {
  color: rgb(204 251 241 / 0.9);
}

.text-teal-100\/95 {
  color: rgb(204 251 241 / 0.95);
}

.text-teal-200 {
  --tw-text-opacity: 1;
  color: rgb(153 246 228 / var(--tw-text-opacity, 1));
}

.text-teal-200\/0 {
  color: rgb(153 246 228 / 0);
}

.text-teal-200\/10 {
  color: rgb(153 246 228 / 0.1);
}

.text-teal-200\/100 {
  color: rgb(153 246 228 / 1);
}

.text-teal-200\/15 {
  color: rgb(153 246 228 / 0.15);
}

.text-teal-200\/20 {
  color: rgb(153 246 228 / 0.2);
}

.text-teal-200\/25 {
  color: rgb(153 246 228 / 0.25);
}

.text-teal-200\/30 {
  color: rgb(153 246 228 / 0.3);
}

.text-teal-200\/35 {
  color: rgb(153 246 228 / 0.35);
}

.text-teal-200\/40 {
  color: rgb(153 246 228 / 0.4);
}

.text-teal-200\/45 {
  color: rgb(153 246 228 / 0.45);
}

.text-teal-200\/5 {
  color: rgb(153 246 228 / 0.05);
}

.text-teal-200\/50 {
  color: rgb(153 246 228 / 0.5);
}

.text-teal-200\/55 {
  color: rgb(153 246 228 / 0.55);
}

.text-teal-200\/60 {
  color: rgb(153 246 228 / 0.6);
}

.text-teal-200\/65 {
  color: rgb(153 246 228 / 0.65);
}

.text-teal-200\/70 {
  color: rgb(153 246 228 / 0.7);
}

.text-teal-200\/75 {
  color: rgb(153 246 228 / 0.75);
}

.text-teal-200\/80 {
  color: rgb(153 246 228 / 0.8);
}

.text-teal-200\/85 {
  color: rgb(153 246 228 / 0.85);
}

.text-teal-200\/90 {
  color: rgb(153 246 228 / 0.9);
}

.text-teal-200\/95 {
  color: rgb(153 246 228 / 0.95);
}

.text-teal-300 {
  --tw-text-opacity: 1;
  color: rgb(94 234 212 / var(--tw-text-opacity, 1));
}

.text-teal-300\/0 {
  color: rgb(94 234 212 / 0);
}

.text-teal-300\/10 {
  color: rgb(94 234 212 / 0.1);
}

.text-teal-300\/100 {
  color: rgb(94 234 212 / 1);
}

.text-teal-300\/15 {
  color: rgb(94 234 212 / 0.15);
}

.text-teal-300\/20 {
  color: rgb(94 234 212 / 0.2);
}

.text-teal-300\/25 {
  color: rgb(94 234 212 / 0.25);
}

.text-teal-300\/30 {
  color: rgb(94 234 212 / 0.3);
}

.text-teal-300\/35 {
  color: rgb(94 234 212 / 0.35);
}

.text-teal-300\/40 {
  color: rgb(94 234 212 / 0.4);
}

.text-teal-300\/45 {
  color: rgb(94 234 212 / 0.45);
}

.text-teal-300\/5 {
  color: rgb(94 234 212 / 0.05);
}

.text-teal-300\/50 {
  color: rgb(94 234 212 / 0.5);
}

.text-teal-300\/55 {
  color: rgb(94 234 212 / 0.55);
}

.text-teal-300\/60 {
  color: rgb(94 234 212 / 0.6);
}

.text-teal-300\/65 {
  color: rgb(94 234 212 / 0.65);
}

.text-teal-300\/70 {
  color: rgb(94 234 212 / 0.7);
}

.text-teal-300\/75 {
  color: rgb(94 234 212 / 0.75);
}

.text-teal-300\/80 {
  color: rgb(94 234 212 / 0.8);
}

.text-teal-300\/85 {
  color: rgb(94 234 212 / 0.85);
}

.text-teal-300\/90 {
  color: rgb(94 234 212 / 0.9);
}

.text-teal-300\/95 {
  color: rgb(94 234 212 / 0.95);
}

.text-teal-400 {
  --tw-text-opacity: 1;
  color: rgb(45 212 191 / var(--tw-text-opacity, 1));
}

.text-teal-400\/0 {
  color: rgb(45 212 191 / 0);
}

.text-teal-400\/10 {
  color: rgb(45 212 191 / 0.1);
}

.text-teal-400\/100 {
  color: rgb(45 212 191 / 1);
}

.text-teal-400\/15 {
  color: rgb(45 212 191 / 0.15);
}

.text-teal-400\/20 {
  color: rgb(45 212 191 / 0.2);
}

.text-teal-400\/25 {
  color: rgb(45 212 191 / 0.25);
}

.text-teal-400\/30 {
  color: rgb(45 212 191 / 0.3);
}

.text-teal-400\/35 {
  color: rgb(45 212 191 / 0.35);
}

.text-teal-400\/40 {
  color: rgb(45 212 191 / 0.4);
}

.text-teal-400\/45 {
  color: rgb(45 212 191 / 0.45);
}

.text-teal-400\/5 {
  color: rgb(45 212 191 / 0.05);
}

.text-teal-400\/50 {
  color: rgb(45 212 191 / 0.5);
}

.text-teal-400\/55 {
  color: rgb(45 212 191 / 0.55);
}

.text-teal-400\/60 {
  color: rgb(45 212 191 / 0.6);
}

.text-teal-400\/65 {
  color: rgb(45 212 191 / 0.65);
}

.text-teal-400\/70 {
  color: rgb(45 212 191 / 0.7);
}

.text-teal-400\/75 {
  color: rgb(45 212 191 / 0.75);
}

.text-teal-400\/80 {
  color: rgb(45 212 191 / 0.8);
}

.text-teal-400\/85 {
  color: rgb(45 212 191 / 0.85);
}

.text-teal-400\/90 {
  color: rgb(45 212 191 / 0.9);
}

.text-teal-400\/95 {
  color: rgb(45 212 191 / 0.95);
}

.text-teal-50 {
  --tw-text-opacity: 1;
  color: rgb(240 253 250 / var(--tw-text-opacity, 1));
}

.text-teal-50\/0 {
  color: rgb(240 253 250 / 0);
}

.text-teal-50\/10 {
  color: rgb(240 253 250 / 0.1);
}

.text-teal-50\/100 {
  color: rgb(240 253 250 / 1);
}

.text-teal-50\/15 {
  color: rgb(240 253 250 / 0.15);
}

.text-teal-50\/20 {
  color: rgb(240 253 250 / 0.2);
}

.text-teal-50\/25 {
  color: rgb(240 253 250 / 0.25);
}

.text-teal-50\/30 {
  color: rgb(240 253 250 / 0.3);
}

.text-teal-50\/35 {
  color: rgb(240 253 250 / 0.35);
}

.text-teal-50\/40 {
  color: rgb(240 253 250 / 0.4);
}

.text-teal-50\/45 {
  color: rgb(240 253 250 / 0.45);
}

.text-teal-50\/5 {
  color: rgb(240 253 250 / 0.05);
}

.text-teal-50\/50 {
  color: rgb(240 253 250 / 0.5);
}

.text-teal-50\/55 {
  color: rgb(240 253 250 / 0.55);
}

.text-teal-50\/60 {
  color: rgb(240 253 250 / 0.6);
}

.text-teal-50\/65 {
  color: rgb(240 253 250 / 0.65);
}

.text-teal-50\/70 {
  color: rgb(240 253 250 / 0.7);
}

.text-teal-50\/75 {
  color: rgb(240 253 250 / 0.75);
}

.text-teal-50\/80 {
  color: rgb(240 253 250 / 0.8);
}

.text-teal-50\/85 {
  color: rgb(240 253 250 / 0.85);
}

.text-teal-50\/90 {
  color: rgb(240 253 250 / 0.9);
}

.text-teal-50\/95 {
  color: rgb(240 253 250 / 0.95);
}

.text-teal-500 {
  --tw-text-opacity: 1;
  color: rgb(20 184 166 / var(--tw-text-opacity, 1));
}

.text-teal-500\/0 {
  color: rgb(20 184 166 / 0);
}

.text-teal-500\/10 {
  color: rgb(20 184 166 / 0.1);
}

.text-teal-500\/100 {
  color: rgb(20 184 166 / 1);
}

.text-teal-500\/15 {
  color: rgb(20 184 166 / 0.15);
}

.text-teal-500\/20 {
  color: rgb(20 184 166 / 0.2);
}

.text-teal-500\/25 {
  color: rgb(20 184 166 / 0.25);
}

.text-teal-500\/30 {
  color: rgb(20 184 166 / 0.3);
}

.text-teal-500\/35 {
  color: rgb(20 184 166 / 0.35);
}

.text-teal-500\/40 {
  color: rgb(20 184 166 / 0.4);
}

.text-teal-500\/45 {
  color: rgb(20 184 166 / 0.45);
}

.text-teal-500\/5 {
  color: rgb(20 184 166 / 0.05);
}

.text-teal-500\/50 {
  color: rgb(20 184 166 / 0.5);
}

.text-teal-500\/55 {
  color: rgb(20 184 166 / 0.55);
}

.text-teal-500\/60 {
  color: rgb(20 184 166 / 0.6);
}

.text-teal-500\/65 {
  color: rgb(20 184 166 / 0.65);
}

.text-teal-500\/70 {
  color: rgb(20 184 166 / 0.7);
}

.text-teal-500\/75 {
  color: rgb(20 184 166 / 0.75);
}

.text-teal-500\/80 {
  color: rgb(20 184 166 / 0.8);
}

.text-teal-500\/85 {
  color: rgb(20 184 166 / 0.85);
}

.text-teal-500\/90 {
  color: rgb(20 184 166 / 0.9);
}

.text-teal-500\/95 {
  color: rgb(20 184 166 / 0.95);
}

.text-teal-600 {
  --tw-text-opacity: 1;
  color: rgb(13 148 136 / var(--tw-text-opacity, 1));
}

.text-teal-600\/0 {
  color: rgb(13 148 136 / 0);
}

.text-teal-600\/10 {
  color: rgb(13 148 136 / 0.1);
}

.text-teal-600\/100 {
  color: rgb(13 148 136 / 1);
}

.text-teal-600\/15 {
  color: rgb(13 148 136 / 0.15);
}

.text-teal-600\/20 {
  color: rgb(13 148 136 / 0.2);
}

.text-teal-600\/25 {
  color: rgb(13 148 136 / 0.25);
}

.text-teal-600\/30 {
  color: rgb(13 148 136 / 0.3);
}

.text-teal-600\/35 {
  color: rgb(13 148 136 / 0.35);
}

.text-teal-600\/40 {
  color: rgb(13 148 136 / 0.4);
}

.text-teal-600\/45 {
  color: rgb(13 148 136 / 0.45);
}

.text-teal-600\/5 {
  color: rgb(13 148 136 / 0.05);
}

.text-teal-600\/50 {
  color: rgb(13 148 136 / 0.5);
}

.text-teal-600\/55 {
  color: rgb(13 148 136 / 0.55);
}

.text-teal-600\/60 {
  color: rgb(13 148 136 / 0.6);
}

.text-teal-600\/65 {
  color: rgb(13 148 136 / 0.65);
}

.text-teal-600\/70 {
  color: rgb(13 148 136 / 0.7);
}

.text-teal-600\/75 {
  color: rgb(13 148 136 / 0.75);
}

.text-teal-600\/80 {
  color: rgb(13 148 136 / 0.8);
}

.text-teal-600\/85 {
  color: rgb(13 148 136 / 0.85);
}

.text-teal-600\/90 {
  color: rgb(13 148 136 / 0.9);
}

.text-teal-600\/95 {
  color: rgb(13 148 136 / 0.95);
}

.text-teal-700 {
  --tw-text-opacity: 1;
  color: rgb(15 118 110 / var(--tw-text-opacity, 1));
}

.text-teal-700\/0 {
  color: rgb(15 118 110 / 0);
}

.text-teal-700\/10 {
  color: rgb(15 118 110 / 0.1);
}

.text-teal-700\/100 {
  color: rgb(15 118 110 / 1);
}

.text-teal-700\/15 {
  color: rgb(15 118 110 / 0.15);
}

.text-teal-700\/20 {
  color: rgb(15 118 110 / 0.2);
}

.text-teal-700\/25 {
  color: rgb(15 118 110 / 0.25);
}

.text-teal-700\/30 {
  color: rgb(15 118 110 / 0.3);
}

.text-teal-700\/35 {
  color: rgb(15 118 110 / 0.35);
}

.text-teal-700\/40 {
  color: rgb(15 118 110 / 0.4);
}

.text-teal-700\/45 {
  color: rgb(15 118 110 / 0.45);
}

.text-teal-700\/5 {
  color: rgb(15 118 110 / 0.05);
}

.text-teal-700\/50 {
  color: rgb(15 118 110 / 0.5);
}

.text-teal-700\/55 {
  color: rgb(15 118 110 / 0.55);
}

.text-teal-700\/60 {
  color: rgb(15 118 110 / 0.6);
}

.text-teal-700\/65 {
  color: rgb(15 118 110 / 0.65);
}

.text-teal-700\/70 {
  color: rgb(15 118 110 / 0.7);
}

.text-teal-700\/75 {
  color: rgb(15 118 110 / 0.75);
}

.text-teal-700\/80 {
  color: rgb(15 118 110 / 0.8);
}

.text-teal-700\/85 {
  color: rgb(15 118 110 / 0.85);
}

.text-teal-700\/90 {
  color: rgb(15 118 110 / 0.9);
}

.text-teal-700\/95 {
  color: rgb(15 118 110 / 0.95);
}

.text-teal-800 {
  --tw-text-opacity: 1;
  color: rgb(17 94 89 / var(--tw-text-opacity, 1));
}

.text-teal-800\/0 {
  color: rgb(17 94 89 / 0);
}

.text-teal-800\/10 {
  color: rgb(17 94 89 / 0.1);
}

.text-teal-800\/100 {
  color: rgb(17 94 89 / 1);
}

.text-teal-800\/15 {
  color: rgb(17 94 89 / 0.15);
}

.text-teal-800\/20 {
  color: rgb(17 94 89 / 0.2);
}

.text-teal-800\/25 {
  color: rgb(17 94 89 / 0.25);
}

.text-teal-800\/30 {
  color: rgb(17 94 89 / 0.3);
}

.text-teal-800\/35 {
  color: rgb(17 94 89 / 0.35);
}

.text-teal-800\/40 {
  color: rgb(17 94 89 / 0.4);
}

.text-teal-800\/45 {
  color: rgb(17 94 89 / 0.45);
}

.text-teal-800\/5 {
  color: rgb(17 94 89 / 0.05);
}

.text-teal-800\/50 {
  color: rgb(17 94 89 / 0.5);
}

.text-teal-800\/55 {
  color: rgb(17 94 89 / 0.55);
}

.text-teal-800\/60 {
  color: rgb(17 94 89 / 0.6);
}

.text-teal-800\/65 {
  color: rgb(17 94 89 / 0.65);
}

.text-teal-800\/70 {
  color: rgb(17 94 89 / 0.7);
}

.text-teal-800\/75 {
  color: rgb(17 94 89 / 0.75);
}

.text-teal-800\/80 {
  color: rgb(17 94 89 / 0.8);
}

.text-teal-800\/85 {
  color: rgb(17 94 89 / 0.85);
}

.text-teal-800\/90 {
  color: rgb(17 94 89 / 0.9);
}

.text-teal-800\/95 {
  color: rgb(17 94 89 / 0.95);
}

.text-teal-900 {
  --tw-text-opacity: 1;
  color: rgb(19 78 74 / var(--tw-text-opacity, 1));
}

.text-teal-900\/0 {
  color: rgb(19 78 74 / 0);
}

.text-teal-900\/10 {
  color: rgb(19 78 74 / 0.1);
}

.text-teal-900\/100 {
  color: rgb(19 78 74 / 1);
}

.text-teal-900\/15 {
  color: rgb(19 78 74 / 0.15);
}

.text-teal-900\/20 {
  color: rgb(19 78 74 / 0.2);
}

.text-teal-900\/25 {
  color: rgb(19 78 74 / 0.25);
}

.text-teal-900\/30 {
  color: rgb(19 78 74 / 0.3);
}

.text-teal-900\/35 {
  color: rgb(19 78 74 / 0.35);
}

.text-teal-900\/40 {
  color: rgb(19 78 74 / 0.4);
}

.text-teal-900\/45 {
  color: rgb(19 78 74 / 0.45);
}

.text-teal-900\/5 {
  color: rgb(19 78 74 / 0.05);
}

.text-teal-900\/50 {
  color: rgb(19 78 74 / 0.5);
}

.text-teal-900\/55 {
  color: rgb(19 78 74 / 0.55);
}

.text-teal-900\/60 {
  color: rgb(19 78 74 / 0.6);
}

.text-teal-900\/65 {
  color: rgb(19 78 74 / 0.65);
}

.text-teal-900\/70 {
  color: rgb(19 78 74 / 0.7);
}

.text-teal-900\/75 {
  color: rgb(19 78 74 / 0.75);
}

.text-teal-900\/80 {
  color: rgb(19 78 74 / 0.8);
}

.text-teal-900\/85 {
  color: rgb(19 78 74 / 0.85);
}

.text-teal-900\/90 {
  color: rgb(19 78 74 / 0.9);
}

.text-teal-900\/95 {
  color: rgb(19 78 74 / 0.95);
}

.text-tertiary {
  --tw-text-opacity: 1;
  color: rgb(91 92 89 / var(--tw-text-opacity, 1));
}

.text-violet-700 {
  --tw-text-opacity: 1;
  color: rgb(109 40 217 / var(--tw-text-opacity, 1));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-yellow-400 {
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / var(--tw-text-opacity, 1));
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.accent-primary {
  accent-color: #9a4021;
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_24px_60px_rgba\(15\2c 23\2c 42\2c 0\.08\)\] {
  --tw-shadow: 0 24px 60px rgba(15,23,42,0.08);
  --tw-shadow-colored: 0 24px 60px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_24px_60px_rgba\(15\2c 23\2c 42\2c 0\.18\)\] {
  --tw-shadow: 0 24px 60px rgba(15,23,42,0.18);
  --tw-shadow-colored: 0 24px 60px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_24px_80px_rgba\(15\2c 23\2c 42\2c 0\.22\)\] {
  --tw-shadow: 0 24px 80px rgba(15,23,42,0.22);
  --tw-shadow-colored: 0 24px 80px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-slate-200\/60 {
  --tw-shadow-color: rgb(226 232 240 / 0.6);
  --tw-shadow: var(--tw-shadow-colored);
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.outline {
  outline-style: solid;
}

.ring {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-2 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-4 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-inset {
  --tw-ring-inset: inset;
}

.ring-\[\#e8e6dc\] {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(232 230 220 / var(--tw-ring-opacity, 1));
}

.ring-amber-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 243 199 / var(--tw-ring-opacity, 1));
}

.ring-amber-100\/0 {
  --tw-ring-color: rgb(254 243 199 / 0);
}

.ring-amber-100\/10 {
  --tw-ring-color: rgb(254 243 199 / 0.1);
}

.ring-amber-100\/100 {
  --tw-ring-color: rgb(254 243 199 / 1);
}

.ring-amber-100\/15 {
  --tw-ring-color: rgb(254 243 199 / 0.15);
}

.ring-amber-100\/20 {
  --tw-ring-color: rgb(254 243 199 / 0.2);
}

.ring-amber-100\/25 {
  --tw-ring-color: rgb(254 243 199 / 0.25);
}

.ring-amber-100\/30 {
  --tw-ring-color: rgb(254 243 199 / 0.3);
}

.ring-amber-100\/35 {
  --tw-ring-color: rgb(254 243 199 / 0.35);
}

.ring-amber-100\/40 {
  --tw-ring-color: rgb(254 243 199 / 0.4);
}

.ring-amber-100\/45 {
  --tw-ring-color: rgb(254 243 199 / 0.45);
}

.ring-amber-100\/5 {
  --tw-ring-color: rgb(254 243 199 / 0.05);
}

.ring-amber-100\/50 {
  --tw-ring-color: rgb(254 243 199 / 0.5);
}

.ring-amber-100\/55 {
  --tw-ring-color: rgb(254 243 199 / 0.55);
}

.ring-amber-100\/60 {
  --tw-ring-color: rgb(254 243 199 / 0.6);
}

.ring-amber-100\/65 {
  --tw-ring-color: rgb(254 243 199 / 0.65);
}

.ring-amber-100\/70 {
  --tw-ring-color: rgb(254 243 199 / 0.7);
}

.ring-amber-100\/75 {
  --tw-ring-color: rgb(254 243 199 / 0.75);
}

.ring-amber-100\/80 {
  --tw-ring-color: rgb(254 243 199 / 0.8);
}

.ring-amber-100\/85 {
  --tw-ring-color: rgb(254 243 199 / 0.85);
}

.ring-amber-100\/90 {
  --tw-ring-color: rgb(254 243 199 / 0.9);
}

.ring-amber-100\/95 {
  --tw-ring-color: rgb(254 243 199 / 0.95);
}

.ring-amber-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 230 138 / var(--tw-ring-opacity, 1));
}

.ring-amber-200\/0 {
  --tw-ring-color: rgb(253 230 138 / 0);
}

.ring-amber-200\/10 {
  --tw-ring-color: rgb(253 230 138 / 0.1);
}

.ring-amber-200\/100 {
  --tw-ring-color: rgb(253 230 138 / 1);
}

.ring-amber-200\/15 {
  --tw-ring-color: rgb(253 230 138 / 0.15);
}

.ring-amber-200\/20 {
  --tw-ring-color: rgb(253 230 138 / 0.2);
}

.ring-amber-200\/25 {
  --tw-ring-color: rgb(253 230 138 / 0.25);
}

.ring-amber-200\/30 {
  --tw-ring-color: rgb(253 230 138 / 0.3);
}

.ring-amber-200\/35 {
  --tw-ring-color: rgb(253 230 138 / 0.35);
}

.ring-amber-200\/40 {
  --tw-ring-color: rgb(253 230 138 / 0.4);
}

.ring-amber-200\/45 {
  --tw-ring-color: rgb(253 230 138 / 0.45);
}

.ring-amber-200\/5 {
  --tw-ring-color: rgb(253 230 138 / 0.05);
}

.ring-amber-200\/50 {
  --tw-ring-color: rgb(253 230 138 / 0.5);
}

.ring-amber-200\/55 {
  --tw-ring-color: rgb(253 230 138 / 0.55);
}

.ring-amber-200\/60 {
  --tw-ring-color: rgb(253 230 138 / 0.6);
}

.ring-amber-200\/65 {
  --tw-ring-color: rgb(253 230 138 / 0.65);
}

.ring-amber-200\/70 {
  --tw-ring-color: rgb(253 230 138 / 0.7);
}

.ring-amber-200\/75 {
  --tw-ring-color: rgb(253 230 138 / 0.75);
}

.ring-amber-200\/80 {
  --tw-ring-color: rgb(253 230 138 / 0.8);
}

.ring-amber-200\/85 {
  --tw-ring-color: rgb(253 230 138 / 0.85);
}

.ring-amber-200\/90 {
  --tw-ring-color: rgb(253 230 138 / 0.9);
}

.ring-amber-200\/95 {
  --tw-ring-color: rgb(253 230 138 / 0.95);
}

.ring-amber-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(252 211 77 / var(--tw-ring-opacity, 1));
}

.ring-amber-300\/0 {
  --tw-ring-color: rgb(252 211 77 / 0);
}

.ring-amber-300\/10 {
  --tw-ring-color: rgb(252 211 77 / 0.1);
}

.ring-amber-300\/100 {
  --tw-ring-color: rgb(252 211 77 / 1);
}

.ring-amber-300\/15 {
  --tw-ring-color: rgb(252 211 77 / 0.15);
}

.ring-amber-300\/20 {
  --tw-ring-color: rgb(252 211 77 / 0.2);
}

.ring-amber-300\/25 {
  --tw-ring-color: rgb(252 211 77 / 0.25);
}

.ring-amber-300\/30 {
  --tw-ring-color: rgb(252 211 77 / 0.3);
}

.ring-amber-300\/35 {
  --tw-ring-color: rgb(252 211 77 / 0.35);
}

.ring-amber-300\/40 {
  --tw-ring-color: rgb(252 211 77 / 0.4);
}

.ring-amber-300\/45 {
  --tw-ring-color: rgb(252 211 77 / 0.45);
}

.ring-amber-300\/5 {
  --tw-ring-color: rgb(252 211 77 / 0.05);
}

.ring-amber-300\/50 {
  --tw-ring-color: rgb(252 211 77 / 0.5);
}

.ring-amber-300\/55 {
  --tw-ring-color: rgb(252 211 77 / 0.55);
}

.ring-amber-300\/60 {
  --tw-ring-color: rgb(252 211 77 / 0.6);
}

.ring-amber-300\/65 {
  --tw-ring-color: rgb(252 211 77 / 0.65);
}

.ring-amber-300\/70 {
  --tw-ring-color: rgb(252 211 77 / 0.7);
}

.ring-amber-300\/75 {
  --tw-ring-color: rgb(252 211 77 / 0.75);
}

.ring-amber-300\/80 {
  --tw-ring-color: rgb(252 211 77 / 0.8);
}

.ring-amber-300\/85 {
  --tw-ring-color: rgb(252 211 77 / 0.85);
}

.ring-amber-300\/90 {
  --tw-ring-color: rgb(252 211 77 / 0.9);
}

.ring-amber-300\/95 {
  --tw-ring-color: rgb(252 211 77 / 0.95);
}

.ring-amber-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(251 191 36 / var(--tw-ring-opacity, 1));
}

.ring-amber-400\/0 {
  --tw-ring-color: rgb(251 191 36 / 0);
}

.ring-amber-400\/10 {
  --tw-ring-color: rgb(251 191 36 / 0.1);
}

.ring-amber-400\/100 {
  --tw-ring-color: rgb(251 191 36 / 1);
}

.ring-amber-400\/15 {
  --tw-ring-color: rgb(251 191 36 / 0.15);
}

.ring-amber-400\/20 {
  --tw-ring-color: rgb(251 191 36 / 0.2);
}

.ring-amber-400\/25 {
  --tw-ring-color: rgb(251 191 36 / 0.25);
}

.ring-amber-400\/30 {
  --tw-ring-color: rgb(251 191 36 / 0.3);
}

.ring-amber-400\/35 {
  --tw-ring-color: rgb(251 191 36 / 0.35);
}

.ring-amber-400\/40 {
  --tw-ring-color: rgb(251 191 36 / 0.4);
}

.ring-amber-400\/45 {
  --tw-ring-color: rgb(251 191 36 / 0.45);
}

.ring-amber-400\/5 {
  --tw-ring-color: rgb(251 191 36 / 0.05);
}

.ring-amber-400\/50 {
  --tw-ring-color: rgb(251 191 36 / 0.5);
}

.ring-amber-400\/55 {
  --tw-ring-color: rgb(251 191 36 / 0.55);
}

.ring-amber-400\/60 {
  --tw-ring-color: rgb(251 191 36 / 0.6);
}

.ring-amber-400\/65 {
  --tw-ring-color: rgb(251 191 36 / 0.65);
}

.ring-amber-400\/70 {
  --tw-ring-color: rgb(251 191 36 / 0.7);
}

.ring-amber-400\/75 {
  --tw-ring-color: rgb(251 191 36 / 0.75);
}

.ring-amber-400\/80 {
  --tw-ring-color: rgb(251 191 36 / 0.8);
}

.ring-amber-400\/85 {
  --tw-ring-color: rgb(251 191 36 / 0.85);
}

.ring-amber-400\/90 {
  --tw-ring-color: rgb(251 191 36 / 0.9);
}

.ring-amber-400\/95 {
  --tw-ring-color: rgb(251 191 36 / 0.95);
}

.ring-amber-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 251 235 / var(--tw-ring-opacity, 1));
}

.ring-amber-50\/0 {
  --tw-ring-color: rgb(255 251 235 / 0);
}

.ring-amber-50\/10 {
  --tw-ring-color: rgb(255 251 235 / 0.1);
}

.ring-amber-50\/100 {
  --tw-ring-color: rgb(255 251 235 / 1);
}

.ring-amber-50\/15 {
  --tw-ring-color: rgb(255 251 235 / 0.15);
}

.ring-amber-50\/20 {
  --tw-ring-color: rgb(255 251 235 / 0.2);
}

.ring-amber-50\/25 {
  --tw-ring-color: rgb(255 251 235 / 0.25);
}

.ring-amber-50\/30 {
  --tw-ring-color: rgb(255 251 235 / 0.3);
}

.ring-amber-50\/35 {
  --tw-ring-color: rgb(255 251 235 / 0.35);
}

.ring-amber-50\/40 {
  --tw-ring-color: rgb(255 251 235 / 0.4);
}

.ring-amber-50\/45 {
  --tw-ring-color: rgb(255 251 235 / 0.45);
}

.ring-amber-50\/5 {
  --tw-ring-color: rgb(255 251 235 / 0.05);
}

.ring-amber-50\/50 {
  --tw-ring-color: rgb(255 251 235 / 0.5);
}

.ring-amber-50\/55 {
  --tw-ring-color: rgb(255 251 235 / 0.55);
}

.ring-amber-50\/60 {
  --tw-ring-color: rgb(255 251 235 / 0.6);
}

.ring-amber-50\/65 {
  --tw-ring-color: rgb(255 251 235 / 0.65);
}

.ring-amber-50\/70 {
  --tw-ring-color: rgb(255 251 235 / 0.7);
}

.ring-amber-50\/75 {
  --tw-ring-color: rgb(255 251 235 / 0.75);
}

.ring-amber-50\/80 {
  --tw-ring-color: rgb(255 251 235 / 0.8);
}

.ring-amber-50\/85 {
  --tw-ring-color: rgb(255 251 235 / 0.85);
}

.ring-amber-50\/90 {
  --tw-ring-color: rgb(255 251 235 / 0.9);
}

.ring-amber-50\/95 {
  --tw-ring-color: rgb(255 251 235 / 0.95);
}

.ring-amber-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 158 11 / var(--tw-ring-opacity, 1));
}

.ring-amber-500\/0 {
  --tw-ring-color: rgb(245 158 11 / 0);
}

.ring-amber-500\/10 {
  --tw-ring-color: rgb(245 158 11 / 0.1);
}

.ring-amber-500\/100 {
  --tw-ring-color: rgb(245 158 11 / 1);
}

.ring-amber-500\/15 {
  --tw-ring-color: rgb(245 158 11 / 0.15);
}

.ring-amber-500\/20 {
  --tw-ring-color: rgb(245 158 11 / 0.2);
}

.ring-amber-500\/25 {
  --tw-ring-color: rgb(245 158 11 / 0.25);
}

.ring-amber-500\/30 {
  --tw-ring-color: rgb(245 158 11 / 0.3);
}

.ring-amber-500\/35 {
  --tw-ring-color: rgb(245 158 11 / 0.35);
}

.ring-amber-500\/40 {
  --tw-ring-color: rgb(245 158 11 / 0.4);
}

.ring-amber-500\/45 {
  --tw-ring-color: rgb(245 158 11 / 0.45);
}

.ring-amber-500\/5 {
  --tw-ring-color: rgb(245 158 11 / 0.05);
}

.ring-amber-500\/50 {
  --tw-ring-color: rgb(245 158 11 / 0.5);
}

.ring-amber-500\/55 {
  --tw-ring-color: rgb(245 158 11 / 0.55);
}

.ring-amber-500\/60 {
  --tw-ring-color: rgb(245 158 11 / 0.6);
}

.ring-amber-500\/65 {
  --tw-ring-color: rgb(245 158 11 / 0.65);
}

.ring-amber-500\/70 {
  --tw-ring-color: rgb(245 158 11 / 0.7);
}

.ring-amber-500\/75 {
  --tw-ring-color: rgb(245 158 11 / 0.75);
}

.ring-amber-500\/80 {
  --tw-ring-color: rgb(245 158 11 / 0.8);
}

.ring-amber-500\/85 {
  --tw-ring-color: rgb(245 158 11 / 0.85);
}

.ring-amber-500\/90 {
  --tw-ring-color: rgb(245 158 11 / 0.9);
}

.ring-amber-500\/95 {
  --tw-ring-color: rgb(245 158 11 / 0.95);
}

.ring-amber-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(217 119 6 / var(--tw-ring-opacity, 1));
}

.ring-amber-600\/0 {
  --tw-ring-color: rgb(217 119 6 / 0);
}

.ring-amber-600\/10 {
  --tw-ring-color: rgb(217 119 6 / 0.1);
}

.ring-amber-600\/100 {
  --tw-ring-color: rgb(217 119 6 / 1);
}

.ring-amber-600\/15 {
  --tw-ring-color: rgb(217 119 6 / 0.15);
}

.ring-amber-600\/20 {
  --tw-ring-color: rgb(217 119 6 / 0.2);
}

.ring-amber-600\/25 {
  --tw-ring-color: rgb(217 119 6 / 0.25);
}

.ring-amber-600\/30 {
  --tw-ring-color: rgb(217 119 6 / 0.3);
}

.ring-amber-600\/35 {
  --tw-ring-color: rgb(217 119 6 / 0.35);
}

.ring-amber-600\/40 {
  --tw-ring-color: rgb(217 119 6 / 0.4);
}

.ring-amber-600\/45 {
  --tw-ring-color: rgb(217 119 6 / 0.45);
}

.ring-amber-600\/5 {
  --tw-ring-color: rgb(217 119 6 / 0.05);
}

.ring-amber-600\/50 {
  --tw-ring-color: rgb(217 119 6 / 0.5);
}

.ring-amber-600\/55 {
  --tw-ring-color: rgb(217 119 6 / 0.55);
}

.ring-amber-600\/60 {
  --tw-ring-color: rgb(217 119 6 / 0.6);
}

.ring-amber-600\/65 {
  --tw-ring-color: rgb(217 119 6 / 0.65);
}

.ring-amber-600\/70 {
  --tw-ring-color: rgb(217 119 6 / 0.7);
}

.ring-amber-600\/75 {
  --tw-ring-color: rgb(217 119 6 / 0.75);
}

.ring-amber-600\/80 {
  --tw-ring-color: rgb(217 119 6 / 0.8);
}

.ring-amber-600\/85 {
  --tw-ring-color: rgb(217 119 6 / 0.85);
}

.ring-amber-600\/90 {
  --tw-ring-color: rgb(217 119 6 / 0.9);
}

.ring-amber-600\/95 {
  --tw-ring-color: rgb(217 119 6 / 0.95);
}

.ring-amber-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(180 83 9 / var(--tw-ring-opacity, 1));
}

.ring-amber-700\/0 {
  --tw-ring-color: rgb(180 83 9 / 0);
}

.ring-amber-700\/10 {
  --tw-ring-color: rgb(180 83 9 / 0.1);
}

.ring-amber-700\/100 {
  --tw-ring-color: rgb(180 83 9 / 1);
}

.ring-amber-700\/15 {
  --tw-ring-color: rgb(180 83 9 / 0.15);
}

.ring-amber-700\/20 {
  --tw-ring-color: rgb(180 83 9 / 0.2);
}

.ring-amber-700\/25 {
  --tw-ring-color: rgb(180 83 9 / 0.25);
}

.ring-amber-700\/30 {
  --tw-ring-color: rgb(180 83 9 / 0.3);
}

.ring-amber-700\/35 {
  --tw-ring-color: rgb(180 83 9 / 0.35);
}

.ring-amber-700\/40 {
  --tw-ring-color: rgb(180 83 9 / 0.4);
}

.ring-amber-700\/45 {
  --tw-ring-color: rgb(180 83 9 / 0.45);
}

.ring-amber-700\/5 {
  --tw-ring-color: rgb(180 83 9 / 0.05);
}

.ring-amber-700\/50 {
  --tw-ring-color: rgb(180 83 9 / 0.5);
}

.ring-amber-700\/55 {
  --tw-ring-color: rgb(180 83 9 / 0.55);
}

.ring-amber-700\/60 {
  --tw-ring-color: rgb(180 83 9 / 0.6);
}

.ring-amber-700\/65 {
  --tw-ring-color: rgb(180 83 9 / 0.65);
}

.ring-amber-700\/70 {
  --tw-ring-color: rgb(180 83 9 / 0.7);
}

.ring-amber-700\/75 {
  --tw-ring-color: rgb(180 83 9 / 0.75);
}

.ring-amber-700\/80 {
  --tw-ring-color: rgb(180 83 9 / 0.8);
}

.ring-amber-700\/85 {
  --tw-ring-color: rgb(180 83 9 / 0.85);
}

.ring-amber-700\/90 {
  --tw-ring-color: rgb(180 83 9 / 0.9);
}

.ring-amber-700\/95 {
  --tw-ring-color: rgb(180 83 9 / 0.95);
}

.ring-amber-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(146 64 14 / var(--tw-ring-opacity, 1));
}

.ring-amber-800\/0 {
  --tw-ring-color: rgb(146 64 14 / 0);
}

.ring-amber-800\/10 {
  --tw-ring-color: rgb(146 64 14 / 0.1);
}

.ring-amber-800\/100 {
  --tw-ring-color: rgb(146 64 14 / 1);
}

.ring-amber-800\/15 {
  --tw-ring-color: rgb(146 64 14 / 0.15);
}

.ring-amber-800\/20 {
  --tw-ring-color: rgb(146 64 14 / 0.2);
}

.ring-amber-800\/25 {
  --tw-ring-color: rgb(146 64 14 / 0.25);
}

.ring-amber-800\/30 {
  --tw-ring-color: rgb(146 64 14 / 0.3);
}

.ring-amber-800\/35 {
  --tw-ring-color: rgb(146 64 14 / 0.35);
}

.ring-amber-800\/40 {
  --tw-ring-color: rgb(146 64 14 / 0.4);
}

.ring-amber-800\/45 {
  --tw-ring-color: rgb(146 64 14 / 0.45);
}

.ring-amber-800\/5 {
  --tw-ring-color: rgb(146 64 14 / 0.05);
}

.ring-amber-800\/50 {
  --tw-ring-color: rgb(146 64 14 / 0.5);
}

.ring-amber-800\/55 {
  --tw-ring-color: rgb(146 64 14 / 0.55);
}

.ring-amber-800\/60 {
  --tw-ring-color: rgb(146 64 14 / 0.6);
}

.ring-amber-800\/65 {
  --tw-ring-color: rgb(146 64 14 / 0.65);
}

.ring-amber-800\/70 {
  --tw-ring-color: rgb(146 64 14 / 0.7);
}

.ring-amber-800\/75 {
  --tw-ring-color: rgb(146 64 14 / 0.75);
}

.ring-amber-800\/80 {
  --tw-ring-color: rgb(146 64 14 / 0.8);
}

.ring-amber-800\/85 {
  --tw-ring-color: rgb(146 64 14 / 0.85);
}

.ring-amber-800\/90 {
  --tw-ring-color: rgb(146 64 14 / 0.9);
}

.ring-amber-800\/95 {
  --tw-ring-color: rgb(146 64 14 / 0.95);
}

.ring-amber-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(120 53 15 / var(--tw-ring-opacity, 1));
}

.ring-amber-900\/0 {
  --tw-ring-color: rgb(120 53 15 / 0);
}

.ring-amber-900\/10 {
  --tw-ring-color: rgb(120 53 15 / 0.1);
}

.ring-amber-900\/100 {
  --tw-ring-color: rgb(120 53 15 / 1);
}

.ring-amber-900\/15 {
  --tw-ring-color: rgb(120 53 15 / 0.15);
}

.ring-amber-900\/20 {
  --tw-ring-color: rgb(120 53 15 / 0.2);
}

.ring-amber-900\/25 {
  --tw-ring-color: rgb(120 53 15 / 0.25);
}

.ring-amber-900\/30 {
  --tw-ring-color: rgb(120 53 15 / 0.3);
}

.ring-amber-900\/35 {
  --tw-ring-color: rgb(120 53 15 / 0.35);
}

.ring-amber-900\/40 {
  --tw-ring-color: rgb(120 53 15 / 0.4);
}

.ring-amber-900\/45 {
  --tw-ring-color: rgb(120 53 15 / 0.45);
}

.ring-amber-900\/5 {
  --tw-ring-color: rgb(120 53 15 / 0.05);
}

.ring-amber-900\/50 {
  --tw-ring-color: rgb(120 53 15 / 0.5);
}

.ring-amber-900\/55 {
  --tw-ring-color: rgb(120 53 15 / 0.55);
}

.ring-amber-900\/60 {
  --tw-ring-color: rgb(120 53 15 / 0.6);
}

.ring-amber-900\/65 {
  --tw-ring-color: rgb(120 53 15 / 0.65);
}

.ring-amber-900\/70 {
  --tw-ring-color: rgb(120 53 15 / 0.7);
}

.ring-amber-900\/75 {
  --tw-ring-color: rgb(120 53 15 / 0.75);
}

.ring-amber-900\/80 {
  --tw-ring-color: rgb(120 53 15 / 0.8);
}

.ring-amber-900\/85 {
  --tw-ring-color: rgb(120 53 15 / 0.85);
}

.ring-amber-900\/90 {
  --tw-ring-color: rgb(120 53 15 / 0.9);
}

.ring-amber-900\/95 {
  --tw-ring-color: rgb(120 53 15 / 0.95);
}

.ring-blue-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(219 234 254 / var(--tw-ring-opacity, 1));
}

.ring-blue-100\/0 {
  --tw-ring-color: rgb(219 234 254 / 0);
}

.ring-blue-100\/10 {
  --tw-ring-color: rgb(219 234 254 / 0.1);
}

.ring-blue-100\/100 {
  --tw-ring-color: rgb(219 234 254 / 1);
}

.ring-blue-100\/15 {
  --tw-ring-color: rgb(219 234 254 / 0.15);
}

.ring-blue-100\/20 {
  --tw-ring-color: rgb(219 234 254 / 0.2);
}

.ring-blue-100\/25 {
  --tw-ring-color: rgb(219 234 254 / 0.25);
}

.ring-blue-100\/30 {
  --tw-ring-color: rgb(219 234 254 / 0.3);
}

.ring-blue-100\/35 {
  --tw-ring-color: rgb(219 234 254 / 0.35);
}

.ring-blue-100\/40 {
  --tw-ring-color: rgb(219 234 254 / 0.4);
}

.ring-blue-100\/45 {
  --tw-ring-color: rgb(219 234 254 / 0.45);
}

.ring-blue-100\/5 {
  --tw-ring-color: rgb(219 234 254 / 0.05);
}

.ring-blue-100\/50 {
  --tw-ring-color: rgb(219 234 254 / 0.5);
}

.ring-blue-100\/55 {
  --tw-ring-color: rgb(219 234 254 / 0.55);
}

.ring-blue-100\/60 {
  --tw-ring-color: rgb(219 234 254 / 0.6);
}

.ring-blue-100\/65 {
  --tw-ring-color: rgb(219 234 254 / 0.65);
}

.ring-blue-100\/70 {
  --tw-ring-color: rgb(219 234 254 / 0.7);
}

.ring-blue-100\/75 {
  --tw-ring-color: rgb(219 234 254 / 0.75);
}

.ring-blue-100\/80 {
  --tw-ring-color: rgb(219 234 254 / 0.8);
}

.ring-blue-100\/85 {
  --tw-ring-color: rgb(219 234 254 / 0.85);
}

.ring-blue-100\/90 {
  --tw-ring-color: rgb(219 234 254 / 0.9);
}

.ring-blue-100\/95 {
  --tw-ring-color: rgb(219 234 254 / 0.95);
}

.ring-blue-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity, 1));
}

.ring-blue-200\/0 {
  --tw-ring-color: rgb(191 219 254 / 0);
}

.ring-blue-200\/10 {
  --tw-ring-color: rgb(191 219 254 / 0.1);
}

.ring-blue-200\/100 {
  --tw-ring-color: rgb(191 219 254 / 1);
}

.ring-blue-200\/15 {
  --tw-ring-color: rgb(191 219 254 / 0.15);
}

.ring-blue-200\/20 {
  --tw-ring-color: rgb(191 219 254 / 0.2);
}

.ring-blue-200\/25 {
  --tw-ring-color: rgb(191 219 254 / 0.25);
}

.ring-blue-200\/30 {
  --tw-ring-color: rgb(191 219 254 / 0.3);
}

.ring-blue-200\/35 {
  --tw-ring-color: rgb(191 219 254 / 0.35);
}

.ring-blue-200\/40 {
  --tw-ring-color: rgb(191 219 254 / 0.4);
}

.ring-blue-200\/45 {
  --tw-ring-color: rgb(191 219 254 / 0.45);
}

.ring-blue-200\/5 {
  --tw-ring-color: rgb(191 219 254 / 0.05);
}

.ring-blue-200\/50 {
  --tw-ring-color: rgb(191 219 254 / 0.5);
}

.ring-blue-200\/55 {
  --tw-ring-color: rgb(191 219 254 / 0.55);
}

.ring-blue-200\/60 {
  --tw-ring-color: rgb(191 219 254 / 0.6);
}

.ring-blue-200\/65 {
  --tw-ring-color: rgb(191 219 254 / 0.65);
}

.ring-blue-200\/70 {
  --tw-ring-color: rgb(191 219 254 / 0.7);
}

.ring-blue-200\/75 {
  --tw-ring-color: rgb(191 219 254 / 0.75);
}

.ring-blue-200\/80 {
  --tw-ring-color: rgb(191 219 254 / 0.8);
}

.ring-blue-200\/85 {
  --tw-ring-color: rgb(191 219 254 / 0.85);
}

.ring-blue-200\/90 {
  --tw-ring-color: rgb(191 219 254 / 0.9);
}

.ring-blue-200\/95 {
  --tw-ring-color: rgb(191 219 254 / 0.95);
}

.ring-blue-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(147 197 253 / var(--tw-ring-opacity, 1));
}

.ring-blue-300\/0 {
  --tw-ring-color: rgb(147 197 253 / 0);
}

.ring-blue-300\/10 {
  --tw-ring-color: rgb(147 197 253 / 0.1);
}

.ring-blue-300\/100 {
  --tw-ring-color: rgb(147 197 253 / 1);
}

.ring-blue-300\/15 {
  --tw-ring-color: rgb(147 197 253 / 0.15);
}

.ring-blue-300\/20 {
  --tw-ring-color: rgb(147 197 253 / 0.2);
}

.ring-blue-300\/25 {
  --tw-ring-color: rgb(147 197 253 / 0.25);
}

.ring-blue-300\/30 {
  --tw-ring-color: rgb(147 197 253 / 0.3);
}

.ring-blue-300\/35 {
  --tw-ring-color: rgb(147 197 253 / 0.35);
}

.ring-blue-300\/40 {
  --tw-ring-color: rgb(147 197 253 / 0.4);
}

.ring-blue-300\/45 {
  --tw-ring-color: rgb(147 197 253 / 0.45);
}

.ring-blue-300\/5 {
  --tw-ring-color: rgb(147 197 253 / 0.05);
}

.ring-blue-300\/50 {
  --tw-ring-color: rgb(147 197 253 / 0.5);
}

.ring-blue-300\/55 {
  --tw-ring-color: rgb(147 197 253 / 0.55);
}

.ring-blue-300\/60 {
  --tw-ring-color: rgb(147 197 253 / 0.6);
}

.ring-blue-300\/65 {
  --tw-ring-color: rgb(147 197 253 / 0.65);
}

.ring-blue-300\/70 {
  --tw-ring-color: rgb(147 197 253 / 0.7);
}

.ring-blue-300\/75 {
  --tw-ring-color: rgb(147 197 253 / 0.75);
}

.ring-blue-300\/80 {
  --tw-ring-color: rgb(147 197 253 / 0.8);
}

.ring-blue-300\/85 {
  --tw-ring-color: rgb(147 197 253 / 0.85);
}

.ring-blue-300\/90 {
  --tw-ring-color: rgb(147 197 253 / 0.9);
}

.ring-blue-300\/95 {
  --tw-ring-color: rgb(147 197 253 / 0.95);
}

.ring-blue-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(96 165 250 / var(--tw-ring-opacity, 1));
}

.ring-blue-400\/0 {
  --tw-ring-color: rgb(96 165 250 / 0);
}

.ring-blue-400\/10 {
  --tw-ring-color: rgb(96 165 250 / 0.1);
}

.ring-blue-400\/100 {
  --tw-ring-color: rgb(96 165 250 / 1);
}

.ring-blue-400\/15 {
  --tw-ring-color: rgb(96 165 250 / 0.15);
}

.ring-blue-400\/20 {
  --tw-ring-color: rgb(96 165 250 / 0.2);
}

.ring-blue-400\/25 {
  --tw-ring-color: rgb(96 165 250 / 0.25);
}

.ring-blue-400\/30 {
  --tw-ring-color: rgb(96 165 250 / 0.3);
}

.ring-blue-400\/35 {
  --tw-ring-color: rgb(96 165 250 / 0.35);
}

.ring-blue-400\/40 {
  --tw-ring-color: rgb(96 165 250 / 0.4);
}

.ring-blue-400\/45 {
  --tw-ring-color: rgb(96 165 250 / 0.45);
}

.ring-blue-400\/5 {
  --tw-ring-color: rgb(96 165 250 / 0.05);
}

.ring-blue-400\/50 {
  --tw-ring-color: rgb(96 165 250 / 0.5);
}

.ring-blue-400\/55 {
  --tw-ring-color: rgb(96 165 250 / 0.55);
}

.ring-blue-400\/60 {
  --tw-ring-color: rgb(96 165 250 / 0.6);
}

.ring-blue-400\/65 {
  --tw-ring-color: rgb(96 165 250 / 0.65);
}

.ring-blue-400\/70 {
  --tw-ring-color: rgb(96 165 250 / 0.7);
}

.ring-blue-400\/75 {
  --tw-ring-color: rgb(96 165 250 / 0.75);
}

.ring-blue-400\/80 {
  --tw-ring-color: rgb(96 165 250 / 0.8);
}

.ring-blue-400\/85 {
  --tw-ring-color: rgb(96 165 250 / 0.85);
}

.ring-blue-400\/90 {
  --tw-ring-color: rgb(96 165 250 / 0.9);
}

.ring-blue-400\/95 {
  --tw-ring-color: rgb(96 165 250 / 0.95);
}

.ring-blue-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 246 255 / var(--tw-ring-opacity, 1));
}

.ring-blue-50\/0 {
  --tw-ring-color: rgb(239 246 255 / 0);
}

.ring-blue-50\/10 {
  --tw-ring-color: rgb(239 246 255 / 0.1);
}

.ring-blue-50\/100 {
  --tw-ring-color: rgb(239 246 255 / 1);
}

.ring-blue-50\/15 {
  --tw-ring-color: rgb(239 246 255 / 0.15);
}

.ring-blue-50\/20 {
  --tw-ring-color: rgb(239 246 255 / 0.2);
}

.ring-blue-50\/25 {
  --tw-ring-color: rgb(239 246 255 / 0.25);
}

.ring-blue-50\/30 {
  --tw-ring-color: rgb(239 246 255 / 0.3);
}

.ring-blue-50\/35 {
  --tw-ring-color: rgb(239 246 255 / 0.35);
}

.ring-blue-50\/40 {
  --tw-ring-color: rgb(239 246 255 / 0.4);
}

.ring-blue-50\/45 {
  --tw-ring-color: rgb(239 246 255 / 0.45);
}

.ring-blue-50\/5 {
  --tw-ring-color: rgb(239 246 255 / 0.05);
}

.ring-blue-50\/50 {
  --tw-ring-color: rgb(239 246 255 / 0.5);
}

.ring-blue-50\/55 {
  --tw-ring-color: rgb(239 246 255 / 0.55);
}

.ring-blue-50\/60 {
  --tw-ring-color: rgb(239 246 255 / 0.6);
}

.ring-blue-50\/65 {
  --tw-ring-color: rgb(239 246 255 / 0.65);
}

.ring-blue-50\/70 {
  --tw-ring-color: rgb(239 246 255 / 0.7);
}

.ring-blue-50\/75 {
  --tw-ring-color: rgb(239 246 255 / 0.75);
}

.ring-blue-50\/80 {
  --tw-ring-color: rgb(239 246 255 / 0.8);
}

.ring-blue-50\/85 {
  --tw-ring-color: rgb(239 246 255 / 0.85);
}

.ring-blue-50\/90 {
  --tw-ring-color: rgb(239 246 255 / 0.9);
}

.ring-blue-50\/95 {
  --tw-ring-color: rgb(239 246 255 / 0.95);
}

.ring-blue-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}

.ring-blue-500\/0 {
  --tw-ring-color: rgb(59 130 246 / 0);
}

.ring-blue-500\/10 {
  --tw-ring-color: rgb(59 130 246 / 0.1);
}

.ring-blue-500\/100 {
  --tw-ring-color: rgb(59 130 246 / 1);
}

.ring-blue-500\/15 {
  --tw-ring-color: rgb(59 130 246 / 0.15);
}

.ring-blue-500\/20 {
  --tw-ring-color: rgb(59 130 246 / 0.2);
}

.ring-blue-500\/25 {
  --tw-ring-color: rgb(59 130 246 / 0.25);
}

.ring-blue-500\/30 {
  --tw-ring-color: rgb(59 130 246 / 0.3);
}

.ring-blue-500\/35 {
  --tw-ring-color: rgb(59 130 246 / 0.35);
}

.ring-blue-500\/40 {
  --tw-ring-color: rgb(59 130 246 / 0.4);
}

.ring-blue-500\/45 {
  --tw-ring-color: rgb(59 130 246 / 0.45);
}

.ring-blue-500\/5 {
  --tw-ring-color: rgb(59 130 246 / 0.05);
}

.ring-blue-500\/50 {
  --tw-ring-color: rgb(59 130 246 / 0.5);
}

.ring-blue-500\/55 {
  --tw-ring-color: rgb(59 130 246 / 0.55);
}

.ring-blue-500\/60 {
  --tw-ring-color: rgb(59 130 246 / 0.6);
}

.ring-blue-500\/65 {
  --tw-ring-color: rgb(59 130 246 / 0.65);
}

.ring-blue-500\/70 {
  --tw-ring-color: rgb(59 130 246 / 0.7);
}

.ring-blue-500\/75 {
  --tw-ring-color: rgb(59 130 246 / 0.75);
}

.ring-blue-500\/80 {
  --tw-ring-color: rgb(59 130 246 / 0.8);
}

.ring-blue-500\/85 {
  --tw-ring-color: rgb(59 130 246 / 0.85);
}

.ring-blue-500\/90 {
  --tw-ring-color: rgb(59 130 246 / 0.9);
}

.ring-blue-500\/95 {
  --tw-ring-color: rgb(59 130 246 / 0.95);
}

.ring-blue-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity, 1));
}

.ring-blue-600\/0 {
  --tw-ring-color: rgb(37 99 235 / 0);
}

.ring-blue-600\/10 {
  --tw-ring-color: rgb(37 99 235 / 0.1);
}

.ring-blue-600\/100 {
  --tw-ring-color: rgb(37 99 235 / 1);
}

.ring-blue-600\/15 {
  --tw-ring-color: rgb(37 99 235 / 0.15);
}

.ring-blue-600\/20 {
  --tw-ring-color: rgb(37 99 235 / 0.2);
}

.ring-blue-600\/25 {
  --tw-ring-color: rgb(37 99 235 / 0.25);
}

.ring-blue-600\/30 {
  --tw-ring-color: rgb(37 99 235 / 0.3);
}

.ring-blue-600\/35 {
  --tw-ring-color: rgb(37 99 235 / 0.35);
}

.ring-blue-600\/40 {
  --tw-ring-color: rgb(37 99 235 / 0.4);
}

.ring-blue-600\/45 {
  --tw-ring-color: rgb(37 99 235 / 0.45);
}

.ring-blue-600\/5 {
  --tw-ring-color: rgb(37 99 235 / 0.05);
}

.ring-blue-600\/50 {
  --tw-ring-color: rgb(37 99 235 / 0.5);
}

.ring-blue-600\/55 {
  --tw-ring-color: rgb(37 99 235 / 0.55);
}

.ring-blue-600\/60 {
  --tw-ring-color: rgb(37 99 235 / 0.6);
}

.ring-blue-600\/65 {
  --tw-ring-color: rgb(37 99 235 / 0.65);
}

.ring-blue-600\/70 {
  --tw-ring-color: rgb(37 99 235 / 0.7);
}

.ring-blue-600\/75 {
  --tw-ring-color: rgb(37 99 235 / 0.75);
}

.ring-blue-600\/80 {
  --tw-ring-color: rgb(37 99 235 / 0.8);
}

.ring-blue-600\/85 {
  --tw-ring-color: rgb(37 99 235 / 0.85);
}

.ring-blue-600\/90 {
  --tw-ring-color: rgb(37 99 235 / 0.9);
}

.ring-blue-600\/95 {
  --tw-ring-color: rgb(37 99 235 / 0.95);
}

.ring-blue-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(29 78 216 / var(--tw-ring-opacity, 1));
}

.ring-blue-700\/0 {
  --tw-ring-color: rgb(29 78 216 / 0);
}

.ring-blue-700\/10 {
  --tw-ring-color: rgb(29 78 216 / 0.1);
}

.ring-blue-700\/100 {
  --tw-ring-color: rgb(29 78 216 / 1);
}

.ring-blue-700\/15 {
  --tw-ring-color: rgb(29 78 216 / 0.15);
}

.ring-blue-700\/20 {
  --tw-ring-color: rgb(29 78 216 / 0.2);
}

.ring-blue-700\/25 {
  --tw-ring-color: rgb(29 78 216 / 0.25);
}

.ring-blue-700\/30 {
  --tw-ring-color: rgb(29 78 216 / 0.3);
}

.ring-blue-700\/35 {
  --tw-ring-color: rgb(29 78 216 / 0.35);
}

.ring-blue-700\/40 {
  --tw-ring-color: rgb(29 78 216 / 0.4);
}

.ring-blue-700\/45 {
  --tw-ring-color: rgb(29 78 216 / 0.45);
}

.ring-blue-700\/5 {
  --tw-ring-color: rgb(29 78 216 / 0.05);
}

.ring-blue-700\/50 {
  --tw-ring-color: rgb(29 78 216 / 0.5);
}

.ring-blue-700\/55 {
  --tw-ring-color: rgb(29 78 216 / 0.55);
}

.ring-blue-700\/60 {
  --tw-ring-color: rgb(29 78 216 / 0.6);
}

.ring-blue-700\/65 {
  --tw-ring-color: rgb(29 78 216 / 0.65);
}

.ring-blue-700\/70 {
  --tw-ring-color: rgb(29 78 216 / 0.7);
}

.ring-blue-700\/75 {
  --tw-ring-color: rgb(29 78 216 / 0.75);
}

.ring-blue-700\/80 {
  --tw-ring-color: rgb(29 78 216 / 0.8);
}

.ring-blue-700\/85 {
  --tw-ring-color: rgb(29 78 216 / 0.85);
}

.ring-blue-700\/90 {
  --tw-ring-color: rgb(29 78 216 / 0.9);
}

.ring-blue-700\/95 {
  --tw-ring-color: rgb(29 78 216 / 0.95);
}

.ring-blue-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 64 175 / var(--tw-ring-opacity, 1));
}

.ring-blue-800\/0 {
  --tw-ring-color: rgb(30 64 175 / 0);
}

.ring-blue-800\/10 {
  --tw-ring-color: rgb(30 64 175 / 0.1);
}

.ring-blue-800\/100 {
  --tw-ring-color: rgb(30 64 175 / 1);
}

.ring-blue-800\/15 {
  --tw-ring-color: rgb(30 64 175 / 0.15);
}

.ring-blue-800\/20 {
  --tw-ring-color: rgb(30 64 175 / 0.2);
}

.ring-blue-800\/25 {
  --tw-ring-color: rgb(30 64 175 / 0.25);
}

.ring-blue-800\/30 {
  --tw-ring-color: rgb(30 64 175 / 0.3);
}

.ring-blue-800\/35 {
  --tw-ring-color: rgb(30 64 175 / 0.35);
}

.ring-blue-800\/40 {
  --tw-ring-color: rgb(30 64 175 / 0.4);
}

.ring-blue-800\/45 {
  --tw-ring-color: rgb(30 64 175 / 0.45);
}

.ring-blue-800\/5 {
  --tw-ring-color: rgb(30 64 175 / 0.05);
}

.ring-blue-800\/50 {
  --tw-ring-color: rgb(30 64 175 / 0.5);
}

.ring-blue-800\/55 {
  --tw-ring-color: rgb(30 64 175 / 0.55);
}

.ring-blue-800\/60 {
  --tw-ring-color: rgb(30 64 175 / 0.6);
}

.ring-blue-800\/65 {
  --tw-ring-color: rgb(30 64 175 / 0.65);
}

.ring-blue-800\/70 {
  --tw-ring-color: rgb(30 64 175 / 0.7);
}

.ring-blue-800\/75 {
  --tw-ring-color: rgb(30 64 175 / 0.75);
}

.ring-blue-800\/80 {
  --tw-ring-color: rgb(30 64 175 / 0.8);
}

.ring-blue-800\/85 {
  --tw-ring-color: rgb(30 64 175 / 0.85);
}

.ring-blue-800\/90 {
  --tw-ring-color: rgb(30 64 175 / 0.9);
}

.ring-blue-800\/95 {
  --tw-ring-color: rgb(30 64 175 / 0.95);
}

.ring-blue-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 58 138 / var(--tw-ring-opacity, 1));
}

.ring-blue-900\/0 {
  --tw-ring-color: rgb(30 58 138 / 0);
}

.ring-blue-900\/10 {
  --tw-ring-color: rgb(30 58 138 / 0.1);
}

.ring-blue-900\/100 {
  --tw-ring-color: rgb(30 58 138 / 1);
}

.ring-blue-900\/15 {
  --tw-ring-color: rgb(30 58 138 / 0.15);
}

.ring-blue-900\/20 {
  --tw-ring-color: rgb(30 58 138 / 0.2);
}

.ring-blue-900\/25 {
  --tw-ring-color: rgb(30 58 138 / 0.25);
}

.ring-blue-900\/30 {
  --tw-ring-color: rgb(30 58 138 / 0.3);
}

.ring-blue-900\/35 {
  --tw-ring-color: rgb(30 58 138 / 0.35);
}

.ring-blue-900\/40 {
  --tw-ring-color: rgb(30 58 138 / 0.4);
}

.ring-blue-900\/45 {
  --tw-ring-color: rgb(30 58 138 / 0.45);
}

.ring-blue-900\/5 {
  --tw-ring-color: rgb(30 58 138 / 0.05);
}

.ring-blue-900\/50 {
  --tw-ring-color: rgb(30 58 138 / 0.5);
}

.ring-blue-900\/55 {
  --tw-ring-color: rgb(30 58 138 / 0.55);
}

.ring-blue-900\/60 {
  --tw-ring-color: rgb(30 58 138 / 0.6);
}

.ring-blue-900\/65 {
  --tw-ring-color: rgb(30 58 138 / 0.65);
}

.ring-blue-900\/70 {
  --tw-ring-color: rgb(30 58 138 / 0.7);
}

.ring-blue-900\/75 {
  --tw-ring-color: rgb(30 58 138 / 0.75);
}

.ring-blue-900\/80 {
  --tw-ring-color: rgb(30 58 138 / 0.8);
}

.ring-blue-900\/85 {
  --tw-ring-color: rgb(30 58 138 / 0.85);
}

.ring-blue-900\/90 {
  --tw-ring-color: rgb(30 58 138 / 0.9);
}

.ring-blue-900\/95 {
  --tw-ring-color: rgb(30 58 138 / 0.95);
}

.ring-emerald-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 250 229 / var(--tw-ring-opacity, 1));
}

.ring-emerald-100\/0 {
  --tw-ring-color: rgb(209 250 229 / 0);
}

.ring-emerald-100\/10 {
  --tw-ring-color: rgb(209 250 229 / 0.1);
}

.ring-emerald-100\/100 {
  --tw-ring-color: rgb(209 250 229 / 1);
}

.ring-emerald-100\/15 {
  --tw-ring-color: rgb(209 250 229 / 0.15);
}

.ring-emerald-100\/20 {
  --tw-ring-color: rgb(209 250 229 / 0.2);
}

.ring-emerald-100\/25 {
  --tw-ring-color: rgb(209 250 229 / 0.25);
}

.ring-emerald-100\/30 {
  --tw-ring-color: rgb(209 250 229 / 0.3);
}

.ring-emerald-100\/35 {
  --tw-ring-color: rgb(209 250 229 / 0.35);
}

.ring-emerald-100\/40 {
  --tw-ring-color: rgb(209 250 229 / 0.4);
}

.ring-emerald-100\/45 {
  --tw-ring-color: rgb(209 250 229 / 0.45);
}

.ring-emerald-100\/5 {
  --tw-ring-color: rgb(209 250 229 / 0.05);
}

.ring-emerald-100\/50 {
  --tw-ring-color: rgb(209 250 229 / 0.5);
}

.ring-emerald-100\/55 {
  --tw-ring-color: rgb(209 250 229 / 0.55);
}

.ring-emerald-100\/60 {
  --tw-ring-color: rgb(209 250 229 / 0.6);
}

.ring-emerald-100\/65 {
  --tw-ring-color: rgb(209 250 229 / 0.65);
}

.ring-emerald-100\/70 {
  --tw-ring-color: rgb(209 250 229 / 0.7);
}

.ring-emerald-100\/75 {
  --tw-ring-color: rgb(209 250 229 / 0.75);
}

.ring-emerald-100\/80 {
  --tw-ring-color: rgb(209 250 229 / 0.8);
}

.ring-emerald-100\/85 {
  --tw-ring-color: rgb(209 250 229 / 0.85);
}

.ring-emerald-100\/90 {
  --tw-ring-color: rgb(209 250 229 / 0.9);
}

.ring-emerald-100\/95 {
  --tw-ring-color: rgb(209 250 229 / 0.95);
}

.ring-emerald-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(167 243 208 / var(--tw-ring-opacity, 1));
}

.ring-emerald-200\/0 {
  --tw-ring-color: rgb(167 243 208 / 0);
}

.ring-emerald-200\/10 {
  --tw-ring-color: rgb(167 243 208 / 0.1);
}

.ring-emerald-200\/100 {
  --tw-ring-color: rgb(167 243 208 / 1);
}

.ring-emerald-200\/15 {
  --tw-ring-color: rgb(167 243 208 / 0.15);
}

.ring-emerald-200\/20 {
  --tw-ring-color: rgb(167 243 208 / 0.2);
}

.ring-emerald-200\/25 {
  --tw-ring-color: rgb(167 243 208 / 0.25);
}

.ring-emerald-200\/30 {
  --tw-ring-color: rgb(167 243 208 / 0.3);
}

.ring-emerald-200\/35 {
  --tw-ring-color: rgb(167 243 208 / 0.35);
}

.ring-emerald-200\/40 {
  --tw-ring-color: rgb(167 243 208 / 0.4);
}

.ring-emerald-200\/45 {
  --tw-ring-color: rgb(167 243 208 / 0.45);
}

.ring-emerald-200\/5 {
  --tw-ring-color: rgb(167 243 208 / 0.05);
}

.ring-emerald-200\/50 {
  --tw-ring-color: rgb(167 243 208 / 0.5);
}

.ring-emerald-200\/55 {
  --tw-ring-color: rgb(167 243 208 / 0.55);
}

.ring-emerald-200\/60 {
  --tw-ring-color: rgb(167 243 208 / 0.6);
}

.ring-emerald-200\/65 {
  --tw-ring-color: rgb(167 243 208 / 0.65);
}

.ring-emerald-200\/70 {
  --tw-ring-color: rgb(167 243 208 / 0.7);
}

.ring-emerald-200\/75 {
  --tw-ring-color: rgb(167 243 208 / 0.75);
}

.ring-emerald-200\/80 {
  --tw-ring-color: rgb(167 243 208 / 0.8);
}

.ring-emerald-200\/85 {
  --tw-ring-color: rgb(167 243 208 / 0.85);
}

.ring-emerald-200\/90 {
  --tw-ring-color: rgb(167 243 208 / 0.9);
}

.ring-emerald-200\/95 {
  --tw-ring-color: rgb(167 243 208 / 0.95);
}

.ring-emerald-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(110 231 183 / var(--tw-ring-opacity, 1));
}

.ring-emerald-300\/0 {
  --tw-ring-color: rgb(110 231 183 / 0);
}

.ring-emerald-300\/10 {
  --tw-ring-color: rgb(110 231 183 / 0.1);
}

.ring-emerald-300\/100 {
  --tw-ring-color: rgb(110 231 183 / 1);
}

.ring-emerald-300\/15 {
  --tw-ring-color: rgb(110 231 183 / 0.15);
}

.ring-emerald-300\/20 {
  --tw-ring-color: rgb(110 231 183 / 0.2);
}

.ring-emerald-300\/25 {
  --tw-ring-color: rgb(110 231 183 / 0.25);
}

.ring-emerald-300\/30 {
  --tw-ring-color: rgb(110 231 183 / 0.3);
}

.ring-emerald-300\/35 {
  --tw-ring-color: rgb(110 231 183 / 0.35);
}

.ring-emerald-300\/40 {
  --tw-ring-color: rgb(110 231 183 / 0.4);
}

.ring-emerald-300\/45 {
  --tw-ring-color: rgb(110 231 183 / 0.45);
}

.ring-emerald-300\/5 {
  --tw-ring-color: rgb(110 231 183 / 0.05);
}

.ring-emerald-300\/50 {
  --tw-ring-color: rgb(110 231 183 / 0.5);
}

.ring-emerald-300\/55 {
  --tw-ring-color: rgb(110 231 183 / 0.55);
}

.ring-emerald-300\/60 {
  --tw-ring-color: rgb(110 231 183 / 0.6);
}

.ring-emerald-300\/65 {
  --tw-ring-color: rgb(110 231 183 / 0.65);
}

.ring-emerald-300\/70 {
  --tw-ring-color: rgb(110 231 183 / 0.7);
}

.ring-emerald-300\/75 {
  --tw-ring-color: rgb(110 231 183 / 0.75);
}

.ring-emerald-300\/80 {
  --tw-ring-color: rgb(110 231 183 / 0.8);
}

.ring-emerald-300\/85 {
  --tw-ring-color: rgb(110 231 183 / 0.85);
}

.ring-emerald-300\/90 {
  --tw-ring-color: rgb(110 231 183 / 0.9);
}

.ring-emerald-300\/95 {
  --tw-ring-color: rgb(110 231 183 / 0.95);
}

.ring-emerald-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(52 211 153 / var(--tw-ring-opacity, 1));
}

.ring-emerald-400\/0 {
  --tw-ring-color: rgb(52 211 153 / 0);
}

.ring-emerald-400\/10 {
  --tw-ring-color: rgb(52 211 153 / 0.1);
}

.ring-emerald-400\/100 {
  --tw-ring-color: rgb(52 211 153 / 1);
}

.ring-emerald-400\/15 {
  --tw-ring-color: rgb(52 211 153 / 0.15);
}

.ring-emerald-400\/20 {
  --tw-ring-color: rgb(52 211 153 / 0.2);
}

.ring-emerald-400\/25 {
  --tw-ring-color: rgb(52 211 153 / 0.25);
}

.ring-emerald-400\/30 {
  --tw-ring-color: rgb(52 211 153 / 0.3);
}

.ring-emerald-400\/35 {
  --tw-ring-color: rgb(52 211 153 / 0.35);
}

.ring-emerald-400\/40 {
  --tw-ring-color: rgb(52 211 153 / 0.4);
}

.ring-emerald-400\/45 {
  --tw-ring-color: rgb(52 211 153 / 0.45);
}

.ring-emerald-400\/5 {
  --tw-ring-color: rgb(52 211 153 / 0.05);
}

.ring-emerald-400\/50 {
  --tw-ring-color: rgb(52 211 153 / 0.5);
}

.ring-emerald-400\/55 {
  --tw-ring-color: rgb(52 211 153 / 0.55);
}

.ring-emerald-400\/60 {
  --tw-ring-color: rgb(52 211 153 / 0.6);
}

.ring-emerald-400\/65 {
  --tw-ring-color: rgb(52 211 153 / 0.65);
}

.ring-emerald-400\/70 {
  --tw-ring-color: rgb(52 211 153 / 0.7);
}

.ring-emerald-400\/75 {
  --tw-ring-color: rgb(52 211 153 / 0.75);
}

.ring-emerald-400\/80 {
  --tw-ring-color: rgb(52 211 153 / 0.8);
}

.ring-emerald-400\/85 {
  --tw-ring-color: rgb(52 211 153 / 0.85);
}

.ring-emerald-400\/90 {
  --tw-ring-color: rgb(52 211 153 / 0.9);
}

.ring-emerald-400\/95 {
  --tw-ring-color: rgb(52 211 153 / 0.95);
}

.ring-emerald-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(236 253 245 / var(--tw-ring-opacity, 1));
}

.ring-emerald-50\/0 {
  --tw-ring-color: rgb(236 253 245 / 0);
}

.ring-emerald-50\/10 {
  --tw-ring-color: rgb(236 253 245 / 0.1);
}

.ring-emerald-50\/100 {
  --tw-ring-color: rgb(236 253 245 / 1);
}

.ring-emerald-50\/15 {
  --tw-ring-color: rgb(236 253 245 / 0.15);
}

.ring-emerald-50\/20 {
  --tw-ring-color: rgb(236 253 245 / 0.2);
}

.ring-emerald-50\/25 {
  --tw-ring-color: rgb(236 253 245 / 0.25);
}

.ring-emerald-50\/30 {
  --tw-ring-color: rgb(236 253 245 / 0.3);
}

.ring-emerald-50\/35 {
  --tw-ring-color: rgb(236 253 245 / 0.35);
}

.ring-emerald-50\/40 {
  --tw-ring-color: rgb(236 253 245 / 0.4);
}

.ring-emerald-50\/45 {
  --tw-ring-color: rgb(236 253 245 / 0.45);
}

.ring-emerald-50\/5 {
  --tw-ring-color: rgb(236 253 245 / 0.05);
}

.ring-emerald-50\/50 {
  --tw-ring-color: rgb(236 253 245 / 0.5);
}

.ring-emerald-50\/55 {
  --tw-ring-color: rgb(236 253 245 / 0.55);
}

.ring-emerald-50\/60 {
  --tw-ring-color: rgb(236 253 245 / 0.6);
}

.ring-emerald-50\/65 {
  --tw-ring-color: rgb(236 253 245 / 0.65);
}

.ring-emerald-50\/70 {
  --tw-ring-color: rgb(236 253 245 / 0.7);
}

.ring-emerald-50\/75 {
  --tw-ring-color: rgb(236 253 245 / 0.75);
}

.ring-emerald-50\/80 {
  --tw-ring-color: rgb(236 253 245 / 0.8);
}

.ring-emerald-50\/85 {
  --tw-ring-color: rgb(236 253 245 / 0.85);
}

.ring-emerald-50\/90 {
  --tw-ring-color: rgb(236 253 245 / 0.9);
}

.ring-emerald-50\/95 {
  --tw-ring-color: rgb(236 253 245 / 0.95);
}

.ring-emerald-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(16 185 129 / var(--tw-ring-opacity, 1));
}

.ring-emerald-500\/0 {
  --tw-ring-color: rgb(16 185 129 / 0);
}

.ring-emerald-500\/10 {
  --tw-ring-color: rgb(16 185 129 / 0.1);
}

.ring-emerald-500\/100 {
  --tw-ring-color: rgb(16 185 129 / 1);
}

.ring-emerald-500\/15 {
  --tw-ring-color: rgb(16 185 129 / 0.15);
}

.ring-emerald-500\/20 {
  --tw-ring-color: rgb(16 185 129 / 0.2);
}

.ring-emerald-500\/25 {
  --tw-ring-color: rgb(16 185 129 / 0.25);
}

.ring-emerald-500\/30 {
  --tw-ring-color: rgb(16 185 129 / 0.3);
}

.ring-emerald-500\/35 {
  --tw-ring-color: rgb(16 185 129 / 0.35);
}

.ring-emerald-500\/40 {
  --tw-ring-color: rgb(16 185 129 / 0.4);
}

.ring-emerald-500\/45 {
  --tw-ring-color: rgb(16 185 129 / 0.45);
}

.ring-emerald-500\/5 {
  --tw-ring-color: rgb(16 185 129 / 0.05);
}

.ring-emerald-500\/50 {
  --tw-ring-color: rgb(16 185 129 / 0.5);
}

.ring-emerald-500\/55 {
  --tw-ring-color: rgb(16 185 129 / 0.55);
}

.ring-emerald-500\/60 {
  --tw-ring-color: rgb(16 185 129 / 0.6);
}

.ring-emerald-500\/65 {
  --tw-ring-color: rgb(16 185 129 / 0.65);
}

.ring-emerald-500\/70 {
  --tw-ring-color: rgb(16 185 129 / 0.7);
}

.ring-emerald-500\/75 {
  --tw-ring-color: rgb(16 185 129 / 0.75);
}

.ring-emerald-500\/80 {
  --tw-ring-color: rgb(16 185 129 / 0.8);
}

.ring-emerald-500\/85 {
  --tw-ring-color: rgb(16 185 129 / 0.85);
}

.ring-emerald-500\/90 {
  --tw-ring-color: rgb(16 185 129 / 0.9);
}

.ring-emerald-500\/95 {
  --tw-ring-color: rgb(16 185 129 / 0.95);
}

.ring-emerald-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(5 150 105 / var(--tw-ring-opacity, 1));
}

.ring-emerald-600\/0 {
  --tw-ring-color: rgb(5 150 105 / 0);
}

.ring-emerald-600\/10 {
  --tw-ring-color: rgb(5 150 105 / 0.1);
}

.ring-emerald-600\/100 {
  --tw-ring-color: rgb(5 150 105 / 1);
}

.ring-emerald-600\/15 {
  --tw-ring-color: rgb(5 150 105 / 0.15);
}

.ring-emerald-600\/20 {
  --tw-ring-color: rgb(5 150 105 / 0.2);
}

.ring-emerald-600\/25 {
  --tw-ring-color: rgb(5 150 105 / 0.25);
}

.ring-emerald-600\/30 {
  --tw-ring-color: rgb(5 150 105 / 0.3);
}

.ring-emerald-600\/35 {
  --tw-ring-color: rgb(5 150 105 / 0.35);
}

.ring-emerald-600\/40 {
  --tw-ring-color: rgb(5 150 105 / 0.4);
}

.ring-emerald-600\/45 {
  --tw-ring-color: rgb(5 150 105 / 0.45);
}

.ring-emerald-600\/5 {
  --tw-ring-color: rgb(5 150 105 / 0.05);
}

.ring-emerald-600\/50 {
  --tw-ring-color: rgb(5 150 105 / 0.5);
}

.ring-emerald-600\/55 {
  --tw-ring-color: rgb(5 150 105 / 0.55);
}

.ring-emerald-600\/60 {
  --tw-ring-color: rgb(5 150 105 / 0.6);
}

.ring-emerald-600\/65 {
  --tw-ring-color: rgb(5 150 105 / 0.65);
}

.ring-emerald-600\/70 {
  --tw-ring-color: rgb(5 150 105 / 0.7);
}

.ring-emerald-600\/75 {
  --tw-ring-color: rgb(5 150 105 / 0.75);
}

.ring-emerald-600\/80 {
  --tw-ring-color: rgb(5 150 105 / 0.8);
}

.ring-emerald-600\/85 {
  --tw-ring-color: rgb(5 150 105 / 0.85);
}

.ring-emerald-600\/90 {
  --tw-ring-color: rgb(5 150 105 / 0.9);
}

.ring-emerald-600\/95 {
  --tw-ring-color: rgb(5 150 105 / 0.95);
}

.ring-emerald-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(4 120 87 / var(--tw-ring-opacity, 1));
}

.ring-emerald-700\/0 {
  --tw-ring-color: rgb(4 120 87 / 0);
}

.ring-emerald-700\/10 {
  --tw-ring-color: rgb(4 120 87 / 0.1);
}

.ring-emerald-700\/100 {
  --tw-ring-color: rgb(4 120 87 / 1);
}

.ring-emerald-700\/15 {
  --tw-ring-color: rgb(4 120 87 / 0.15);
}

.ring-emerald-700\/20 {
  --tw-ring-color: rgb(4 120 87 / 0.2);
}

.ring-emerald-700\/25 {
  --tw-ring-color: rgb(4 120 87 / 0.25);
}

.ring-emerald-700\/30 {
  --tw-ring-color: rgb(4 120 87 / 0.3);
}

.ring-emerald-700\/35 {
  --tw-ring-color: rgb(4 120 87 / 0.35);
}

.ring-emerald-700\/40 {
  --tw-ring-color: rgb(4 120 87 / 0.4);
}

.ring-emerald-700\/45 {
  --tw-ring-color: rgb(4 120 87 / 0.45);
}

.ring-emerald-700\/5 {
  --tw-ring-color: rgb(4 120 87 / 0.05);
}

.ring-emerald-700\/50 {
  --tw-ring-color: rgb(4 120 87 / 0.5);
}

.ring-emerald-700\/55 {
  --tw-ring-color: rgb(4 120 87 / 0.55);
}

.ring-emerald-700\/60 {
  --tw-ring-color: rgb(4 120 87 / 0.6);
}

.ring-emerald-700\/65 {
  --tw-ring-color: rgb(4 120 87 / 0.65);
}

.ring-emerald-700\/70 {
  --tw-ring-color: rgb(4 120 87 / 0.7);
}

.ring-emerald-700\/75 {
  --tw-ring-color: rgb(4 120 87 / 0.75);
}

.ring-emerald-700\/80 {
  --tw-ring-color: rgb(4 120 87 / 0.8);
}

.ring-emerald-700\/85 {
  --tw-ring-color: rgb(4 120 87 / 0.85);
}

.ring-emerald-700\/90 {
  --tw-ring-color: rgb(4 120 87 / 0.9);
}

.ring-emerald-700\/95 {
  --tw-ring-color: rgb(4 120 87 / 0.95);
}

.ring-emerald-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(6 95 70 / var(--tw-ring-opacity, 1));
}

.ring-emerald-800\/0 {
  --tw-ring-color: rgb(6 95 70 / 0);
}

.ring-emerald-800\/10 {
  --tw-ring-color: rgb(6 95 70 / 0.1);
}

.ring-emerald-800\/100 {
  --tw-ring-color: rgb(6 95 70 / 1);
}

.ring-emerald-800\/15 {
  --tw-ring-color: rgb(6 95 70 / 0.15);
}

.ring-emerald-800\/20 {
  --tw-ring-color: rgb(6 95 70 / 0.2);
}

.ring-emerald-800\/25 {
  --tw-ring-color: rgb(6 95 70 / 0.25);
}

.ring-emerald-800\/30 {
  --tw-ring-color: rgb(6 95 70 / 0.3);
}

.ring-emerald-800\/35 {
  --tw-ring-color: rgb(6 95 70 / 0.35);
}

.ring-emerald-800\/40 {
  --tw-ring-color: rgb(6 95 70 / 0.4);
}

.ring-emerald-800\/45 {
  --tw-ring-color: rgb(6 95 70 / 0.45);
}

.ring-emerald-800\/5 {
  --tw-ring-color: rgb(6 95 70 / 0.05);
}

.ring-emerald-800\/50 {
  --tw-ring-color: rgb(6 95 70 / 0.5);
}

.ring-emerald-800\/55 {
  --tw-ring-color: rgb(6 95 70 / 0.55);
}

.ring-emerald-800\/60 {
  --tw-ring-color: rgb(6 95 70 / 0.6);
}

.ring-emerald-800\/65 {
  --tw-ring-color: rgb(6 95 70 / 0.65);
}

.ring-emerald-800\/70 {
  --tw-ring-color: rgb(6 95 70 / 0.7);
}

.ring-emerald-800\/75 {
  --tw-ring-color: rgb(6 95 70 / 0.75);
}

.ring-emerald-800\/80 {
  --tw-ring-color: rgb(6 95 70 / 0.8);
}

.ring-emerald-800\/85 {
  --tw-ring-color: rgb(6 95 70 / 0.85);
}

.ring-emerald-800\/90 {
  --tw-ring-color: rgb(6 95 70 / 0.9);
}

.ring-emerald-800\/95 {
  --tw-ring-color: rgb(6 95 70 / 0.95);
}

.ring-emerald-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(6 78 59 / var(--tw-ring-opacity, 1));
}

.ring-emerald-900\/0 {
  --tw-ring-color: rgb(6 78 59 / 0);
}

.ring-emerald-900\/10 {
  --tw-ring-color: rgb(6 78 59 / 0.1);
}

.ring-emerald-900\/100 {
  --tw-ring-color: rgb(6 78 59 / 1);
}

.ring-emerald-900\/15 {
  --tw-ring-color: rgb(6 78 59 / 0.15);
}

.ring-emerald-900\/20 {
  --tw-ring-color: rgb(6 78 59 / 0.2);
}

.ring-emerald-900\/25 {
  --tw-ring-color: rgb(6 78 59 / 0.25);
}

.ring-emerald-900\/30 {
  --tw-ring-color: rgb(6 78 59 / 0.3);
}

.ring-emerald-900\/35 {
  --tw-ring-color: rgb(6 78 59 / 0.35);
}

.ring-emerald-900\/40 {
  --tw-ring-color: rgb(6 78 59 / 0.4);
}

.ring-emerald-900\/45 {
  --tw-ring-color: rgb(6 78 59 / 0.45);
}

.ring-emerald-900\/5 {
  --tw-ring-color: rgb(6 78 59 / 0.05);
}

.ring-emerald-900\/50 {
  --tw-ring-color: rgb(6 78 59 / 0.5);
}

.ring-emerald-900\/55 {
  --tw-ring-color: rgb(6 78 59 / 0.55);
}

.ring-emerald-900\/60 {
  --tw-ring-color: rgb(6 78 59 / 0.6);
}

.ring-emerald-900\/65 {
  --tw-ring-color: rgb(6 78 59 / 0.65);
}

.ring-emerald-900\/70 {
  --tw-ring-color: rgb(6 78 59 / 0.7);
}

.ring-emerald-900\/75 {
  --tw-ring-color: rgb(6 78 59 / 0.75);
}

.ring-emerald-900\/80 {
  --tw-ring-color: rgb(6 78 59 / 0.8);
}

.ring-emerald-900\/85 {
  --tw-ring-color: rgb(6 78 59 / 0.85);
}

.ring-emerald-900\/90 {
  --tw-ring-color: rgb(6 78 59 / 0.9);
}

.ring-emerald-900\/95 {
  --tw-ring-color: rgb(6 78 59 / 0.95);
}

.ring-orange-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 237 213 / var(--tw-ring-opacity, 1));
}

.ring-orange-100\/0 {
  --tw-ring-color: rgb(255 237 213 / 0);
}

.ring-orange-100\/10 {
  --tw-ring-color: rgb(255 237 213 / 0.1);
}

.ring-orange-100\/100 {
  --tw-ring-color: rgb(255 237 213 / 1);
}

.ring-orange-100\/15 {
  --tw-ring-color: rgb(255 237 213 / 0.15);
}

.ring-orange-100\/20 {
  --tw-ring-color: rgb(255 237 213 / 0.2);
}

.ring-orange-100\/25 {
  --tw-ring-color: rgb(255 237 213 / 0.25);
}

.ring-orange-100\/30 {
  --tw-ring-color: rgb(255 237 213 / 0.3);
}

.ring-orange-100\/35 {
  --tw-ring-color: rgb(255 237 213 / 0.35);
}

.ring-orange-100\/40 {
  --tw-ring-color: rgb(255 237 213 / 0.4);
}

.ring-orange-100\/45 {
  --tw-ring-color: rgb(255 237 213 / 0.45);
}

.ring-orange-100\/5 {
  --tw-ring-color: rgb(255 237 213 / 0.05);
}

.ring-orange-100\/50 {
  --tw-ring-color: rgb(255 237 213 / 0.5);
}

.ring-orange-100\/55 {
  --tw-ring-color: rgb(255 237 213 / 0.55);
}

.ring-orange-100\/60 {
  --tw-ring-color: rgb(255 237 213 / 0.6);
}

.ring-orange-100\/65 {
  --tw-ring-color: rgb(255 237 213 / 0.65);
}

.ring-orange-100\/70 {
  --tw-ring-color: rgb(255 237 213 / 0.7);
}

.ring-orange-100\/75 {
  --tw-ring-color: rgb(255 237 213 / 0.75);
}

.ring-orange-100\/80 {
  --tw-ring-color: rgb(255 237 213 / 0.8);
}

.ring-orange-100\/85 {
  --tw-ring-color: rgb(255 237 213 / 0.85);
}

.ring-orange-100\/90 {
  --tw-ring-color: rgb(255 237 213 / 0.9);
}

.ring-orange-100\/95 {
  --tw-ring-color: rgb(255 237 213 / 0.95);
}

.ring-orange-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 215 170 / var(--tw-ring-opacity, 1));
}

.ring-orange-200\/0 {
  --tw-ring-color: rgb(254 215 170 / 0);
}

.ring-orange-200\/10 {
  --tw-ring-color: rgb(254 215 170 / 0.1);
}

.ring-orange-200\/100 {
  --tw-ring-color: rgb(254 215 170 / 1);
}

.ring-orange-200\/15 {
  --tw-ring-color: rgb(254 215 170 / 0.15);
}

.ring-orange-200\/20 {
  --tw-ring-color: rgb(254 215 170 / 0.2);
}

.ring-orange-200\/25 {
  --tw-ring-color: rgb(254 215 170 / 0.25);
}

.ring-orange-200\/30 {
  --tw-ring-color: rgb(254 215 170 / 0.3);
}

.ring-orange-200\/35 {
  --tw-ring-color: rgb(254 215 170 / 0.35);
}

.ring-orange-200\/40 {
  --tw-ring-color: rgb(254 215 170 / 0.4);
}

.ring-orange-200\/45 {
  --tw-ring-color: rgb(254 215 170 / 0.45);
}

.ring-orange-200\/5 {
  --tw-ring-color: rgb(254 215 170 / 0.05);
}

.ring-orange-200\/50 {
  --tw-ring-color: rgb(254 215 170 / 0.5);
}

.ring-orange-200\/55 {
  --tw-ring-color: rgb(254 215 170 / 0.55);
}

.ring-orange-200\/60 {
  --tw-ring-color: rgb(254 215 170 / 0.6);
}

.ring-orange-200\/65 {
  --tw-ring-color: rgb(254 215 170 / 0.65);
}

.ring-orange-200\/70 {
  --tw-ring-color: rgb(254 215 170 / 0.7);
}

.ring-orange-200\/75 {
  --tw-ring-color: rgb(254 215 170 / 0.75);
}

.ring-orange-200\/80 {
  --tw-ring-color: rgb(254 215 170 / 0.8);
}

.ring-orange-200\/85 {
  --tw-ring-color: rgb(254 215 170 / 0.85);
}

.ring-orange-200\/90 {
  --tw-ring-color: rgb(254 215 170 / 0.9);
}

.ring-orange-200\/95 {
  --tw-ring-color: rgb(254 215 170 / 0.95);
}

.ring-orange-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 186 116 / var(--tw-ring-opacity, 1));
}

.ring-orange-300\/0 {
  --tw-ring-color: rgb(253 186 116 / 0);
}

.ring-orange-300\/10 {
  --tw-ring-color: rgb(253 186 116 / 0.1);
}

.ring-orange-300\/100 {
  --tw-ring-color: rgb(253 186 116 / 1);
}

.ring-orange-300\/15 {
  --tw-ring-color: rgb(253 186 116 / 0.15);
}

.ring-orange-300\/20 {
  --tw-ring-color: rgb(253 186 116 / 0.2);
}

.ring-orange-300\/25 {
  --tw-ring-color: rgb(253 186 116 / 0.25);
}

.ring-orange-300\/30 {
  --tw-ring-color: rgb(253 186 116 / 0.3);
}

.ring-orange-300\/35 {
  --tw-ring-color: rgb(253 186 116 / 0.35);
}

.ring-orange-300\/40 {
  --tw-ring-color: rgb(253 186 116 / 0.4);
}

.ring-orange-300\/45 {
  --tw-ring-color: rgb(253 186 116 / 0.45);
}

.ring-orange-300\/5 {
  --tw-ring-color: rgb(253 186 116 / 0.05);
}

.ring-orange-300\/50 {
  --tw-ring-color: rgb(253 186 116 / 0.5);
}

.ring-orange-300\/55 {
  --tw-ring-color: rgb(253 186 116 / 0.55);
}

.ring-orange-300\/60 {
  --tw-ring-color: rgb(253 186 116 / 0.6);
}

.ring-orange-300\/65 {
  --tw-ring-color: rgb(253 186 116 / 0.65);
}

.ring-orange-300\/70 {
  --tw-ring-color: rgb(253 186 116 / 0.7);
}

.ring-orange-300\/75 {
  --tw-ring-color: rgb(253 186 116 / 0.75);
}

.ring-orange-300\/80 {
  --tw-ring-color: rgb(253 186 116 / 0.8);
}

.ring-orange-300\/85 {
  --tw-ring-color: rgb(253 186 116 / 0.85);
}

.ring-orange-300\/90 {
  --tw-ring-color: rgb(253 186 116 / 0.9);
}

.ring-orange-300\/95 {
  --tw-ring-color: rgb(253 186 116 / 0.95);
}

.ring-orange-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(251 146 60 / var(--tw-ring-opacity, 1));
}

.ring-orange-400\/0 {
  --tw-ring-color: rgb(251 146 60 / 0);
}

.ring-orange-400\/10 {
  --tw-ring-color: rgb(251 146 60 / 0.1);
}

.ring-orange-400\/100 {
  --tw-ring-color: rgb(251 146 60 / 1);
}

.ring-orange-400\/15 {
  --tw-ring-color: rgb(251 146 60 / 0.15);
}

.ring-orange-400\/20 {
  --tw-ring-color: rgb(251 146 60 / 0.2);
}

.ring-orange-400\/25 {
  --tw-ring-color: rgb(251 146 60 / 0.25);
}

.ring-orange-400\/30 {
  --tw-ring-color: rgb(251 146 60 / 0.3);
}

.ring-orange-400\/35 {
  --tw-ring-color: rgb(251 146 60 / 0.35);
}

.ring-orange-400\/40 {
  --tw-ring-color: rgb(251 146 60 / 0.4);
}

.ring-orange-400\/45 {
  --tw-ring-color: rgb(251 146 60 / 0.45);
}

.ring-orange-400\/5 {
  --tw-ring-color: rgb(251 146 60 / 0.05);
}

.ring-orange-400\/50 {
  --tw-ring-color: rgb(251 146 60 / 0.5);
}

.ring-orange-400\/55 {
  --tw-ring-color: rgb(251 146 60 / 0.55);
}

.ring-orange-400\/60 {
  --tw-ring-color: rgb(251 146 60 / 0.6);
}

.ring-orange-400\/65 {
  --tw-ring-color: rgb(251 146 60 / 0.65);
}

.ring-orange-400\/70 {
  --tw-ring-color: rgb(251 146 60 / 0.7);
}

.ring-orange-400\/75 {
  --tw-ring-color: rgb(251 146 60 / 0.75);
}

.ring-orange-400\/80 {
  --tw-ring-color: rgb(251 146 60 / 0.8);
}

.ring-orange-400\/85 {
  --tw-ring-color: rgb(251 146 60 / 0.85);
}

.ring-orange-400\/90 {
  --tw-ring-color: rgb(251 146 60 / 0.9);
}

.ring-orange-400\/95 {
  --tw-ring-color: rgb(251 146 60 / 0.95);
}

.ring-orange-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 247 237 / var(--tw-ring-opacity, 1));
}

.ring-orange-50\/0 {
  --tw-ring-color: rgb(255 247 237 / 0);
}

.ring-orange-50\/10 {
  --tw-ring-color: rgb(255 247 237 / 0.1);
}

.ring-orange-50\/100 {
  --tw-ring-color: rgb(255 247 237 / 1);
}

.ring-orange-50\/15 {
  --tw-ring-color: rgb(255 247 237 / 0.15);
}

.ring-orange-50\/20 {
  --tw-ring-color: rgb(255 247 237 / 0.2);
}

.ring-orange-50\/25 {
  --tw-ring-color: rgb(255 247 237 / 0.25);
}

.ring-orange-50\/30 {
  --tw-ring-color: rgb(255 247 237 / 0.3);
}

.ring-orange-50\/35 {
  --tw-ring-color: rgb(255 247 237 / 0.35);
}

.ring-orange-50\/40 {
  --tw-ring-color: rgb(255 247 237 / 0.4);
}

.ring-orange-50\/45 {
  --tw-ring-color: rgb(255 247 237 / 0.45);
}

.ring-orange-50\/5 {
  --tw-ring-color: rgb(255 247 237 / 0.05);
}

.ring-orange-50\/50 {
  --tw-ring-color: rgb(255 247 237 / 0.5);
}

.ring-orange-50\/55 {
  --tw-ring-color: rgb(255 247 237 / 0.55);
}

.ring-orange-50\/60 {
  --tw-ring-color: rgb(255 247 237 / 0.6);
}

.ring-orange-50\/65 {
  --tw-ring-color: rgb(255 247 237 / 0.65);
}

.ring-orange-50\/70 {
  --tw-ring-color: rgb(255 247 237 / 0.7);
}

.ring-orange-50\/75 {
  --tw-ring-color: rgb(255 247 237 / 0.75);
}

.ring-orange-50\/80 {
  --tw-ring-color: rgb(255 247 237 / 0.8);
}

.ring-orange-50\/85 {
  --tw-ring-color: rgb(255 247 237 / 0.85);
}

.ring-orange-50\/90 {
  --tw-ring-color: rgb(255 247 237 / 0.9);
}

.ring-orange-50\/95 {
  --tw-ring-color: rgb(255 247 237 / 0.95);
}

.ring-orange-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(249 115 22 / var(--tw-ring-opacity, 1));
}

.ring-orange-500\/0 {
  --tw-ring-color: rgb(249 115 22 / 0);
}

.ring-orange-500\/10 {
  --tw-ring-color: rgb(249 115 22 / 0.1);
}

.ring-orange-500\/100 {
  --tw-ring-color: rgb(249 115 22 / 1);
}

.ring-orange-500\/15 {
  --tw-ring-color: rgb(249 115 22 / 0.15);
}

.ring-orange-500\/20 {
  --tw-ring-color: rgb(249 115 22 / 0.2);
}

.ring-orange-500\/25 {
  --tw-ring-color: rgb(249 115 22 / 0.25);
}

.ring-orange-500\/30 {
  --tw-ring-color: rgb(249 115 22 / 0.3);
}

.ring-orange-500\/35 {
  --tw-ring-color: rgb(249 115 22 / 0.35);
}

.ring-orange-500\/40 {
  --tw-ring-color: rgb(249 115 22 / 0.4);
}

.ring-orange-500\/45 {
  --tw-ring-color: rgb(249 115 22 / 0.45);
}

.ring-orange-500\/5 {
  --tw-ring-color: rgb(249 115 22 / 0.05);
}

.ring-orange-500\/50 {
  --tw-ring-color: rgb(249 115 22 / 0.5);
}

.ring-orange-500\/55 {
  --tw-ring-color: rgb(249 115 22 / 0.55);
}

.ring-orange-500\/60 {
  --tw-ring-color: rgb(249 115 22 / 0.6);
}

.ring-orange-500\/65 {
  --tw-ring-color: rgb(249 115 22 / 0.65);
}

.ring-orange-500\/70 {
  --tw-ring-color: rgb(249 115 22 / 0.7);
}

.ring-orange-500\/75 {
  --tw-ring-color: rgb(249 115 22 / 0.75);
}

.ring-orange-500\/80 {
  --tw-ring-color: rgb(249 115 22 / 0.8);
}

.ring-orange-500\/85 {
  --tw-ring-color: rgb(249 115 22 / 0.85);
}

.ring-orange-500\/90 {
  --tw-ring-color: rgb(249 115 22 / 0.9);
}

.ring-orange-500\/95 {
  --tw-ring-color: rgb(249 115 22 / 0.95);
}

.ring-orange-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(234 88 12 / var(--tw-ring-opacity, 1));
}

.ring-orange-600\/0 {
  --tw-ring-color: rgb(234 88 12 / 0);
}

.ring-orange-600\/10 {
  --tw-ring-color: rgb(234 88 12 / 0.1);
}

.ring-orange-600\/100 {
  --tw-ring-color: rgb(234 88 12 / 1);
}

.ring-orange-600\/15 {
  --tw-ring-color: rgb(234 88 12 / 0.15);
}

.ring-orange-600\/20 {
  --tw-ring-color: rgb(234 88 12 / 0.2);
}

.ring-orange-600\/25 {
  --tw-ring-color: rgb(234 88 12 / 0.25);
}

.ring-orange-600\/30 {
  --tw-ring-color: rgb(234 88 12 / 0.3);
}

.ring-orange-600\/35 {
  --tw-ring-color: rgb(234 88 12 / 0.35);
}

.ring-orange-600\/40 {
  --tw-ring-color: rgb(234 88 12 / 0.4);
}

.ring-orange-600\/45 {
  --tw-ring-color: rgb(234 88 12 / 0.45);
}

.ring-orange-600\/5 {
  --tw-ring-color: rgb(234 88 12 / 0.05);
}

.ring-orange-600\/50 {
  --tw-ring-color: rgb(234 88 12 / 0.5);
}

.ring-orange-600\/55 {
  --tw-ring-color: rgb(234 88 12 / 0.55);
}

.ring-orange-600\/60 {
  --tw-ring-color: rgb(234 88 12 / 0.6);
}

.ring-orange-600\/65 {
  --tw-ring-color: rgb(234 88 12 / 0.65);
}

.ring-orange-600\/70 {
  --tw-ring-color: rgb(234 88 12 / 0.7);
}

.ring-orange-600\/75 {
  --tw-ring-color: rgb(234 88 12 / 0.75);
}

.ring-orange-600\/80 {
  --tw-ring-color: rgb(234 88 12 / 0.8);
}

.ring-orange-600\/85 {
  --tw-ring-color: rgb(234 88 12 / 0.85);
}

.ring-orange-600\/90 {
  --tw-ring-color: rgb(234 88 12 / 0.9);
}

.ring-orange-600\/95 {
  --tw-ring-color: rgb(234 88 12 / 0.95);
}

.ring-orange-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(194 65 12 / var(--tw-ring-opacity, 1));
}

.ring-orange-700\/0 {
  --tw-ring-color: rgb(194 65 12 / 0);
}

.ring-orange-700\/10 {
  --tw-ring-color: rgb(194 65 12 / 0.1);
}

.ring-orange-700\/100 {
  --tw-ring-color: rgb(194 65 12 / 1);
}

.ring-orange-700\/15 {
  --tw-ring-color: rgb(194 65 12 / 0.15);
}

.ring-orange-700\/20 {
  --tw-ring-color: rgb(194 65 12 / 0.2);
}

.ring-orange-700\/25 {
  --tw-ring-color: rgb(194 65 12 / 0.25);
}

.ring-orange-700\/30 {
  --tw-ring-color: rgb(194 65 12 / 0.3);
}

.ring-orange-700\/35 {
  --tw-ring-color: rgb(194 65 12 / 0.35);
}

.ring-orange-700\/40 {
  --tw-ring-color: rgb(194 65 12 / 0.4);
}

.ring-orange-700\/45 {
  --tw-ring-color: rgb(194 65 12 / 0.45);
}

.ring-orange-700\/5 {
  --tw-ring-color: rgb(194 65 12 / 0.05);
}

.ring-orange-700\/50 {
  --tw-ring-color: rgb(194 65 12 / 0.5);
}

.ring-orange-700\/55 {
  --tw-ring-color: rgb(194 65 12 / 0.55);
}

.ring-orange-700\/60 {
  --tw-ring-color: rgb(194 65 12 / 0.6);
}

.ring-orange-700\/65 {
  --tw-ring-color: rgb(194 65 12 / 0.65);
}

.ring-orange-700\/70 {
  --tw-ring-color: rgb(194 65 12 / 0.7);
}

.ring-orange-700\/75 {
  --tw-ring-color: rgb(194 65 12 / 0.75);
}

.ring-orange-700\/80 {
  --tw-ring-color: rgb(194 65 12 / 0.8);
}

.ring-orange-700\/85 {
  --tw-ring-color: rgb(194 65 12 / 0.85);
}

.ring-orange-700\/90 {
  --tw-ring-color: rgb(194 65 12 / 0.9);
}

.ring-orange-700\/95 {
  --tw-ring-color: rgb(194 65 12 / 0.95);
}

.ring-orange-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(154 52 18 / var(--tw-ring-opacity, 1));
}

.ring-orange-800\/0 {
  --tw-ring-color: rgb(154 52 18 / 0);
}

.ring-orange-800\/10 {
  --tw-ring-color: rgb(154 52 18 / 0.1);
}

.ring-orange-800\/100 {
  --tw-ring-color: rgb(154 52 18 / 1);
}

.ring-orange-800\/15 {
  --tw-ring-color: rgb(154 52 18 / 0.15);
}

.ring-orange-800\/20 {
  --tw-ring-color: rgb(154 52 18 / 0.2);
}

.ring-orange-800\/25 {
  --tw-ring-color: rgb(154 52 18 / 0.25);
}

.ring-orange-800\/30 {
  --tw-ring-color: rgb(154 52 18 / 0.3);
}

.ring-orange-800\/35 {
  --tw-ring-color: rgb(154 52 18 / 0.35);
}

.ring-orange-800\/40 {
  --tw-ring-color: rgb(154 52 18 / 0.4);
}

.ring-orange-800\/45 {
  --tw-ring-color: rgb(154 52 18 / 0.45);
}

.ring-orange-800\/5 {
  --tw-ring-color: rgb(154 52 18 / 0.05);
}

.ring-orange-800\/50 {
  --tw-ring-color: rgb(154 52 18 / 0.5);
}

.ring-orange-800\/55 {
  --tw-ring-color: rgb(154 52 18 / 0.55);
}

.ring-orange-800\/60 {
  --tw-ring-color: rgb(154 52 18 / 0.6);
}

.ring-orange-800\/65 {
  --tw-ring-color: rgb(154 52 18 / 0.65);
}

.ring-orange-800\/70 {
  --tw-ring-color: rgb(154 52 18 / 0.7);
}

.ring-orange-800\/75 {
  --tw-ring-color: rgb(154 52 18 / 0.75);
}

.ring-orange-800\/80 {
  --tw-ring-color: rgb(154 52 18 / 0.8);
}

.ring-orange-800\/85 {
  --tw-ring-color: rgb(154 52 18 / 0.85);
}

.ring-orange-800\/90 {
  --tw-ring-color: rgb(154 52 18 / 0.9);
}

.ring-orange-800\/95 {
  --tw-ring-color: rgb(154 52 18 / 0.95);
}

.ring-orange-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(124 45 18 / var(--tw-ring-opacity, 1));
}

.ring-orange-900\/0 {
  --tw-ring-color: rgb(124 45 18 / 0);
}

.ring-orange-900\/10 {
  --tw-ring-color: rgb(124 45 18 / 0.1);
}

.ring-orange-900\/100 {
  --tw-ring-color: rgb(124 45 18 / 1);
}

.ring-orange-900\/15 {
  --tw-ring-color: rgb(124 45 18 / 0.15);
}

.ring-orange-900\/20 {
  --tw-ring-color: rgb(124 45 18 / 0.2);
}

.ring-orange-900\/25 {
  --tw-ring-color: rgb(124 45 18 / 0.25);
}

.ring-orange-900\/30 {
  --tw-ring-color: rgb(124 45 18 / 0.3);
}

.ring-orange-900\/35 {
  --tw-ring-color: rgb(124 45 18 / 0.35);
}

.ring-orange-900\/40 {
  --tw-ring-color: rgb(124 45 18 / 0.4);
}

.ring-orange-900\/45 {
  --tw-ring-color: rgb(124 45 18 / 0.45);
}

.ring-orange-900\/5 {
  --tw-ring-color: rgb(124 45 18 / 0.05);
}

.ring-orange-900\/50 {
  --tw-ring-color: rgb(124 45 18 / 0.5);
}

.ring-orange-900\/55 {
  --tw-ring-color: rgb(124 45 18 / 0.55);
}

.ring-orange-900\/60 {
  --tw-ring-color: rgb(124 45 18 / 0.6);
}

.ring-orange-900\/65 {
  --tw-ring-color: rgb(124 45 18 / 0.65);
}

.ring-orange-900\/70 {
  --tw-ring-color: rgb(124 45 18 / 0.7);
}

.ring-orange-900\/75 {
  --tw-ring-color: rgb(124 45 18 / 0.75);
}

.ring-orange-900\/80 {
  --tw-ring-color: rgb(124 45 18 / 0.8);
}

.ring-orange-900\/85 {
  --tw-ring-color: rgb(124 45 18 / 0.85);
}

.ring-orange-900\/90 {
  --tw-ring-color: rgb(124 45 18 / 0.9);
}

.ring-orange-900\/95 {
  --tw-ring-color: rgb(124 45 18 / 0.95);
}

.ring-primary\/20 {
  --tw-ring-color: rgb(154 64 33 / 0.2);
}

.ring-rose-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 228 230 / var(--tw-ring-opacity, 1));
}

.ring-rose-100\/0 {
  --tw-ring-color: rgb(255 228 230 / 0);
}

.ring-rose-100\/10 {
  --tw-ring-color: rgb(255 228 230 / 0.1);
}

.ring-rose-100\/100 {
  --tw-ring-color: rgb(255 228 230 / 1);
}

.ring-rose-100\/15 {
  --tw-ring-color: rgb(255 228 230 / 0.15);
}

.ring-rose-100\/20 {
  --tw-ring-color: rgb(255 228 230 / 0.2);
}

.ring-rose-100\/25 {
  --tw-ring-color: rgb(255 228 230 / 0.25);
}

.ring-rose-100\/30 {
  --tw-ring-color: rgb(255 228 230 / 0.3);
}

.ring-rose-100\/35 {
  --tw-ring-color: rgb(255 228 230 / 0.35);
}

.ring-rose-100\/40 {
  --tw-ring-color: rgb(255 228 230 / 0.4);
}

.ring-rose-100\/45 {
  --tw-ring-color: rgb(255 228 230 / 0.45);
}

.ring-rose-100\/5 {
  --tw-ring-color: rgb(255 228 230 / 0.05);
}

.ring-rose-100\/50 {
  --tw-ring-color: rgb(255 228 230 / 0.5);
}

.ring-rose-100\/55 {
  --tw-ring-color: rgb(255 228 230 / 0.55);
}

.ring-rose-100\/60 {
  --tw-ring-color: rgb(255 228 230 / 0.6);
}

.ring-rose-100\/65 {
  --tw-ring-color: rgb(255 228 230 / 0.65);
}

.ring-rose-100\/70 {
  --tw-ring-color: rgb(255 228 230 / 0.7);
}

.ring-rose-100\/75 {
  --tw-ring-color: rgb(255 228 230 / 0.75);
}

.ring-rose-100\/80 {
  --tw-ring-color: rgb(255 228 230 / 0.8);
}

.ring-rose-100\/85 {
  --tw-ring-color: rgb(255 228 230 / 0.85);
}

.ring-rose-100\/90 {
  --tw-ring-color: rgb(255 228 230 / 0.9);
}

.ring-rose-100\/95 {
  --tw-ring-color: rgb(255 228 230 / 0.95);
}

.ring-rose-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(254 205 211 / var(--tw-ring-opacity, 1));
}

.ring-rose-200\/0 {
  --tw-ring-color: rgb(254 205 211 / 0);
}

.ring-rose-200\/10 {
  --tw-ring-color: rgb(254 205 211 / 0.1);
}

.ring-rose-200\/100 {
  --tw-ring-color: rgb(254 205 211 / 1);
}

.ring-rose-200\/15 {
  --tw-ring-color: rgb(254 205 211 / 0.15);
}

.ring-rose-200\/20 {
  --tw-ring-color: rgb(254 205 211 / 0.2);
}

.ring-rose-200\/25 {
  --tw-ring-color: rgb(254 205 211 / 0.25);
}

.ring-rose-200\/30 {
  --tw-ring-color: rgb(254 205 211 / 0.3);
}

.ring-rose-200\/35 {
  --tw-ring-color: rgb(254 205 211 / 0.35);
}

.ring-rose-200\/40 {
  --tw-ring-color: rgb(254 205 211 / 0.4);
}

.ring-rose-200\/45 {
  --tw-ring-color: rgb(254 205 211 / 0.45);
}

.ring-rose-200\/5 {
  --tw-ring-color: rgb(254 205 211 / 0.05);
}

.ring-rose-200\/50 {
  --tw-ring-color: rgb(254 205 211 / 0.5);
}

.ring-rose-200\/55 {
  --tw-ring-color: rgb(254 205 211 / 0.55);
}

.ring-rose-200\/60 {
  --tw-ring-color: rgb(254 205 211 / 0.6);
}

.ring-rose-200\/65 {
  --tw-ring-color: rgb(254 205 211 / 0.65);
}

.ring-rose-200\/70 {
  --tw-ring-color: rgb(254 205 211 / 0.7);
}

.ring-rose-200\/75 {
  --tw-ring-color: rgb(254 205 211 / 0.75);
}

.ring-rose-200\/80 {
  --tw-ring-color: rgb(254 205 211 / 0.8);
}

.ring-rose-200\/85 {
  --tw-ring-color: rgb(254 205 211 / 0.85);
}

.ring-rose-200\/90 {
  --tw-ring-color: rgb(254 205 211 / 0.9);
}

.ring-rose-200\/95 {
  --tw-ring-color: rgb(254 205 211 / 0.95);
}

.ring-rose-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(253 164 175 / var(--tw-ring-opacity, 1));
}

.ring-rose-300\/0 {
  --tw-ring-color: rgb(253 164 175 / 0);
}

.ring-rose-300\/10 {
  --tw-ring-color: rgb(253 164 175 / 0.1);
}

.ring-rose-300\/100 {
  --tw-ring-color: rgb(253 164 175 / 1);
}

.ring-rose-300\/15 {
  --tw-ring-color: rgb(253 164 175 / 0.15);
}

.ring-rose-300\/20 {
  --tw-ring-color: rgb(253 164 175 / 0.2);
}

.ring-rose-300\/25 {
  --tw-ring-color: rgb(253 164 175 / 0.25);
}

.ring-rose-300\/30 {
  --tw-ring-color: rgb(253 164 175 / 0.3);
}

.ring-rose-300\/35 {
  --tw-ring-color: rgb(253 164 175 / 0.35);
}

.ring-rose-300\/40 {
  --tw-ring-color: rgb(253 164 175 / 0.4);
}

.ring-rose-300\/45 {
  --tw-ring-color: rgb(253 164 175 / 0.45);
}

.ring-rose-300\/5 {
  --tw-ring-color: rgb(253 164 175 / 0.05);
}

.ring-rose-300\/50 {
  --tw-ring-color: rgb(253 164 175 / 0.5);
}

.ring-rose-300\/55 {
  --tw-ring-color: rgb(253 164 175 / 0.55);
}

.ring-rose-300\/60 {
  --tw-ring-color: rgb(253 164 175 / 0.6);
}

.ring-rose-300\/65 {
  --tw-ring-color: rgb(253 164 175 / 0.65);
}

.ring-rose-300\/70 {
  --tw-ring-color: rgb(253 164 175 / 0.7);
}

.ring-rose-300\/75 {
  --tw-ring-color: rgb(253 164 175 / 0.75);
}

.ring-rose-300\/80 {
  --tw-ring-color: rgb(253 164 175 / 0.8);
}

.ring-rose-300\/85 {
  --tw-ring-color: rgb(253 164 175 / 0.85);
}

.ring-rose-300\/90 {
  --tw-ring-color: rgb(253 164 175 / 0.9);
}

.ring-rose-300\/95 {
  --tw-ring-color: rgb(253 164 175 / 0.95);
}

.ring-rose-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(251 113 133 / var(--tw-ring-opacity, 1));
}

.ring-rose-400\/0 {
  --tw-ring-color: rgb(251 113 133 / 0);
}

.ring-rose-400\/10 {
  --tw-ring-color: rgb(251 113 133 / 0.1);
}

.ring-rose-400\/100 {
  --tw-ring-color: rgb(251 113 133 / 1);
}

.ring-rose-400\/15 {
  --tw-ring-color: rgb(251 113 133 / 0.15);
}

.ring-rose-400\/20 {
  --tw-ring-color: rgb(251 113 133 / 0.2);
}

.ring-rose-400\/25 {
  --tw-ring-color: rgb(251 113 133 / 0.25);
}

.ring-rose-400\/30 {
  --tw-ring-color: rgb(251 113 133 / 0.3);
}

.ring-rose-400\/35 {
  --tw-ring-color: rgb(251 113 133 / 0.35);
}

.ring-rose-400\/40 {
  --tw-ring-color: rgb(251 113 133 / 0.4);
}

.ring-rose-400\/45 {
  --tw-ring-color: rgb(251 113 133 / 0.45);
}

.ring-rose-400\/5 {
  --tw-ring-color: rgb(251 113 133 / 0.05);
}

.ring-rose-400\/50 {
  --tw-ring-color: rgb(251 113 133 / 0.5);
}

.ring-rose-400\/55 {
  --tw-ring-color: rgb(251 113 133 / 0.55);
}

.ring-rose-400\/60 {
  --tw-ring-color: rgb(251 113 133 / 0.6);
}

.ring-rose-400\/65 {
  --tw-ring-color: rgb(251 113 133 / 0.65);
}

.ring-rose-400\/70 {
  --tw-ring-color: rgb(251 113 133 / 0.7);
}

.ring-rose-400\/75 {
  --tw-ring-color: rgb(251 113 133 / 0.75);
}

.ring-rose-400\/80 {
  --tw-ring-color: rgb(251 113 133 / 0.8);
}

.ring-rose-400\/85 {
  --tw-ring-color: rgb(251 113 133 / 0.85);
}

.ring-rose-400\/90 {
  --tw-ring-color: rgb(251 113 133 / 0.9);
}

.ring-rose-400\/95 {
  --tw-ring-color: rgb(251 113 133 / 0.95);
}

.ring-rose-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 241 242 / var(--tw-ring-opacity, 1));
}

.ring-rose-50\/0 {
  --tw-ring-color: rgb(255 241 242 / 0);
}

.ring-rose-50\/10 {
  --tw-ring-color: rgb(255 241 242 / 0.1);
}

.ring-rose-50\/100 {
  --tw-ring-color: rgb(255 241 242 / 1);
}

.ring-rose-50\/15 {
  --tw-ring-color: rgb(255 241 242 / 0.15);
}

.ring-rose-50\/20 {
  --tw-ring-color: rgb(255 241 242 / 0.2);
}

.ring-rose-50\/25 {
  --tw-ring-color: rgb(255 241 242 / 0.25);
}

.ring-rose-50\/30 {
  --tw-ring-color: rgb(255 241 242 / 0.3);
}

.ring-rose-50\/35 {
  --tw-ring-color: rgb(255 241 242 / 0.35);
}

.ring-rose-50\/40 {
  --tw-ring-color: rgb(255 241 242 / 0.4);
}

.ring-rose-50\/45 {
  --tw-ring-color: rgb(255 241 242 / 0.45);
}

.ring-rose-50\/5 {
  --tw-ring-color: rgb(255 241 242 / 0.05);
}

.ring-rose-50\/50 {
  --tw-ring-color: rgb(255 241 242 / 0.5);
}

.ring-rose-50\/55 {
  --tw-ring-color: rgb(255 241 242 / 0.55);
}

.ring-rose-50\/60 {
  --tw-ring-color: rgb(255 241 242 / 0.6);
}

.ring-rose-50\/65 {
  --tw-ring-color: rgb(255 241 242 / 0.65);
}

.ring-rose-50\/70 {
  --tw-ring-color: rgb(255 241 242 / 0.7);
}

.ring-rose-50\/75 {
  --tw-ring-color: rgb(255 241 242 / 0.75);
}

.ring-rose-50\/80 {
  --tw-ring-color: rgb(255 241 242 / 0.8);
}

.ring-rose-50\/85 {
  --tw-ring-color: rgb(255 241 242 / 0.85);
}

.ring-rose-50\/90 {
  --tw-ring-color: rgb(255 241 242 / 0.9);
}

.ring-rose-50\/95 {
  --tw-ring-color: rgb(255 241 242 / 0.95);
}

.ring-rose-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(244 63 94 / var(--tw-ring-opacity, 1));
}

.ring-rose-500\/0 {
  --tw-ring-color: rgb(244 63 94 / 0);
}

.ring-rose-500\/10 {
  --tw-ring-color: rgb(244 63 94 / 0.1);
}

.ring-rose-500\/100 {
  --tw-ring-color: rgb(244 63 94 / 1);
}

.ring-rose-500\/15 {
  --tw-ring-color: rgb(244 63 94 / 0.15);
}

.ring-rose-500\/20 {
  --tw-ring-color: rgb(244 63 94 / 0.2);
}

.ring-rose-500\/25 {
  --tw-ring-color: rgb(244 63 94 / 0.25);
}

.ring-rose-500\/30 {
  --tw-ring-color: rgb(244 63 94 / 0.3);
}

.ring-rose-500\/35 {
  --tw-ring-color: rgb(244 63 94 / 0.35);
}

.ring-rose-500\/40 {
  --tw-ring-color: rgb(244 63 94 / 0.4);
}

.ring-rose-500\/45 {
  --tw-ring-color: rgb(244 63 94 / 0.45);
}

.ring-rose-500\/5 {
  --tw-ring-color: rgb(244 63 94 / 0.05);
}

.ring-rose-500\/50 {
  --tw-ring-color: rgb(244 63 94 / 0.5);
}

.ring-rose-500\/55 {
  --tw-ring-color: rgb(244 63 94 / 0.55);
}

.ring-rose-500\/60 {
  --tw-ring-color: rgb(244 63 94 / 0.6);
}

.ring-rose-500\/65 {
  --tw-ring-color: rgb(244 63 94 / 0.65);
}

.ring-rose-500\/70 {
  --tw-ring-color: rgb(244 63 94 / 0.7);
}

.ring-rose-500\/75 {
  --tw-ring-color: rgb(244 63 94 / 0.75);
}

.ring-rose-500\/80 {
  --tw-ring-color: rgb(244 63 94 / 0.8);
}

.ring-rose-500\/85 {
  --tw-ring-color: rgb(244 63 94 / 0.85);
}

.ring-rose-500\/90 {
  --tw-ring-color: rgb(244 63 94 / 0.9);
}

.ring-rose-500\/95 {
  --tw-ring-color: rgb(244 63 94 / 0.95);
}

.ring-rose-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(225 29 72 / var(--tw-ring-opacity, 1));
}

.ring-rose-600\/0 {
  --tw-ring-color: rgb(225 29 72 / 0);
}

.ring-rose-600\/10 {
  --tw-ring-color: rgb(225 29 72 / 0.1);
}

.ring-rose-600\/100 {
  --tw-ring-color: rgb(225 29 72 / 1);
}

.ring-rose-600\/15 {
  --tw-ring-color: rgb(225 29 72 / 0.15);
}

.ring-rose-600\/20 {
  --tw-ring-color: rgb(225 29 72 / 0.2);
}

.ring-rose-600\/25 {
  --tw-ring-color: rgb(225 29 72 / 0.25);
}

.ring-rose-600\/30 {
  --tw-ring-color: rgb(225 29 72 / 0.3);
}

.ring-rose-600\/35 {
  --tw-ring-color: rgb(225 29 72 / 0.35);
}

.ring-rose-600\/40 {
  --tw-ring-color: rgb(225 29 72 / 0.4);
}

.ring-rose-600\/45 {
  --tw-ring-color: rgb(225 29 72 / 0.45);
}

.ring-rose-600\/5 {
  --tw-ring-color: rgb(225 29 72 / 0.05);
}

.ring-rose-600\/50 {
  --tw-ring-color: rgb(225 29 72 / 0.5);
}

.ring-rose-600\/55 {
  --tw-ring-color: rgb(225 29 72 / 0.55);
}

.ring-rose-600\/60 {
  --tw-ring-color: rgb(225 29 72 / 0.6);
}

.ring-rose-600\/65 {
  --tw-ring-color: rgb(225 29 72 / 0.65);
}

.ring-rose-600\/70 {
  --tw-ring-color: rgb(225 29 72 / 0.7);
}

.ring-rose-600\/75 {
  --tw-ring-color: rgb(225 29 72 / 0.75);
}

.ring-rose-600\/80 {
  --tw-ring-color: rgb(225 29 72 / 0.8);
}

.ring-rose-600\/85 {
  --tw-ring-color: rgb(225 29 72 / 0.85);
}

.ring-rose-600\/90 {
  --tw-ring-color: rgb(225 29 72 / 0.9);
}

.ring-rose-600\/95 {
  --tw-ring-color: rgb(225 29 72 / 0.95);
}

.ring-rose-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(190 18 60 / var(--tw-ring-opacity, 1));
}

.ring-rose-700\/0 {
  --tw-ring-color: rgb(190 18 60 / 0);
}

.ring-rose-700\/10 {
  --tw-ring-color: rgb(190 18 60 / 0.1);
}

.ring-rose-700\/100 {
  --tw-ring-color: rgb(190 18 60 / 1);
}

.ring-rose-700\/15 {
  --tw-ring-color: rgb(190 18 60 / 0.15);
}

.ring-rose-700\/20 {
  --tw-ring-color: rgb(190 18 60 / 0.2);
}

.ring-rose-700\/25 {
  --tw-ring-color: rgb(190 18 60 / 0.25);
}

.ring-rose-700\/30 {
  --tw-ring-color: rgb(190 18 60 / 0.3);
}

.ring-rose-700\/35 {
  --tw-ring-color: rgb(190 18 60 / 0.35);
}

.ring-rose-700\/40 {
  --tw-ring-color: rgb(190 18 60 / 0.4);
}

.ring-rose-700\/45 {
  --tw-ring-color: rgb(190 18 60 / 0.45);
}

.ring-rose-700\/5 {
  --tw-ring-color: rgb(190 18 60 / 0.05);
}

.ring-rose-700\/50 {
  --tw-ring-color: rgb(190 18 60 / 0.5);
}

.ring-rose-700\/55 {
  --tw-ring-color: rgb(190 18 60 / 0.55);
}

.ring-rose-700\/60 {
  --tw-ring-color: rgb(190 18 60 / 0.6);
}

.ring-rose-700\/65 {
  --tw-ring-color: rgb(190 18 60 / 0.65);
}

.ring-rose-700\/70 {
  --tw-ring-color: rgb(190 18 60 / 0.7);
}

.ring-rose-700\/75 {
  --tw-ring-color: rgb(190 18 60 / 0.75);
}

.ring-rose-700\/80 {
  --tw-ring-color: rgb(190 18 60 / 0.8);
}

.ring-rose-700\/85 {
  --tw-ring-color: rgb(190 18 60 / 0.85);
}

.ring-rose-700\/90 {
  --tw-ring-color: rgb(190 18 60 / 0.9);
}

.ring-rose-700\/95 {
  --tw-ring-color: rgb(190 18 60 / 0.95);
}

.ring-rose-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(159 18 57 / var(--tw-ring-opacity, 1));
}

.ring-rose-800\/0 {
  --tw-ring-color: rgb(159 18 57 / 0);
}

.ring-rose-800\/10 {
  --tw-ring-color: rgb(159 18 57 / 0.1);
}

.ring-rose-800\/100 {
  --tw-ring-color: rgb(159 18 57 / 1);
}

.ring-rose-800\/15 {
  --tw-ring-color: rgb(159 18 57 / 0.15);
}

.ring-rose-800\/20 {
  --tw-ring-color: rgb(159 18 57 / 0.2);
}

.ring-rose-800\/25 {
  --tw-ring-color: rgb(159 18 57 / 0.25);
}

.ring-rose-800\/30 {
  --tw-ring-color: rgb(159 18 57 / 0.3);
}

.ring-rose-800\/35 {
  --tw-ring-color: rgb(159 18 57 / 0.35);
}

.ring-rose-800\/40 {
  --tw-ring-color: rgb(159 18 57 / 0.4);
}

.ring-rose-800\/45 {
  --tw-ring-color: rgb(159 18 57 / 0.45);
}

.ring-rose-800\/5 {
  --tw-ring-color: rgb(159 18 57 / 0.05);
}

.ring-rose-800\/50 {
  --tw-ring-color: rgb(159 18 57 / 0.5);
}

.ring-rose-800\/55 {
  --tw-ring-color: rgb(159 18 57 / 0.55);
}

.ring-rose-800\/60 {
  --tw-ring-color: rgb(159 18 57 / 0.6);
}

.ring-rose-800\/65 {
  --tw-ring-color: rgb(159 18 57 / 0.65);
}

.ring-rose-800\/70 {
  --tw-ring-color: rgb(159 18 57 / 0.7);
}

.ring-rose-800\/75 {
  --tw-ring-color: rgb(159 18 57 / 0.75);
}

.ring-rose-800\/80 {
  --tw-ring-color: rgb(159 18 57 / 0.8);
}

.ring-rose-800\/85 {
  --tw-ring-color: rgb(159 18 57 / 0.85);
}

.ring-rose-800\/90 {
  --tw-ring-color: rgb(159 18 57 / 0.9);
}

.ring-rose-800\/95 {
  --tw-ring-color: rgb(159 18 57 / 0.95);
}

.ring-rose-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(136 19 55 / var(--tw-ring-opacity, 1));
}

.ring-rose-900\/0 {
  --tw-ring-color: rgb(136 19 55 / 0);
}

.ring-rose-900\/10 {
  --tw-ring-color: rgb(136 19 55 / 0.1);
}

.ring-rose-900\/100 {
  --tw-ring-color: rgb(136 19 55 / 1);
}

.ring-rose-900\/15 {
  --tw-ring-color: rgb(136 19 55 / 0.15);
}

.ring-rose-900\/20 {
  --tw-ring-color: rgb(136 19 55 / 0.2);
}

.ring-rose-900\/25 {
  --tw-ring-color: rgb(136 19 55 / 0.25);
}

.ring-rose-900\/30 {
  --tw-ring-color: rgb(136 19 55 / 0.3);
}

.ring-rose-900\/35 {
  --tw-ring-color: rgb(136 19 55 / 0.35);
}

.ring-rose-900\/40 {
  --tw-ring-color: rgb(136 19 55 / 0.4);
}

.ring-rose-900\/45 {
  --tw-ring-color: rgb(136 19 55 / 0.45);
}

.ring-rose-900\/5 {
  --tw-ring-color: rgb(136 19 55 / 0.05);
}

.ring-rose-900\/50 {
  --tw-ring-color: rgb(136 19 55 / 0.5);
}

.ring-rose-900\/55 {
  --tw-ring-color: rgb(136 19 55 / 0.55);
}

.ring-rose-900\/60 {
  --tw-ring-color: rgb(136 19 55 / 0.6);
}

.ring-rose-900\/65 {
  --tw-ring-color: rgb(136 19 55 / 0.65);
}

.ring-rose-900\/70 {
  --tw-ring-color: rgb(136 19 55 / 0.7);
}

.ring-rose-900\/75 {
  --tw-ring-color: rgb(136 19 55 / 0.75);
}

.ring-rose-900\/80 {
  --tw-ring-color: rgb(136 19 55 / 0.8);
}

.ring-rose-900\/85 {
  --tw-ring-color: rgb(136 19 55 / 0.85);
}

.ring-rose-900\/90 {
  --tw-ring-color: rgb(136 19 55 / 0.9);
}

.ring-rose-900\/95 {
  --tw-ring-color: rgb(136 19 55 / 0.95);
}

.ring-sky-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(224 242 254 / var(--tw-ring-opacity, 1));
}

.ring-sky-100\/0 {
  --tw-ring-color: rgb(224 242 254 / 0);
}

.ring-sky-100\/10 {
  --tw-ring-color: rgb(224 242 254 / 0.1);
}

.ring-sky-100\/100 {
  --tw-ring-color: rgb(224 242 254 / 1);
}

.ring-sky-100\/15 {
  --tw-ring-color: rgb(224 242 254 / 0.15);
}

.ring-sky-100\/20 {
  --tw-ring-color: rgb(224 242 254 / 0.2);
}

.ring-sky-100\/25 {
  --tw-ring-color: rgb(224 242 254 / 0.25);
}

.ring-sky-100\/30 {
  --tw-ring-color: rgb(224 242 254 / 0.3);
}

.ring-sky-100\/35 {
  --tw-ring-color: rgb(224 242 254 / 0.35);
}

.ring-sky-100\/40 {
  --tw-ring-color: rgb(224 242 254 / 0.4);
}

.ring-sky-100\/45 {
  --tw-ring-color: rgb(224 242 254 / 0.45);
}

.ring-sky-100\/5 {
  --tw-ring-color: rgb(224 242 254 / 0.05);
}

.ring-sky-100\/50 {
  --tw-ring-color: rgb(224 242 254 / 0.5);
}

.ring-sky-100\/55 {
  --tw-ring-color: rgb(224 242 254 / 0.55);
}

.ring-sky-100\/60 {
  --tw-ring-color: rgb(224 242 254 / 0.6);
}

.ring-sky-100\/65 {
  --tw-ring-color: rgb(224 242 254 / 0.65);
}

.ring-sky-100\/70 {
  --tw-ring-color: rgb(224 242 254 / 0.7);
}

.ring-sky-100\/75 {
  --tw-ring-color: rgb(224 242 254 / 0.75);
}

.ring-sky-100\/80 {
  --tw-ring-color: rgb(224 242 254 / 0.8);
}

.ring-sky-100\/85 {
  --tw-ring-color: rgb(224 242 254 / 0.85);
}

.ring-sky-100\/90 {
  --tw-ring-color: rgb(224 242 254 / 0.9);
}

.ring-sky-100\/95 {
  --tw-ring-color: rgb(224 242 254 / 0.95);
}

.ring-sky-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(186 230 253 / var(--tw-ring-opacity, 1));
}

.ring-sky-200\/0 {
  --tw-ring-color: rgb(186 230 253 / 0);
}

.ring-sky-200\/10 {
  --tw-ring-color: rgb(186 230 253 / 0.1);
}

.ring-sky-200\/100 {
  --tw-ring-color: rgb(186 230 253 / 1);
}

.ring-sky-200\/15 {
  --tw-ring-color: rgb(186 230 253 / 0.15);
}

.ring-sky-200\/20 {
  --tw-ring-color: rgb(186 230 253 / 0.2);
}

.ring-sky-200\/25 {
  --tw-ring-color: rgb(186 230 253 / 0.25);
}

.ring-sky-200\/30 {
  --tw-ring-color: rgb(186 230 253 / 0.3);
}

.ring-sky-200\/35 {
  --tw-ring-color: rgb(186 230 253 / 0.35);
}

.ring-sky-200\/40 {
  --tw-ring-color: rgb(186 230 253 / 0.4);
}

.ring-sky-200\/45 {
  --tw-ring-color: rgb(186 230 253 / 0.45);
}

.ring-sky-200\/5 {
  --tw-ring-color: rgb(186 230 253 / 0.05);
}

.ring-sky-200\/50 {
  --tw-ring-color: rgb(186 230 253 / 0.5);
}

.ring-sky-200\/55 {
  --tw-ring-color: rgb(186 230 253 / 0.55);
}

.ring-sky-200\/60 {
  --tw-ring-color: rgb(186 230 253 / 0.6);
}

.ring-sky-200\/65 {
  --tw-ring-color: rgb(186 230 253 / 0.65);
}

.ring-sky-200\/70 {
  --tw-ring-color: rgb(186 230 253 / 0.7);
}

.ring-sky-200\/75 {
  --tw-ring-color: rgb(186 230 253 / 0.75);
}

.ring-sky-200\/80 {
  --tw-ring-color: rgb(186 230 253 / 0.8);
}

.ring-sky-200\/85 {
  --tw-ring-color: rgb(186 230 253 / 0.85);
}

.ring-sky-200\/90 {
  --tw-ring-color: rgb(186 230 253 / 0.9);
}

.ring-sky-200\/95 {
  --tw-ring-color: rgb(186 230 253 / 0.95);
}

.ring-sky-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(125 211 252 / var(--tw-ring-opacity, 1));
}

.ring-sky-300\/0 {
  --tw-ring-color: rgb(125 211 252 / 0);
}

.ring-sky-300\/10 {
  --tw-ring-color: rgb(125 211 252 / 0.1);
}

.ring-sky-300\/100 {
  --tw-ring-color: rgb(125 211 252 / 1);
}

.ring-sky-300\/15 {
  --tw-ring-color: rgb(125 211 252 / 0.15);
}

.ring-sky-300\/20 {
  --tw-ring-color: rgb(125 211 252 / 0.2);
}

.ring-sky-300\/25 {
  --tw-ring-color: rgb(125 211 252 / 0.25);
}

.ring-sky-300\/30 {
  --tw-ring-color: rgb(125 211 252 / 0.3);
}

.ring-sky-300\/35 {
  --tw-ring-color: rgb(125 211 252 / 0.35);
}

.ring-sky-300\/40 {
  --tw-ring-color: rgb(125 211 252 / 0.4);
}

.ring-sky-300\/45 {
  --tw-ring-color: rgb(125 211 252 / 0.45);
}

.ring-sky-300\/5 {
  --tw-ring-color: rgb(125 211 252 / 0.05);
}

.ring-sky-300\/50 {
  --tw-ring-color: rgb(125 211 252 / 0.5);
}

.ring-sky-300\/55 {
  --tw-ring-color: rgb(125 211 252 / 0.55);
}

.ring-sky-300\/60 {
  --tw-ring-color: rgb(125 211 252 / 0.6);
}

.ring-sky-300\/65 {
  --tw-ring-color: rgb(125 211 252 / 0.65);
}

.ring-sky-300\/70 {
  --tw-ring-color: rgb(125 211 252 / 0.7);
}

.ring-sky-300\/75 {
  --tw-ring-color: rgb(125 211 252 / 0.75);
}

.ring-sky-300\/80 {
  --tw-ring-color: rgb(125 211 252 / 0.8);
}

.ring-sky-300\/85 {
  --tw-ring-color: rgb(125 211 252 / 0.85);
}

.ring-sky-300\/90 {
  --tw-ring-color: rgb(125 211 252 / 0.9);
}

.ring-sky-300\/95 {
  --tw-ring-color: rgb(125 211 252 / 0.95);
}

.ring-sky-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(56 189 248 / var(--tw-ring-opacity, 1));
}

.ring-sky-400\/0 {
  --tw-ring-color: rgb(56 189 248 / 0);
}

.ring-sky-400\/10 {
  --tw-ring-color: rgb(56 189 248 / 0.1);
}

.ring-sky-400\/100 {
  --tw-ring-color: rgb(56 189 248 / 1);
}

.ring-sky-400\/15 {
  --tw-ring-color: rgb(56 189 248 / 0.15);
}

.ring-sky-400\/20 {
  --tw-ring-color: rgb(56 189 248 / 0.2);
}

.ring-sky-400\/25 {
  --tw-ring-color: rgb(56 189 248 / 0.25);
}

.ring-sky-400\/30 {
  --tw-ring-color: rgb(56 189 248 / 0.3);
}

.ring-sky-400\/35 {
  --tw-ring-color: rgb(56 189 248 / 0.35);
}

.ring-sky-400\/40 {
  --tw-ring-color: rgb(56 189 248 / 0.4);
}

.ring-sky-400\/45 {
  --tw-ring-color: rgb(56 189 248 / 0.45);
}

.ring-sky-400\/5 {
  --tw-ring-color: rgb(56 189 248 / 0.05);
}

.ring-sky-400\/50 {
  --tw-ring-color: rgb(56 189 248 / 0.5);
}

.ring-sky-400\/55 {
  --tw-ring-color: rgb(56 189 248 / 0.55);
}

.ring-sky-400\/60 {
  --tw-ring-color: rgb(56 189 248 / 0.6);
}

.ring-sky-400\/65 {
  --tw-ring-color: rgb(56 189 248 / 0.65);
}

.ring-sky-400\/70 {
  --tw-ring-color: rgb(56 189 248 / 0.7);
}

.ring-sky-400\/75 {
  --tw-ring-color: rgb(56 189 248 / 0.75);
}

.ring-sky-400\/80 {
  --tw-ring-color: rgb(56 189 248 / 0.8);
}

.ring-sky-400\/85 {
  --tw-ring-color: rgb(56 189 248 / 0.85);
}

.ring-sky-400\/90 {
  --tw-ring-color: rgb(56 189 248 / 0.9);
}

.ring-sky-400\/95 {
  --tw-ring-color: rgb(56 189 248 / 0.95);
}

.ring-sky-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(240 249 255 / var(--tw-ring-opacity, 1));
}

.ring-sky-50\/0 {
  --tw-ring-color: rgb(240 249 255 / 0);
}

.ring-sky-50\/10 {
  --tw-ring-color: rgb(240 249 255 / 0.1);
}

.ring-sky-50\/100 {
  --tw-ring-color: rgb(240 249 255 / 1);
}

.ring-sky-50\/15 {
  --tw-ring-color: rgb(240 249 255 / 0.15);
}

.ring-sky-50\/20 {
  --tw-ring-color: rgb(240 249 255 / 0.2);
}

.ring-sky-50\/25 {
  --tw-ring-color: rgb(240 249 255 / 0.25);
}

.ring-sky-50\/30 {
  --tw-ring-color: rgb(240 249 255 / 0.3);
}

.ring-sky-50\/35 {
  --tw-ring-color: rgb(240 249 255 / 0.35);
}

.ring-sky-50\/40 {
  --tw-ring-color: rgb(240 249 255 / 0.4);
}

.ring-sky-50\/45 {
  --tw-ring-color: rgb(240 249 255 / 0.45);
}

.ring-sky-50\/5 {
  --tw-ring-color: rgb(240 249 255 / 0.05);
}

.ring-sky-50\/50 {
  --tw-ring-color: rgb(240 249 255 / 0.5);
}

.ring-sky-50\/55 {
  --tw-ring-color: rgb(240 249 255 / 0.55);
}

.ring-sky-50\/60 {
  --tw-ring-color: rgb(240 249 255 / 0.6);
}

.ring-sky-50\/65 {
  --tw-ring-color: rgb(240 249 255 / 0.65);
}

.ring-sky-50\/70 {
  --tw-ring-color: rgb(240 249 255 / 0.7);
}

.ring-sky-50\/75 {
  --tw-ring-color: rgb(240 249 255 / 0.75);
}

.ring-sky-50\/80 {
  --tw-ring-color: rgb(240 249 255 / 0.8);
}

.ring-sky-50\/85 {
  --tw-ring-color: rgb(240 249 255 / 0.85);
}

.ring-sky-50\/90 {
  --tw-ring-color: rgb(240 249 255 / 0.9);
}

.ring-sky-50\/95 {
  --tw-ring-color: rgb(240 249 255 / 0.95);
}

.ring-sky-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(14 165 233 / var(--tw-ring-opacity, 1));
}

.ring-sky-500\/0 {
  --tw-ring-color: rgb(14 165 233 / 0);
}

.ring-sky-500\/10 {
  --tw-ring-color: rgb(14 165 233 / 0.1);
}

.ring-sky-500\/100 {
  --tw-ring-color: rgb(14 165 233 / 1);
}

.ring-sky-500\/15 {
  --tw-ring-color: rgb(14 165 233 / 0.15);
}

.ring-sky-500\/20 {
  --tw-ring-color: rgb(14 165 233 / 0.2);
}

.ring-sky-500\/25 {
  --tw-ring-color: rgb(14 165 233 / 0.25);
}

.ring-sky-500\/30 {
  --tw-ring-color: rgb(14 165 233 / 0.3);
}

.ring-sky-500\/35 {
  --tw-ring-color: rgb(14 165 233 / 0.35);
}

.ring-sky-500\/40 {
  --tw-ring-color: rgb(14 165 233 / 0.4);
}

.ring-sky-500\/45 {
  --tw-ring-color: rgb(14 165 233 / 0.45);
}

.ring-sky-500\/5 {
  --tw-ring-color: rgb(14 165 233 / 0.05);
}

.ring-sky-500\/50 {
  --tw-ring-color: rgb(14 165 233 / 0.5);
}

.ring-sky-500\/55 {
  --tw-ring-color: rgb(14 165 233 / 0.55);
}

.ring-sky-500\/60 {
  --tw-ring-color: rgb(14 165 233 / 0.6);
}

.ring-sky-500\/65 {
  --tw-ring-color: rgb(14 165 233 / 0.65);
}

.ring-sky-500\/70 {
  --tw-ring-color: rgb(14 165 233 / 0.7);
}

.ring-sky-500\/75 {
  --tw-ring-color: rgb(14 165 233 / 0.75);
}

.ring-sky-500\/80 {
  --tw-ring-color: rgb(14 165 233 / 0.8);
}

.ring-sky-500\/85 {
  --tw-ring-color: rgb(14 165 233 / 0.85);
}

.ring-sky-500\/90 {
  --tw-ring-color: rgb(14 165 233 / 0.9);
}

.ring-sky-500\/95 {
  --tw-ring-color: rgb(14 165 233 / 0.95);
}

.ring-sky-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(2 132 199 / var(--tw-ring-opacity, 1));
}

.ring-sky-600\/0 {
  --tw-ring-color: rgb(2 132 199 / 0);
}

.ring-sky-600\/10 {
  --tw-ring-color: rgb(2 132 199 / 0.1);
}

.ring-sky-600\/100 {
  --tw-ring-color: rgb(2 132 199 / 1);
}

.ring-sky-600\/15 {
  --tw-ring-color: rgb(2 132 199 / 0.15);
}

.ring-sky-600\/20 {
  --tw-ring-color: rgb(2 132 199 / 0.2);
}

.ring-sky-600\/25 {
  --tw-ring-color: rgb(2 132 199 / 0.25);
}

.ring-sky-600\/30 {
  --tw-ring-color: rgb(2 132 199 / 0.3);
}

.ring-sky-600\/35 {
  --tw-ring-color: rgb(2 132 199 / 0.35);
}

.ring-sky-600\/40 {
  --tw-ring-color: rgb(2 132 199 / 0.4);
}

.ring-sky-600\/45 {
  --tw-ring-color: rgb(2 132 199 / 0.45);
}

.ring-sky-600\/5 {
  --tw-ring-color: rgb(2 132 199 / 0.05);
}

.ring-sky-600\/50 {
  --tw-ring-color: rgb(2 132 199 / 0.5);
}

.ring-sky-600\/55 {
  --tw-ring-color: rgb(2 132 199 / 0.55);
}

.ring-sky-600\/60 {
  --tw-ring-color: rgb(2 132 199 / 0.6);
}

.ring-sky-600\/65 {
  --tw-ring-color: rgb(2 132 199 / 0.65);
}

.ring-sky-600\/70 {
  --tw-ring-color: rgb(2 132 199 / 0.7);
}

.ring-sky-600\/75 {
  --tw-ring-color: rgb(2 132 199 / 0.75);
}

.ring-sky-600\/80 {
  --tw-ring-color: rgb(2 132 199 / 0.8);
}

.ring-sky-600\/85 {
  --tw-ring-color: rgb(2 132 199 / 0.85);
}

.ring-sky-600\/90 {
  --tw-ring-color: rgb(2 132 199 / 0.9);
}

.ring-sky-600\/95 {
  --tw-ring-color: rgb(2 132 199 / 0.95);
}

.ring-sky-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(3 105 161 / var(--tw-ring-opacity, 1));
}

.ring-sky-700\/0 {
  --tw-ring-color: rgb(3 105 161 / 0);
}

.ring-sky-700\/10 {
  --tw-ring-color: rgb(3 105 161 / 0.1);
}

.ring-sky-700\/100 {
  --tw-ring-color: rgb(3 105 161 / 1);
}

.ring-sky-700\/15 {
  --tw-ring-color: rgb(3 105 161 / 0.15);
}

.ring-sky-700\/20 {
  --tw-ring-color: rgb(3 105 161 / 0.2);
}

.ring-sky-700\/25 {
  --tw-ring-color: rgb(3 105 161 / 0.25);
}

.ring-sky-700\/30 {
  --tw-ring-color: rgb(3 105 161 / 0.3);
}

.ring-sky-700\/35 {
  --tw-ring-color: rgb(3 105 161 / 0.35);
}

.ring-sky-700\/40 {
  --tw-ring-color: rgb(3 105 161 / 0.4);
}

.ring-sky-700\/45 {
  --tw-ring-color: rgb(3 105 161 / 0.45);
}

.ring-sky-700\/5 {
  --tw-ring-color: rgb(3 105 161 / 0.05);
}

.ring-sky-700\/50 {
  --tw-ring-color: rgb(3 105 161 / 0.5);
}

.ring-sky-700\/55 {
  --tw-ring-color: rgb(3 105 161 / 0.55);
}

.ring-sky-700\/60 {
  --tw-ring-color: rgb(3 105 161 / 0.6);
}

.ring-sky-700\/65 {
  --tw-ring-color: rgb(3 105 161 / 0.65);
}

.ring-sky-700\/70 {
  --tw-ring-color: rgb(3 105 161 / 0.7);
}

.ring-sky-700\/75 {
  --tw-ring-color: rgb(3 105 161 / 0.75);
}

.ring-sky-700\/80 {
  --tw-ring-color: rgb(3 105 161 / 0.8);
}

.ring-sky-700\/85 {
  --tw-ring-color: rgb(3 105 161 / 0.85);
}

.ring-sky-700\/90 {
  --tw-ring-color: rgb(3 105 161 / 0.9);
}

.ring-sky-700\/95 {
  --tw-ring-color: rgb(3 105 161 / 0.95);
}

.ring-sky-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(7 89 133 / var(--tw-ring-opacity, 1));
}

.ring-sky-800\/0 {
  --tw-ring-color: rgb(7 89 133 / 0);
}

.ring-sky-800\/10 {
  --tw-ring-color: rgb(7 89 133 / 0.1);
}

.ring-sky-800\/100 {
  --tw-ring-color: rgb(7 89 133 / 1);
}

.ring-sky-800\/15 {
  --tw-ring-color: rgb(7 89 133 / 0.15);
}

.ring-sky-800\/20 {
  --tw-ring-color: rgb(7 89 133 / 0.2);
}

.ring-sky-800\/25 {
  --tw-ring-color: rgb(7 89 133 / 0.25);
}

.ring-sky-800\/30 {
  --tw-ring-color: rgb(7 89 133 / 0.3);
}

.ring-sky-800\/35 {
  --tw-ring-color: rgb(7 89 133 / 0.35);
}

.ring-sky-800\/40 {
  --tw-ring-color: rgb(7 89 133 / 0.4);
}

.ring-sky-800\/45 {
  --tw-ring-color: rgb(7 89 133 / 0.45);
}

.ring-sky-800\/5 {
  --tw-ring-color: rgb(7 89 133 / 0.05);
}

.ring-sky-800\/50 {
  --tw-ring-color: rgb(7 89 133 / 0.5);
}

.ring-sky-800\/55 {
  --tw-ring-color: rgb(7 89 133 / 0.55);
}

.ring-sky-800\/60 {
  --tw-ring-color: rgb(7 89 133 / 0.6);
}

.ring-sky-800\/65 {
  --tw-ring-color: rgb(7 89 133 / 0.65);
}

.ring-sky-800\/70 {
  --tw-ring-color: rgb(7 89 133 / 0.7);
}

.ring-sky-800\/75 {
  --tw-ring-color: rgb(7 89 133 / 0.75);
}

.ring-sky-800\/80 {
  --tw-ring-color: rgb(7 89 133 / 0.8);
}

.ring-sky-800\/85 {
  --tw-ring-color: rgb(7 89 133 / 0.85);
}

.ring-sky-800\/90 {
  --tw-ring-color: rgb(7 89 133 / 0.9);
}

.ring-sky-800\/95 {
  --tw-ring-color: rgb(7 89 133 / 0.95);
}

.ring-sky-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(12 74 110 / var(--tw-ring-opacity, 1));
}

.ring-sky-900\/0 {
  --tw-ring-color: rgb(12 74 110 / 0);
}

.ring-sky-900\/10 {
  --tw-ring-color: rgb(12 74 110 / 0.1);
}

.ring-sky-900\/100 {
  --tw-ring-color: rgb(12 74 110 / 1);
}

.ring-sky-900\/15 {
  --tw-ring-color: rgb(12 74 110 / 0.15);
}

.ring-sky-900\/20 {
  --tw-ring-color: rgb(12 74 110 / 0.2);
}

.ring-sky-900\/25 {
  --tw-ring-color: rgb(12 74 110 / 0.25);
}

.ring-sky-900\/30 {
  --tw-ring-color: rgb(12 74 110 / 0.3);
}

.ring-sky-900\/35 {
  --tw-ring-color: rgb(12 74 110 / 0.35);
}

.ring-sky-900\/40 {
  --tw-ring-color: rgb(12 74 110 / 0.4);
}

.ring-sky-900\/45 {
  --tw-ring-color: rgb(12 74 110 / 0.45);
}

.ring-sky-900\/5 {
  --tw-ring-color: rgb(12 74 110 / 0.05);
}

.ring-sky-900\/50 {
  --tw-ring-color: rgb(12 74 110 / 0.5);
}

.ring-sky-900\/55 {
  --tw-ring-color: rgb(12 74 110 / 0.55);
}

.ring-sky-900\/60 {
  --tw-ring-color: rgb(12 74 110 / 0.6);
}

.ring-sky-900\/65 {
  --tw-ring-color: rgb(12 74 110 / 0.65);
}

.ring-sky-900\/70 {
  --tw-ring-color: rgb(12 74 110 / 0.7);
}

.ring-sky-900\/75 {
  --tw-ring-color: rgb(12 74 110 / 0.75);
}

.ring-sky-900\/80 {
  --tw-ring-color: rgb(12 74 110 / 0.8);
}

.ring-sky-900\/85 {
  --tw-ring-color: rgb(12 74 110 / 0.85);
}

.ring-sky-900\/90 {
  --tw-ring-color: rgb(12 74 110 / 0.9);
}

.ring-sky-900\/95 {
  --tw-ring-color: rgb(12 74 110 / 0.95);
}

.ring-slate-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(241 245 249 / var(--tw-ring-opacity, 1));
}

.ring-slate-100\/0 {
  --tw-ring-color: rgb(241 245 249 / 0);
}

.ring-slate-100\/10 {
  --tw-ring-color: rgb(241 245 249 / 0.1);
}

.ring-slate-100\/100 {
  --tw-ring-color: rgb(241 245 249 / 1);
}

.ring-slate-100\/15 {
  --tw-ring-color: rgb(241 245 249 / 0.15);
}

.ring-slate-100\/20 {
  --tw-ring-color: rgb(241 245 249 / 0.2);
}

.ring-slate-100\/25 {
  --tw-ring-color: rgb(241 245 249 / 0.25);
}

.ring-slate-100\/30 {
  --tw-ring-color: rgb(241 245 249 / 0.3);
}

.ring-slate-100\/35 {
  --tw-ring-color: rgb(241 245 249 / 0.35);
}

.ring-slate-100\/40 {
  --tw-ring-color: rgb(241 245 249 / 0.4);
}

.ring-slate-100\/45 {
  --tw-ring-color: rgb(241 245 249 / 0.45);
}

.ring-slate-100\/5 {
  --tw-ring-color: rgb(241 245 249 / 0.05);
}

.ring-slate-100\/50 {
  --tw-ring-color: rgb(241 245 249 / 0.5);
}

.ring-slate-100\/55 {
  --tw-ring-color: rgb(241 245 249 / 0.55);
}

.ring-slate-100\/60 {
  --tw-ring-color: rgb(241 245 249 / 0.6);
}

.ring-slate-100\/65 {
  --tw-ring-color: rgb(241 245 249 / 0.65);
}

.ring-slate-100\/70 {
  --tw-ring-color: rgb(241 245 249 / 0.7);
}

.ring-slate-100\/75 {
  --tw-ring-color: rgb(241 245 249 / 0.75);
}

.ring-slate-100\/80 {
  --tw-ring-color: rgb(241 245 249 / 0.8);
}

.ring-slate-100\/85 {
  --tw-ring-color: rgb(241 245 249 / 0.85);
}

.ring-slate-100\/90 {
  --tw-ring-color: rgb(241 245 249 / 0.9);
}

.ring-slate-100\/95 {
  --tw-ring-color: rgb(241 245 249 / 0.95);
}

.ring-slate-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(226 232 240 / var(--tw-ring-opacity, 1));
}

.ring-slate-200\/0 {
  --tw-ring-color: rgb(226 232 240 / 0);
}

.ring-slate-200\/10 {
  --tw-ring-color: rgb(226 232 240 / 0.1);
}

.ring-slate-200\/100 {
  --tw-ring-color: rgb(226 232 240 / 1);
}

.ring-slate-200\/15 {
  --tw-ring-color: rgb(226 232 240 / 0.15);
}

.ring-slate-200\/20 {
  --tw-ring-color: rgb(226 232 240 / 0.2);
}

.ring-slate-200\/25 {
  --tw-ring-color: rgb(226 232 240 / 0.25);
}

.ring-slate-200\/30 {
  --tw-ring-color: rgb(226 232 240 / 0.3);
}

.ring-slate-200\/35 {
  --tw-ring-color: rgb(226 232 240 / 0.35);
}

.ring-slate-200\/40 {
  --tw-ring-color: rgb(226 232 240 / 0.4);
}

.ring-slate-200\/45 {
  --tw-ring-color: rgb(226 232 240 / 0.45);
}

.ring-slate-200\/5 {
  --tw-ring-color: rgb(226 232 240 / 0.05);
}

.ring-slate-200\/50 {
  --tw-ring-color: rgb(226 232 240 / 0.5);
}

.ring-slate-200\/55 {
  --tw-ring-color: rgb(226 232 240 / 0.55);
}

.ring-slate-200\/60 {
  --tw-ring-color: rgb(226 232 240 / 0.6);
}

.ring-slate-200\/65 {
  --tw-ring-color: rgb(226 232 240 / 0.65);
}

.ring-slate-200\/70 {
  --tw-ring-color: rgb(226 232 240 / 0.7);
}

.ring-slate-200\/75 {
  --tw-ring-color: rgb(226 232 240 / 0.75);
}

.ring-slate-200\/80 {
  --tw-ring-color: rgb(226 232 240 / 0.8);
}

.ring-slate-200\/85 {
  --tw-ring-color: rgb(226 232 240 / 0.85);
}

.ring-slate-200\/90 {
  --tw-ring-color: rgb(226 232 240 / 0.9);
}

.ring-slate-200\/95 {
  --tw-ring-color: rgb(226 232 240 / 0.95);
}

.ring-slate-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(203 213 225 / var(--tw-ring-opacity, 1));
}

.ring-slate-300\/0 {
  --tw-ring-color: rgb(203 213 225 / 0);
}

.ring-slate-300\/10 {
  --tw-ring-color: rgb(203 213 225 / 0.1);
}

.ring-slate-300\/100 {
  --tw-ring-color: rgb(203 213 225 / 1);
}

.ring-slate-300\/15 {
  --tw-ring-color: rgb(203 213 225 / 0.15);
}

.ring-slate-300\/20 {
  --tw-ring-color: rgb(203 213 225 / 0.2);
}

.ring-slate-300\/25 {
  --tw-ring-color: rgb(203 213 225 / 0.25);
}

.ring-slate-300\/30 {
  --tw-ring-color: rgb(203 213 225 / 0.3);
}

.ring-slate-300\/35 {
  --tw-ring-color: rgb(203 213 225 / 0.35);
}

.ring-slate-300\/40 {
  --tw-ring-color: rgb(203 213 225 / 0.4);
}

.ring-slate-300\/45 {
  --tw-ring-color: rgb(203 213 225 / 0.45);
}

.ring-slate-300\/5 {
  --tw-ring-color: rgb(203 213 225 / 0.05);
}

.ring-slate-300\/50 {
  --tw-ring-color: rgb(203 213 225 / 0.5);
}

.ring-slate-300\/55 {
  --tw-ring-color: rgb(203 213 225 / 0.55);
}

.ring-slate-300\/60 {
  --tw-ring-color: rgb(203 213 225 / 0.6);
}

.ring-slate-300\/65 {
  --tw-ring-color: rgb(203 213 225 / 0.65);
}

.ring-slate-300\/70 {
  --tw-ring-color: rgb(203 213 225 / 0.7);
}

.ring-slate-300\/75 {
  --tw-ring-color: rgb(203 213 225 / 0.75);
}

.ring-slate-300\/80 {
  --tw-ring-color: rgb(203 213 225 / 0.8);
}

.ring-slate-300\/85 {
  --tw-ring-color: rgb(203 213 225 / 0.85);
}

.ring-slate-300\/90 {
  --tw-ring-color: rgb(203 213 225 / 0.9);
}

.ring-slate-300\/95 {
  --tw-ring-color: rgb(203 213 225 / 0.95);
}

.ring-slate-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(148 163 184 / var(--tw-ring-opacity, 1));
}

.ring-slate-400\/0 {
  --tw-ring-color: rgb(148 163 184 / 0);
}

.ring-slate-400\/10 {
  --tw-ring-color: rgb(148 163 184 / 0.1);
}

.ring-slate-400\/100 {
  --tw-ring-color: rgb(148 163 184 / 1);
}

.ring-slate-400\/15 {
  --tw-ring-color: rgb(148 163 184 / 0.15);
}

.ring-slate-400\/20 {
  --tw-ring-color: rgb(148 163 184 / 0.2);
}

.ring-slate-400\/25 {
  --tw-ring-color: rgb(148 163 184 / 0.25);
}

.ring-slate-400\/30 {
  --tw-ring-color: rgb(148 163 184 / 0.3);
}

.ring-slate-400\/35 {
  --tw-ring-color: rgb(148 163 184 / 0.35);
}

.ring-slate-400\/40 {
  --tw-ring-color: rgb(148 163 184 / 0.4);
}

.ring-slate-400\/45 {
  --tw-ring-color: rgb(148 163 184 / 0.45);
}

.ring-slate-400\/5 {
  --tw-ring-color: rgb(148 163 184 / 0.05);
}

.ring-slate-400\/50 {
  --tw-ring-color: rgb(148 163 184 / 0.5);
}

.ring-slate-400\/55 {
  --tw-ring-color: rgb(148 163 184 / 0.55);
}

.ring-slate-400\/60 {
  --tw-ring-color: rgb(148 163 184 / 0.6);
}

.ring-slate-400\/65 {
  --tw-ring-color: rgb(148 163 184 / 0.65);
}

.ring-slate-400\/70 {
  --tw-ring-color: rgb(148 163 184 / 0.7);
}

.ring-slate-400\/75 {
  --tw-ring-color: rgb(148 163 184 / 0.75);
}

.ring-slate-400\/80 {
  --tw-ring-color: rgb(148 163 184 / 0.8);
}

.ring-slate-400\/85 {
  --tw-ring-color: rgb(148 163 184 / 0.85);
}

.ring-slate-400\/90 {
  --tw-ring-color: rgb(148 163 184 / 0.9);
}

.ring-slate-400\/95 {
  --tw-ring-color: rgb(148 163 184 / 0.95);
}

.ring-slate-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(248 250 252 / var(--tw-ring-opacity, 1));
}

.ring-slate-50\/0 {
  --tw-ring-color: rgb(248 250 252 / 0);
}

.ring-slate-50\/10 {
  --tw-ring-color: rgb(248 250 252 / 0.1);
}

.ring-slate-50\/100 {
  --tw-ring-color: rgb(248 250 252 / 1);
}

.ring-slate-50\/15 {
  --tw-ring-color: rgb(248 250 252 / 0.15);
}

.ring-slate-50\/20 {
  --tw-ring-color: rgb(248 250 252 / 0.2);
}

.ring-slate-50\/25 {
  --tw-ring-color: rgb(248 250 252 / 0.25);
}

.ring-slate-50\/30 {
  --tw-ring-color: rgb(248 250 252 / 0.3);
}

.ring-slate-50\/35 {
  --tw-ring-color: rgb(248 250 252 / 0.35);
}

.ring-slate-50\/40 {
  --tw-ring-color: rgb(248 250 252 / 0.4);
}

.ring-slate-50\/45 {
  --tw-ring-color: rgb(248 250 252 / 0.45);
}

.ring-slate-50\/5 {
  --tw-ring-color: rgb(248 250 252 / 0.05);
}

.ring-slate-50\/50 {
  --tw-ring-color: rgb(248 250 252 / 0.5);
}

.ring-slate-50\/55 {
  --tw-ring-color: rgb(248 250 252 / 0.55);
}

.ring-slate-50\/60 {
  --tw-ring-color: rgb(248 250 252 / 0.6);
}

.ring-slate-50\/65 {
  --tw-ring-color: rgb(248 250 252 / 0.65);
}

.ring-slate-50\/70 {
  --tw-ring-color: rgb(248 250 252 / 0.7);
}

.ring-slate-50\/75 {
  --tw-ring-color: rgb(248 250 252 / 0.75);
}

.ring-slate-50\/80 {
  --tw-ring-color: rgb(248 250 252 / 0.8);
}

.ring-slate-50\/85 {
  --tw-ring-color: rgb(248 250 252 / 0.85);
}

.ring-slate-50\/90 {
  --tw-ring-color: rgb(248 250 252 / 0.9);
}

.ring-slate-50\/95 {
  --tw-ring-color: rgb(248 250 252 / 0.95);
}

.ring-slate-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(100 116 139 / var(--tw-ring-opacity, 1));
}

.ring-slate-500\/0 {
  --tw-ring-color: rgb(100 116 139 / 0);
}

.ring-slate-500\/10 {
  --tw-ring-color: rgb(100 116 139 / 0.1);
}

.ring-slate-500\/100 {
  --tw-ring-color: rgb(100 116 139 / 1);
}

.ring-slate-500\/15 {
  --tw-ring-color: rgb(100 116 139 / 0.15);
}

.ring-slate-500\/20 {
  --tw-ring-color: rgb(100 116 139 / 0.2);
}

.ring-slate-500\/25 {
  --tw-ring-color: rgb(100 116 139 / 0.25);
}

.ring-slate-500\/30 {
  --tw-ring-color: rgb(100 116 139 / 0.3);
}

.ring-slate-500\/35 {
  --tw-ring-color: rgb(100 116 139 / 0.35);
}

.ring-slate-500\/40 {
  --tw-ring-color: rgb(100 116 139 / 0.4);
}

.ring-slate-500\/45 {
  --tw-ring-color: rgb(100 116 139 / 0.45);
}

.ring-slate-500\/5 {
  --tw-ring-color: rgb(100 116 139 / 0.05);
}

.ring-slate-500\/50 {
  --tw-ring-color: rgb(100 116 139 / 0.5);
}

.ring-slate-500\/55 {
  --tw-ring-color: rgb(100 116 139 / 0.55);
}

.ring-slate-500\/60 {
  --tw-ring-color: rgb(100 116 139 / 0.6);
}

.ring-slate-500\/65 {
  --tw-ring-color: rgb(100 116 139 / 0.65);
}

.ring-slate-500\/70 {
  --tw-ring-color: rgb(100 116 139 / 0.7);
}

.ring-slate-500\/75 {
  --tw-ring-color: rgb(100 116 139 / 0.75);
}

.ring-slate-500\/80 {
  --tw-ring-color: rgb(100 116 139 / 0.8);
}

.ring-slate-500\/85 {
  --tw-ring-color: rgb(100 116 139 / 0.85);
}

.ring-slate-500\/90 {
  --tw-ring-color: rgb(100 116 139 / 0.9);
}

.ring-slate-500\/95 {
  --tw-ring-color: rgb(100 116 139 / 0.95);
}

.ring-slate-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(71 85 105 / var(--tw-ring-opacity, 1));
}

.ring-slate-600\/0 {
  --tw-ring-color: rgb(71 85 105 / 0);
}

.ring-slate-600\/10 {
  --tw-ring-color: rgb(71 85 105 / 0.1);
}

.ring-slate-600\/100 {
  --tw-ring-color: rgb(71 85 105 / 1);
}

.ring-slate-600\/15 {
  --tw-ring-color: rgb(71 85 105 / 0.15);
}

.ring-slate-600\/20 {
  --tw-ring-color: rgb(71 85 105 / 0.2);
}

.ring-slate-600\/25 {
  --tw-ring-color: rgb(71 85 105 / 0.25);
}

.ring-slate-600\/30 {
  --tw-ring-color: rgb(71 85 105 / 0.3);
}

.ring-slate-600\/35 {
  --tw-ring-color: rgb(71 85 105 / 0.35);
}

.ring-slate-600\/40 {
  --tw-ring-color: rgb(71 85 105 / 0.4);
}

.ring-slate-600\/45 {
  --tw-ring-color: rgb(71 85 105 / 0.45);
}

.ring-slate-600\/5 {
  --tw-ring-color: rgb(71 85 105 / 0.05);
}

.ring-slate-600\/50 {
  --tw-ring-color: rgb(71 85 105 / 0.5);
}

.ring-slate-600\/55 {
  --tw-ring-color: rgb(71 85 105 / 0.55);
}

.ring-slate-600\/60 {
  --tw-ring-color: rgb(71 85 105 / 0.6);
}

.ring-slate-600\/65 {
  --tw-ring-color: rgb(71 85 105 / 0.65);
}

.ring-slate-600\/70 {
  --tw-ring-color: rgb(71 85 105 / 0.7);
}

.ring-slate-600\/75 {
  --tw-ring-color: rgb(71 85 105 / 0.75);
}

.ring-slate-600\/80 {
  --tw-ring-color: rgb(71 85 105 / 0.8);
}

.ring-slate-600\/85 {
  --tw-ring-color: rgb(71 85 105 / 0.85);
}

.ring-slate-600\/90 {
  --tw-ring-color: rgb(71 85 105 / 0.9);
}

.ring-slate-600\/95 {
  --tw-ring-color: rgb(71 85 105 / 0.95);
}

.ring-slate-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(51 65 85 / var(--tw-ring-opacity, 1));
}

.ring-slate-700\/0 {
  --tw-ring-color: rgb(51 65 85 / 0);
}

.ring-slate-700\/10 {
  --tw-ring-color: rgb(51 65 85 / 0.1);
}

.ring-slate-700\/100 {
  --tw-ring-color: rgb(51 65 85 / 1);
}

.ring-slate-700\/15 {
  --tw-ring-color: rgb(51 65 85 / 0.15);
}

.ring-slate-700\/20 {
  --tw-ring-color: rgb(51 65 85 / 0.2);
}

.ring-slate-700\/25 {
  --tw-ring-color: rgb(51 65 85 / 0.25);
}

.ring-slate-700\/30 {
  --tw-ring-color: rgb(51 65 85 / 0.3);
}

.ring-slate-700\/35 {
  --tw-ring-color: rgb(51 65 85 / 0.35);
}

.ring-slate-700\/40 {
  --tw-ring-color: rgb(51 65 85 / 0.4);
}

.ring-slate-700\/45 {
  --tw-ring-color: rgb(51 65 85 / 0.45);
}

.ring-slate-700\/5 {
  --tw-ring-color: rgb(51 65 85 / 0.05);
}

.ring-slate-700\/50 {
  --tw-ring-color: rgb(51 65 85 / 0.5);
}

.ring-slate-700\/55 {
  --tw-ring-color: rgb(51 65 85 / 0.55);
}

.ring-slate-700\/60 {
  --tw-ring-color: rgb(51 65 85 / 0.6);
}

.ring-slate-700\/65 {
  --tw-ring-color: rgb(51 65 85 / 0.65);
}

.ring-slate-700\/70 {
  --tw-ring-color: rgb(51 65 85 / 0.7);
}

.ring-slate-700\/75 {
  --tw-ring-color: rgb(51 65 85 / 0.75);
}

.ring-slate-700\/80 {
  --tw-ring-color: rgb(51 65 85 / 0.8);
}

.ring-slate-700\/85 {
  --tw-ring-color: rgb(51 65 85 / 0.85);
}

.ring-slate-700\/90 {
  --tw-ring-color: rgb(51 65 85 / 0.9);
}

.ring-slate-700\/95 {
  --tw-ring-color: rgb(51 65 85 / 0.95);
}

.ring-slate-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 41 59 / var(--tw-ring-opacity, 1));
}

.ring-slate-800\/0 {
  --tw-ring-color: rgb(30 41 59 / 0);
}

.ring-slate-800\/10 {
  --tw-ring-color: rgb(30 41 59 / 0.1);
}

.ring-slate-800\/100 {
  --tw-ring-color: rgb(30 41 59 / 1);
}

.ring-slate-800\/15 {
  --tw-ring-color: rgb(30 41 59 / 0.15);
}

.ring-slate-800\/20 {
  --tw-ring-color: rgb(30 41 59 / 0.2);
}

.ring-slate-800\/25 {
  --tw-ring-color: rgb(30 41 59 / 0.25);
}

.ring-slate-800\/30 {
  --tw-ring-color: rgb(30 41 59 / 0.3);
}

.ring-slate-800\/35 {
  --tw-ring-color: rgb(30 41 59 / 0.35);
}

.ring-slate-800\/40 {
  --tw-ring-color: rgb(30 41 59 / 0.4);
}

.ring-slate-800\/45 {
  --tw-ring-color: rgb(30 41 59 / 0.45);
}

.ring-slate-800\/5 {
  --tw-ring-color: rgb(30 41 59 / 0.05);
}

.ring-slate-800\/50 {
  --tw-ring-color: rgb(30 41 59 / 0.5);
}

.ring-slate-800\/55 {
  --tw-ring-color: rgb(30 41 59 / 0.55);
}

.ring-slate-800\/60 {
  --tw-ring-color: rgb(30 41 59 / 0.6);
}

.ring-slate-800\/65 {
  --tw-ring-color: rgb(30 41 59 / 0.65);
}

.ring-slate-800\/70 {
  --tw-ring-color: rgb(30 41 59 / 0.7);
}

.ring-slate-800\/75 {
  --tw-ring-color: rgb(30 41 59 / 0.75);
}

.ring-slate-800\/80 {
  --tw-ring-color: rgb(30 41 59 / 0.8);
}

.ring-slate-800\/85 {
  --tw-ring-color: rgb(30 41 59 / 0.85);
}

.ring-slate-800\/90 {
  --tw-ring-color: rgb(30 41 59 / 0.9);
}

.ring-slate-800\/95 {
  --tw-ring-color: rgb(30 41 59 / 0.95);
}

.ring-slate-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(15 23 42 / var(--tw-ring-opacity, 1));
}

.ring-slate-900\/0 {
  --tw-ring-color: rgb(15 23 42 / 0);
}

.ring-slate-900\/10 {
  --tw-ring-color: rgb(15 23 42 / 0.1);
}

.ring-slate-900\/100 {
  --tw-ring-color: rgb(15 23 42 / 1);
}

.ring-slate-900\/15 {
  --tw-ring-color: rgb(15 23 42 / 0.15);
}

.ring-slate-900\/20 {
  --tw-ring-color: rgb(15 23 42 / 0.2);
}

.ring-slate-900\/25 {
  --tw-ring-color: rgb(15 23 42 / 0.25);
}

.ring-slate-900\/30 {
  --tw-ring-color: rgb(15 23 42 / 0.3);
}

.ring-slate-900\/35 {
  --tw-ring-color: rgb(15 23 42 / 0.35);
}

.ring-slate-900\/40 {
  --tw-ring-color: rgb(15 23 42 / 0.4);
}

.ring-slate-900\/45 {
  --tw-ring-color: rgb(15 23 42 / 0.45);
}

.ring-slate-900\/5 {
  --tw-ring-color: rgb(15 23 42 / 0.05);
}

.ring-slate-900\/50 {
  --tw-ring-color: rgb(15 23 42 / 0.5);
}

.ring-slate-900\/55 {
  --tw-ring-color: rgb(15 23 42 / 0.55);
}

.ring-slate-900\/60 {
  --tw-ring-color: rgb(15 23 42 / 0.6);
}

.ring-slate-900\/65 {
  --tw-ring-color: rgb(15 23 42 / 0.65);
}

.ring-slate-900\/70 {
  --tw-ring-color: rgb(15 23 42 / 0.7);
}

.ring-slate-900\/75 {
  --tw-ring-color: rgb(15 23 42 / 0.75);
}

.ring-slate-900\/80 {
  --tw-ring-color: rgb(15 23 42 / 0.8);
}

.ring-slate-900\/85 {
  --tw-ring-color: rgb(15 23 42 / 0.85);
}

.ring-slate-900\/90 {
  --tw-ring-color: rgb(15 23 42 / 0.9);
}

.ring-slate-900\/95 {
  --tw-ring-color: rgb(15 23 42 / 0.95);
}

.ring-stone-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(245 245 244 / var(--tw-ring-opacity, 1));
}

.ring-stone-100\/0 {
  --tw-ring-color: rgb(245 245 244 / 0);
}

.ring-stone-100\/10 {
  --tw-ring-color: rgb(245 245 244 / 0.1);
}

.ring-stone-100\/100 {
  --tw-ring-color: rgb(245 245 244 / 1);
}

.ring-stone-100\/15 {
  --tw-ring-color: rgb(245 245 244 / 0.15);
}

.ring-stone-100\/20 {
  --tw-ring-color: rgb(245 245 244 / 0.2);
}

.ring-stone-100\/25 {
  --tw-ring-color: rgb(245 245 244 / 0.25);
}

.ring-stone-100\/30 {
  --tw-ring-color: rgb(245 245 244 / 0.3);
}

.ring-stone-100\/35 {
  --tw-ring-color: rgb(245 245 244 / 0.35);
}

.ring-stone-100\/40 {
  --tw-ring-color: rgb(245 245 244 / 0.4);
}

.ring-stone-100\/45 {
  --tw-ring-color: rgb(245 245 244 / 0.45);
}

.ring-stone-100\/5 {
  --tw-ring-color: rgb(245 245 244 / 0.05);
}

.ring-stone-100\/50 {
  --tw-ring-color: rgb(245 245 244 / 0.5);
}

.ring-stone-100\/55 {
  --tw-ring-color: rgb(245 245 244 / 0.55);
}

.ring-stone-100\/60 {
  --tw-ring-color: rgb(245 245 244 / 0.6);
}

.ring-stone-100\/65 {
  --tw-ring-color: rgb(245 245 244 / 0.65);
}

.ring-stone-100\/70 {
  --tw-ring-color: rgb(245 245 244 / 0.7);
}

.ring-stone-100\/75 {
  --tw-ring-color: rgb(245 245 244 / 0.75);
}

.ring-stone-100\/80 {
  --tw-ring-color: rgb(245 245 244 / 0.8);
}

.ring-stone-100\/85 {
  --tw-ring-color: rgb(245 245 244 / 0.85);
}

.ring-stone-100\/90 {
  --tw-ring-color: rgb(245 245 244 / 0.9);
}

.ring-stone-100\/95 {
  --tw-ring-color: rgb(245 245 244 / 0.95);
}

.ring-stone-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(231 229 228 / var(--tw-ring-opacity, 1));
}

.ring-stone-200\/0 {
  --tw-ring-color: rgb(231 229 228 / 0);
}

.ring-stone-200\/10 {
  --tw-ring-color: rgb(231 229 228 / 0.1);
}

.ring-stone-200\/100 {
  --tw-ring-color: rgb(231 229 228 / 1);
}

.ring-stone-200\/15 {
  --tw-ring-color: rgb(231 229 228 / 0.15);
}

.ring-stone-200\/20 {
  --tw-ring-color: rgb(231 229 228 / 0.2);
}

.ring-stone-200\/25 {
  --tw-ring-color: rgb(231 229 228 / 0.25);
}

.ring-stone-200\/30 {
  --tw-ring-color: rgb(231 229 228 / 0.3);
}

.ring-stone-200\/35 {
  --tw-ring-color: rgb(231 229 228 / 0.35);
}

.ring-stone-200\/40 {
  --tw-ring-color: rgb(231 229 228 / 0.4);
}

.ring-stone-200\/45 {
  --tw-ring-color: rgb(231 229 228 / 0.45);
}

.ring-stone-200\/5 {
  --tw-ring-color: rgb(231 229 228 / 0.05);
}

.ring-stone-200\/50 {
  --tw-ring-color: rgb(231 229 228 / 0.5);
}

.ring-stone-200\/55 {
  --tw-ring-color: rgb(231 229 228 / 0.55);
}

.ring-stone-200\/60 {
  --tw-ring-color: rgb(231 229 228 / 0.6);
}

.ring-stone-200\/65 {
  --tw-ring-color: rgb(231 229 228 / 0.65);
}

.ring-stone-200\/70 {
  --tw-ring-color: rgb(231 229 228 / 0.7);
}

.ring-stone-200\/75 {
  --tw-ring-color: rgb(231 229 228 / 0.75);
}

.ring-stone-200\/80 {
  --tw-ring-color: rgb(231 229 228 / 0.8);
}

.ring-stone-200\/85 {
  --tw-ring-color: rgb(231 229 228 / 0.85);
}

.ring-stone-200\/90 {
  --tw-ring-color: rgb(231 229 228 / 0.9);
}

.ring-stone-200\/95 {
  --tw-ring-color: rgb(231 229 228 / 0.95);
}

.ring-stone-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(214 211 209 / var(--tw-ring-opacity, 1));
}

.ring-stone-300\/0 {
  --tw-ring-color: rgb(214 211 209 / 0);
}

.ring-stone-300\/10 {
  --tw-ring-color: rgb(214 211 209 / 0.1);
}

.ring-stone-300\/100 {
  --tw-ring-color: rgb(214 211 209 / 1);
}

.ring-stone-300\/15 {
  --tw-ring-color: rgb(214 211 209 / 0.15);
}

.ring-stone-300\/20 {
  --tw-ring-color: rgb(214 211 209 / 0.2);
}

.ring-stone-300\/25 {
  --tw-ring-color: rgb(214 211 209 / 0.25);
}

.ring-stone-300\/30 {
  --tw-ring-color: rgb(214 211 209 / 0.3);
}

.ring-stone-300\/35 {
  --tw-ring-color: rgb(214 211 209 / 0.35);
}

.ring-stone-300\/40 {
  --tw-ring-color: rgb(214 211 209 / 0.4);
}

.ring-stone-300\/45 {
  --tw-ring-color: rgb(214 211 209 / 0.45);
}

.ring-stone-300\/5 {
  --tw-ring-color: rgb(214 211 209 / 0.05);
}

.ring-stone-300\/50 {
  --tw-ring-color: rgb(214 211 209 / 0.5);
}

.ring-stone-300\/55 {
  --tw-ring-color: rgb(214 211 209 / 0.55);
}

.ring-stone-300\/60 {
  --tw-ring-color: rgb(214 211 209 / 0.6);
}

.ring-stone-300\/65 {
  --tw-ring-color: rgb(214 211 209 / 0.65);
}

.ring-stone-300\/70 {
  --tw-ring-color: rgb(214 211 209 / 0.7);
}

.ring-stone-300\/75 {
  --tw-ring-color: rgb(214 211 209 / 0.75);
}

.ring-stone-300\/80 {
  --tw-ring-color: rgb(214 211 209 / 0.8);
}

.ring-stone-300\/85 {
  --tw-ring-color: rgb(214 211 209 / 0.85);
}

.ring-stone-300\/90 {
  --tw-ring-color: rgb(214 211 209 / 0.9);
}

.ring-stone-300\/95 {
  --tw-ring-color: rgb(214 211 209 / 0.95);
}

.ring-stone-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(168 162 158 / var(--tw-ring-opacity, 1));
}

.ring-stone-400\/0 {
  --tw-ring-color: rgb(168 162 158 / 0);
}

.ring-stone-400\/10 {
  --tw-ring-color: rgb(168 162 158 / 0.1);
}

.ring-stone-400\/100 {
  --tw-ring-color: rgb(168 162 158 / 1);
}

.ring-stone-400\/15 {
  --tw-ring-color: rgb(168 162 158 / 0.15);
}

.ring-stone-400\/20 {
  --tw-ring-color: rgb(168 162 158 / 0.2);
}

.ring-stone-400\/25 {
  --tw-ring-color: rgb(168 162 158 / 0.25);
}

.ring-stone-400\/30 {
  --tw-ring-color: rgb(168 162 158 / 0.3);
}

.ring-stone-400\/35 {
  --tw-ring-color: rgb(168 162 158 / 0.35);
}

.ring-stone-400\/40 {
  --tw-ring-color: rgb(168 162 158 / 0.4);
}

.ring-stone-400\/45 {
  --tw-ring-color: rgb(168 162 158 / 0.45);
}

.ring-stone-400\/5 {
  --tw-ring-color: rgb(168 162 158 / 0.05);
}

.ring-stone-400\/50 {
  --tw-ring-color: rgb(168 162 158 / 0.5);
}

.ring-stone-400\/55 {
  --tw-ring-color: rgb(168 162 158 / 0.55);
}

.ring-stone-400\/60 {
  --tw-ring-color: rgb(168 162 158 / 0.6);
}

.ring-stone-400\/65 {
  --tw-ring-color: rgb(168 162 158 / 0.65);
}

.ring-stone-400\/70 {
  --tw-ring-color: rgb(168 162 158 / 0.7);
}

.ring-stone-400\/75 {
  --tw-ring-color: rgb(168 162 158 / 0.75);
}

.ring-stone-400\/80 {
  --tw-ring-color: rgb(168 162 158 / 0.8);
}

.ring-stone-400\/85 {
  --tw-ring-color: rgb(168 162 158 / 0.85);
}

.ring-stone-400\/90 {
  --tw-ring-color: rgb(168 162 158 / 0.9);
}

.ring-stone-400\/95 {
  --tw-ring-color: rgb(168 162 158 / 0.95);
}

.ring-stone-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(250 250 249 / var(--tw-ring-opacity, 1));
}

.ring-stone-50\/0 {
  --tw-ring-color: rgb(250 250 249 / 0);
}

.ring-stone-50\/10 {
  --tw-ring-color: rgb(250 250 249 / 0.1);
}

.ring-stone-50\/100 {
  --tw-ring-color: rgb(250 250 249 / 1);
}

.ring-stone-50\/15 {
  --tw-ring-color: rgb(250 250 249 / 0.15);
}

.ring-stone-50\/20 {
  --tw-ring-color: rgb(250 250 249 / 0.2);
}

.ring-stone-50\/25 {
  --tw-ring-color: rgb(250 250 249 / 0.25);
}

.ring-stone-50\/30 {
  --tw-ring-color: rgb(250 250 249 / 0.3);
}

.ring-stone-50\/35 {
  --tw-ring-color: rgb(250 250 249 / 0.35);
}

.ring-stone-50\/40 {
  --tw-ring-color: rgb(250 250 249 / 0.4);
}

.ring-stone-50\/45 {
  --tw-ring-color: rgb(250 250 249 / 0.45);
}

.ring-stone-50\/5 {
  --tw-ring-color: rgb(250 250 249 / 0.05);
}

.ring-stone-50\/50 {
  --tw-ring-color: rgb(250 250 249 / 0.5);
}

.ring-stone-50\/55 {
  --tw-ring-color: rgb(250 250 249 / 0.55);
}

.ring-stone-50\/60 {
  --tw-ring-color: rgb(250 250 249 / 0.6);
}

.ring-stone-50\/65 {
  --tw-ring-color: rgb(250 250 249 / 0.65);
}

.ring-stone-50\/70 {
  --tw-ring-color: rgb(250 250 249 / 0.7);
}

.ring-stone-50\/75 {
  --tw-ring-color: rgb(250 250 249 / 0.75);
}

.ring-stone-50\/80 {
  --tw-ring-color: rgb(250 250 249 / 0.8);
}

.ring-stone-50\/85 {
  --tw-ring-color: rgb(250 250 249 / 0.85);
}

.ring-stone-50\/90 {
  --tw-ring-color: rgb(250 250 249 / 0.9);
}

.ring-stone-50\/95 {
  --tw-ring-color: rgb(250 250 249 / 0.95);
}

.ring-stone-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(120 113 108 / var(--tw-ring-opacity, 1));
}

.ring-stone-500\/0 {
  --tw-ring-color: rgb(120 113 108 / 0);
}

.ring-stone-500\/10 {
  --tw-ring-color: rgb(120 113 108 / 0.1);
}

.ring-stone-500\/100 {
  --tw-ring-color: rgb(120 113 108 / 1);
}

.ring-stone-500\/15 {
  --tw-ring-color: rgb(120 113 108 / 0.15);
}

.ring-stone-500\/20 {
  --tw-ring-color: rgb(120 113 108 / 0.2);
}

.ring-stone-500\/25 {
  --tw-ring-color: rgb(120 113 108 / 0.25);
}

.ring-stone-500\/30 {
  --tw-ring-color: rgb(120 113 108 / 0.3);
}

.ring-stone-500\/35 {
  --tw-ring-color: rgb(120 113 108 / 0.35);
}

.ring-stone-500\/40 {
  --tw-ring-color: rgb(120 113 108 / 0.4);
}

.ring-stone-500\/45 {
  --tw-ring-color: rgb(120 113 108 / 0.45);
}

.ring-stone-500\/5 {
  --tw-ring-color: rgb(120 113 108 / 0.05);
}

.ring-stone-500\/50 {
  --tw-ring-color: rgb(120 113 108 / 0.5);
}

.ring-stone-500\/55 {
  --tw-ring-color: rgb(120 113 108 / 0.55);
}

.ring-stone-500\/60 {
  --tw-ring-color: rgb(120 113 108 / 0.6);
}

.ring-stone-500\/65 {
  --tw-ring-color: rgb(120 113 108 / 0.65);
}

.ring-stone-500\/70 {
  --tw-ring-color: rgb(120 113 108 / 0.7);
}

.ring-stone-500\/75 {
  --tw-ring-color: rgb(120 113 108 / 0.75);
}

.ring-stone-500\/80 {
  --tw-ring-color: rgb(120 113 108 / 0.8);
}

.ring-stone-500\/85 {
  --tw-ring-color: rgb(120 113 108 / 0.85);
}

.ring-stone-500\/90 {
  --tw-ring-color: rgb(120 113 108 / 0.9);
}

.ring-stone-500\/95 {
  --tw-ring-color: rgb(120 113 108 / 0.95);
}

.ring-stone-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(87 83 78 / var(--tw-ring-opacity, 1));
}

.ring-stone-600\/0 {
  --tw-ring-color: rgb(87 83 78 / 0);
}

.ring-stone-600\/10 {
  --tw-ring-color: rgb(87 83 78 / 0.1);
}

.ring-stone-600\/100 {
  --tw-ring-color: rgb(87 83 78 / 1);
}

.ring-stone-600\/15 {
  --tw-ring-color: rgb(87 83 78 / 0.15);
}

.ring-stone-600\/20 {
  --tw-ring-color: rgb(87 83 78 / 0.2);
}

.ring-stone-600\/25 {
  --tw-ring-color: rgb(87 83 78 / 0.25);
}

.ring-stone-600\/30 {
  --tw-ring-color: rgb(87 83 78 / 0.3);
}

.ring-stone-600\/35 {
  --tw-ring-color: rgb(87 83 78 / 0.35);
}

.ring-stone-600\/40 {
  --tw-ring-color: rgb(87 83 78 / 0.4);
}

.ring-stone-600\/45 {
  --tw-ring-color: rgb(87 83 78 / 0.45);
}

.ring-stone-600\/5 {
  --tw-ring-color: rgb(87 83 78 / 0.05);
}

.ring-stone-600\/50 {
  --tw-ring-color: rgb(87 83 78 / 0.5);
}

.ring-stone-600\/55 {
  --tw-ring-color: rgb(87 83 78 / 0.55);
}

.ring-stone-600\/60 {
  --tw-ring-color: rgb(87 83 78 / 0.6);
}

.ring-stone-600\/65 {
  --tw-ring-color: rgb(87 83 78 / 0.65);
}

.ring-stone-600\/70 {
  --tw-ring-color: rgb(87 83 78 / 0.7);
}

.ring-stone-600\/75 {
  --tw-ring-color: rgb(87 83 78 / 0.75);
}

.ring-stone-600\/80 {
  --tw-ring-color: rgb(87 83 78 / 0.8);
}

.ring-stone-600\/85 {
  --tw-ring-color: rgb(87 83 78 / 0.85);
}

.ring-stone-600\/90 {
  --tw-ring-color: rgb(87 83 78 / 0.9);
}

.ring-stone-600\/95 {
  --tw-ring-color: rgb(87 83 78 / 0.95);
}

.ring-stone-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(68 64 60 / var(--tw-ring-opacity, 1));
}

.ring-stone-700\/0 {
  --tw-ring-color: rgb(68 64 60 / 0);
}

.ring-stone-700\/10 {
  --tw-ring-color: rgb(68 64 60 / 0.1);
}

.ring-stone-700\/100 {
  --tw-ring-color: rgb(68 64 60 / 1);
}

.ring-stone-700\/15 {
  --tw-ring-color: rgb(68 64 60 / 0.15);
}

.ring-stone-700\/20 {
  --tw-ring-color: rgb(68 64 60 / 0.2);
}

.ring-stone-700\/25 {
  --tw-ring-color: rgb(68 64 60 / 0.25);
}

.ring-stone-700\/30 {
  --tw-ring-color: rgb(68 64 60 / 0.3);
}

.ring-stone-700\/35 {
  --tw-ring-color: rgb(68 64 60 / 0.35);
}

.ring-stone-700\/40 {
  --tw-ring-color: rgb(68 64 60 / 0.4);
}

.ring-stone-700\/45 {
  --tw-ring-color: rgb(68 64 60 / 0.45);
}

.ring-stone-700\/5 {
  --tw-ring-color: rgb(68 64 60 / 0.05);
}

.ring-stone-700\/50 {
  --tw-ring-color: rgb(68 64 60 / 0.5);
}

.ring-stone-700\/55 {
  --tw-ring-color: rgb(68 64 60 / 0.55);
}

.ring-stone-700\/60 {
  --tw-ring-color: rgb(68 64 60 / 0.6);
}

.ring-stone-700\/65 {
  --tw-ring-color: rgb(68 64 60 / 0.65);
}

.ring-stone-700\/70 {
  --tw-ring-color: rgb(68 64 60 / 0.7);
}

.ring-stone-700\/75 {
  --tw-ring-color: rgb(68 64 60 / 0.75);
}

.ring-stone-700\/80 {
  --tw-ring-color: rgb(68 64 60 / 0.8);
}

.ring-stone-700\/85 {
  --tw-ring-color: rgb(68 64 60 / 0.85);
}

.ring-stone-700\/90 {
  --tw-ring-color: rgb(68 64 60 / 0.9);
}

.ring-stone-700\/95 {
  --tw-ring-color: rgb(68 64 60 / 0.95);
}

.ring-stone-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(41 37 36 / var(--tw-ring-opacity, 1));
}

.ring-stone-800\/0 {
  --tw-ring-color: rgb(41 37 36 / 0);
}

.ring-stone-800\/10 {
  --tw-ring-color: rgb(41 37 36 / 0.1);
}

.ring-stone-800\/100 {
  --tw-ring-color: rgb(41 37 36 / 1);
}

.ring-stone-800\/15 {
  --tw-ring-color: rgb(41 37 36 / 0.15);
}

.ring-stone-800\/20 {
  --tw-ring-color: rgb(41 37 36 / 0.2);
}

.ring-stone-800\/25 {
  --tw-ring-color: rgb(41 37 36 / 0.25);
}

.ring-stone-800\/30 {
  --tw-ring-color: rgb(41 37 36 / 0.3);
}

.ring-stone-800\/35 {
  --tw-ring-color: rgb(41 37 36 / 0.35);
}

.ring-stone-800\/40 {
  --tw-ring-color: rgb(41 37 36 / 0.4);
}

.ring-stone-800\/45 {
  --tw-ring-color: rgb(41 37 36 / 0.45);
}

.ring-stone-800\/5 {
  --tw-ring-color: rgb(41 37 36 / 0.05);
}

.ring-stone-800\/50 {
  --tw-ring-color: rgb(41 37 36 / 0.5);
}

.ring-stone-800\/55 {
  --tw-ring-color: rgb(41 37 36 / 0.55);
}

.ring-stone-800\/60 {
  --tw-ring-color: rgb(41 37 36 / 0.6);
}

.ring-stone-800\/65 {
  --tw-ring-color: rgb(41 37 36 / 0.65);
}

.ring-stone-800\/70 {
  --tw-ring-color: rgb(41 37 36 / 0.7);
}

.ring-stone-800\/75 {
  --tw-ring-color: rgb(41 37 36 / 0.75);
}

.ring-stone-800\/80 {
  --tw-ring-color: rgb(41 37 36 / 0.8);
}

.ring-stone-800\/85 {
  --tw-ring-color: rgb(41 37 36 / 0.85);
}

.ring-stone-800\/90 {
  --tw-ring-color: rgb(41 37 36 / 0.9);
}

.ring-stone-800\/95 {
  --tw-ring-color: rgb(41 37 36 / 0.95);
}

.ring-stone-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(28 25 23 / var(--tw-ring-opacity, 1));
}

.ring-stone-900\/0 {
  --tw-ring-color: rgb(28 25 23 / 0);
}

.ring-stone-900\/10 {
  --tw-ring-color: rgb(28 25 23 / 0.1);
}

.ring-stone-900\/100 {
  --tw-ring-color: rgb(28 25 23 / 1);
}

.ring-stone-900\/15 {
  --tw-ring-color: rgb(28 25 23 / 0.15);
}

.ring-stone-900\/20 {
  --tw-ring-color: rgb(28 25 23 / 0.2);
}

.ring-stone-900\/25 {
  --tw-ring-color: rgb(28 25 23 / 0.25);
}

.ring-stone-900\/30 {
  --tw-ring-color: rgb(28 25 23 / 0.3);
}

.ring-stone-900\/35 {
  --tw-ring-color: rgb(28 25 23 / 0.35);
}

.ring-stone-900\/40 {
  --tw-ring-color: rgb(28 25 23 / 0.4);
}

.ring-stone-900\/45 {
  --tw-ring-color: rgb(28 25 23 / 0.45);
}

.ring-stone-900\/5 {
  --tw-ring-color: rgb(28 25 23 / 0.05);
}

.ring-stone-900\/50 {
  --tw-ring-color: rgb(28 25 23 / 0.5);
}

.ring-stone-900\/55 {
  --tw-ring-color: rgb(28 25 23 / 0.55);
}

.ring-stone-900\/60 {
  --tw-ring-color: rgb(28 25 23 / 0.6);
}

.ring-stone-900\/65 {
  --tw-ring-color: rgb(28 25 23 / 0.65);
}

.ring-stone-900\/70 {
  --tw-ring-color: rgb(28 25 23 / 0.7);
}

.ring-stone-900\/75 {
  --tw-ring-color: rgb(28 25 23 / 0.75);
}

.ring-stone-900\/80 {
  --tw-ring-color: rgb(28 25 23 / 0.8);
}

.ring-stone-900\/85 {
  --tw-ring-color: rgb(28 25 23 / 0.85);
}

.ring-stone-900\/90 {
  --tw-ring-color: rgb(28 25 23 / 0.9);
}

.ring-stone-900\/95 {
  --tw-ring-color: rgb(28 25 23 / 0.95);
}

.ring-teal-100 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(204 251 241 / var(--tw-ring-opacity, 1));
}

.ring-teal-100\/0 {
  --tw-ring-color: rgb(204 251 241 / 0);
}

.ring-teal-100\/10 {
  --tw-ring-color: rgb(204 251 241 / 0.1);
}

.ring-teal-100\/100 {
  --tw-ring-color: rgb(204 251 241 / 1);
}

.ring-teal-100\/15 {
  --tw-ring-color: rgb(204 251 241 / 0.15);
}

.ring-teal-100\/20 {
  --tw-ring-color: rgb(204 251 241 / 0.2);
}

.ring-teal-100\/25 {
  --tw-ring-color: rgb(204 251 241 / 0.25);
}

.ring-teal-100\/30 {
  --tw-ring-color: rgb(204 251 241 / 0.3);
}

.ring-teal-100\/35 {
  --tw-ring-color: rgb(204 251 241 / 0.35);
}

.ring-teal-100\/40 {
  --tw-ring-color: rgb(204 251 241 / 0.4);
}

.ring-teal-100\/45 {
  --tw-ring-color: rgb(204 251 241 / 0.45);
}

.ring-teal-100\/5 {
  --tw-ring-color: rgb(204 251 241 / 0.05);
}

.ring-teal-100\/50 {
  --tw-ring-color: rgb(204 251 241 / 0.5);
}

.ring-teal-100\/55 {
  --tw-ring-color: rgb(204 251 241 / 0.55);
}

.ring-teal-100\/60 {
  --tw-ring-color: rgb(204 251 241 / 0.6);
}

.ring-teal-100\/65 {
  --tw-ring-color: rgb(204 251 241 / 0.65);
}

.ring-teal-100\/70 {
  --tw-ring-color: rgb(204 251 241 / 0.7);
}

.ring-teal-100\/75 {
  --tw-ring-color: rgb(204 251 241 / 0.75);
}

.ring-teal-100\/80 {
  --tw-ring-color: rgb(204 251 241 / 0.8);
}

.ring-teal-100\/85 {
  --tw-ring-color: rgb(204 251 241 / 0.85);
}

.ring-teal-100\/90 {
  --tw-ring-color: rgb(204 251 241 / 0.9);
}

.ring-teal-100\/95 {
  --tw-ring-color: rgb(204 251 241 / 0.95);
}

.ring-teal-200 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(153 246 228 / var(--tw-ring-opacity, 1));
}

.ring-teal-200\/0 {
  --tw-ring-color: rgb(153 246 228 / 0);
}

.ring-teal-200\/10 {
  --tw-ring-color: rgb(153 246 228 / 0.1);
}

.ring-teal-200\/100 {
  --tw-ring-color: rgb(153 246 228 / 1);
}

.ring-teal-200\/15 {
  --tw-ring-color: rgb(153 246 228 / 0.15);
}

.ring-teal-200\/20 {
  --tw-ring-color: rgb(153 246 228 / 0.2);
}

.ring-teal-200\/25 {
  --tw-ring-color: rgb(153 246 228 / 0.25);
}

.ring-teal-200\/30 {
  --tw-ring-color: rgb(153 246 228 / 0.3);
}

.ring-teal-200\/35 {
  --tw-ring-color: rgb(153 246 228 / 0.35);
}

.ring-teal-200\/40 {
  --tw-ring-color: rgb(153 246 228 / 0.4);
}

.ring-teal-200\/45 {
  --tw-ring-color: rgb(153 246 228 / 0.45);
}

.ring-teal-200\/5 {
  --tw-ring-color: rgb(153 246 228 / 0.05);
}

.ring-teal-200\/50 {
  --tw-ring-color: rgb(153 246 228 / 0.5);
}

.ring-teal-200\/55 {
  --tw-ring-color: rgb(153 246 228 / 0.55);
}

.ring-teal-200\/60 {
  --tw-ring-color: rgb(153 246 228 / 0.6);
}

.ring-teal-200\/65 {
  --tw-ring-color: rgb(153 246 228 / 0.65);
}

.ring-teal-200\/70 {
  --tw-ring-color: rgb(153 246 228 / 0.7);
}

.ring-teal-200\/75 {
  --tw-ring-color: rgb(153 246 228 / 0.75);
}

.ring-teal-200\/80 {
  --tw-ring-color: rgb(153 246 228 / 0.8);
}

.ring-teal-200\/85 {
  --tw-ring-color: rgb(153 246 228 / 0.85);
}

.ring-teal-200\/90 {
  --tw-ring-color: rgb(153 246 228 / 0.9);
}

.ring-teal-200\/95 {
  --tw-ring-color: rgb(153 246 228 / 0.95);
}

.ring-teal-300 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(94 234 212 / var(--tw-ring-opacity, 1));
}

.ring-teal-300\/0 {
  --tw-ring-color: rgb(94 234 212 / 0);
}

.ring-teal-300\/10 {
  --tw-ring-color: rgb(94 234 212 / 0.1);
}

.ring-teal-300\/100 {
  --tw-ring-color: rgb(94 234 212 / 1);
}

.ring-teal-300\/15 {
  --tw-ring-color: rgb(94 234 212 / 0.15);
}

.ring-teal-300\/20 {
  --tw-ring-color: rgb(94 234 212 / 0.2);
}

.ring-teal-300\/25 {
  --tw-ring-color: rgb(94 234 212 / 0.25);
}

.ring-teal-300\/30 {
  --tw-ring-color: rgb(94 234 212 / 0.3);
}

.ring-teal-300\/35 {
  --tw-ring-color: rgb(94 234 212 / 0.35);
}

.ring-teal-300\/40 {
  --tw-ring-color: rgb(94 234 212 / 0.4);
}

.ring-teal-300\/45 {
  --tw-ring-color: rgb(94 234 212 / 0.45);
}

.ring-teal-300\/5 {
  --tw-ring-color: rgb(94 234 212 / 0.05);
}

.ring-teal-300\/50 {
  --tw-ring-color: rgb(94 234 212 / 0.5);
}

.ring-teal-300\/55 {
  --tw-ring-color: rgb(94 234 212 / 0.55);
}

.ring-teal-300\/60 {
  --tw-ring-color: rgb(94 234 212 / 0.6);
}

.ring-teal-300\/65 {
  --tw-ring-color: rgb(94 234 212 / 0.65);
}

.ring-teal-300\/70 {
  --tw-ring-color: rgb(94 234 212 / 0.7);
}

.ring-teal-300\/75 {
  --tw-ring-color: rgb(94 234 212 / 0.75);
}

.ring-teal-300\/80 {
  --tw-ring-color: rgb(94 234 212 / 0.8);
}

.ring-teal-300\/85 {
  --tw-ring-color: rgb(94 234 212 / 0.85);
}

.ring-teal-300\/90 {
  --tw-ring-color: rgb(94 234 212 / 0.9);
}

.ring-teal-300\/95 {
  --tw-ring-color: rgb(94 234 212 / 0.95);
}

.ring-teal-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(45 212 191 / var(--tw-ring-opacity, 1));
}

.ring-teal-400\/0 {
  --tw-ring-color: rgb(45 212 191 / 0);
}

.ring-teal-400\/10 {
  --tw-ring-color: rgb(45 212 191 / 0.1);
}

.ring-teal-400\/100 {
  --tw-ring-color: rgb(45 212 191 / 1);
}

.ring-teal-400\/15 {
  --tw-ring-color: rgb(45 212 191 / 0.15);
}

.ring-teal-400\/20 {
  --tw-ring-color: rgb(45 212 191 / 0.2);
}

.ring-teal-400\/25 {
  --tw-ring-color: rgb(45 212 191 / 0.25);
}

.ring-teal-400\/30 {
  --tw-ring-color: rgb(45 212 191 / 0.3);
}

.ring-teal-400\/35 {
  --tw-ring-color: rgb(45 212 191 / 0.35);
}

.ring-teal-400\/40 {
  --tw-ring-color: rgb(45 212 191 / 0.4);
}

.ring-teal-400\/45 {
  --tw-ring-color: rgb(45 212 191 / 0.45);
}

.ring-teal-400\/5 {
  --tw-ring-color: rgb(45 212 191 / 0.05);
}

.ring-teal-400\/50 {
  --tw-ring-color: rgb(45 212 191 / 0.5);
}

.ring-teal-400\/55 {
  --tw-ring-color: rgb(45 212 191 / 0.55);
}

.ring-teal-400\/60 {
  --tw-ring-color: rgb(45 212 191 / 0.6);
}

.ring-teal-400\/65 {
  --tw-ring-color: rgb(45 212 191 / 0.65);
}

.ring-teal-400\/70 {
  --tw-ring-color: rgb(45 212 191 / 0.7);
}

.ring-teal-400\/75 {
  --tw-ring-color: rgb(45 212 191 / 0.75);
}

.ring-teal-400\/80 {
  --tw-ring-color: rgb(45 212 191 / 0.8);
}

.ring-teal-400\/85 {
  --tw-ring-color: rgb(45 212 191 / 0.85);
}

.ring-teal-400\/90 {
  --tw-ring-color: rgb(45 212 191 / 0.9);
}

.ring-teal-400\/95 {
  --tw-ring-color: rgb(45 212 191 / 0.95);
}

.ring-teal-50 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(240 253 250 / var(--tw-ring-opacity, 1));
}

.ring-teal-50\/0 {
  --tw-ring-color: rgb(240 253 250 / 0);
}

.ring-teal-50\/10 {
  --tw-ring-color: rgb(240 253 250 / 0.1);
}

.ring-teal-50\/100 {
  --tw-ring-color: rgb(240 253 250 / 1);
}

.ring-teal-50\/15 {
  --tw-ring-color: rgb(240 253 250 / 0.15);
}

.ring-teal-50\/20 {
  --tw-ring-color: rgb(240 253 250 / 0.2);
}

.ring-teal-50\/25 {
  --tw-ring-color: rgb(240 253 250 / 0.25);
}

.ring-teal-50\/30 {
  --tw-ring-color: rgb(240 253 250 / 0.3);
}

.ring-teal-50\/35 {
  --tw-ring-color: rgb(240 253 250 / 0.35);
}

.ring-teal-50\/40 {
  --tw-ring-color: rgb(240 253 250 / 0.4);
}

.ring-teal-50\/45 {
  --tw-ring-color: rgb(240 253 250 / 0.45);
}

.ring-teal-50\/5 {
  --tw-ring-color: rgb(240 253 250 / 0.05);
}

.ring-teal-50\/50 {
  --tw-ring-color: rgb(240 253 250 / 0.5);
}

.ring-teal-50\/55 {
  --tw-ring-color: rgb(240 253 250 / 0.55);
}

.ring-teal-50\/60 {
  --tw-ring-color: rgb(240 253 250 / 0.6);
}

.ring-teal-50\/65 {
  --tw-ring-color: rgb(240 253 250 / 0.65);
}

.ring-teal-50\/70 {
  --tw-ring-color: rgb(240 253 250 / 0.7);
}

.ring-teal-50\/75 {
  --tw-ring-color: rgb(240 253 250 / 0.75);
}

.ring-teal-50\/80 {
  --tw-ring-color: rgb(240 253 250 / 0.8);
}

.ring-teal-50\/85 {
  --tw-ring-color: rgb(240 253 250 / 0.85);
}

.ring-teal-50\/90 {
  --tw-ring-color: rgb(240 253 250 / 0.9);
}

.ring-teal-50\/95 {
  --tw-ring-color: rgb(240 253 250 / 0.95);
}

.ring-teal-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(20 184 166 / var(--tw-ring-opacity, 1));
}

.ring-teal-500\/0 {
  --tw-ring-color: rgb(20 184 166 / 0);
}

.ring-teal-500\/10 {
  --tw-ring-color: rgb(20 184 166 / 0.1);
}

.ring-teal-500\/100 {
  --tw-ring-color: rgb(20 184 166 / 1);
}

.ring-teal-500\/15 {
  --tw-ring-color: rgb(20 184 166 / 0.15);
}

.ring-teal-500\/20 {
  --tw-ring-color: rgb(20 184 166 / 0.2);
}

.ring-teal-500\/25 {
  --tw-ring-color: rgb(20 184 166 / 0.25);
}

.ring-teal-500\/30 {
  --tw-ring-color: rgb(20 184 166 / 0.3);
}

.ring-teal-500\/35 {
  --tw-ring-color: rgb(20 184 166 / 0.35);
}

.ring-teal-500\/40 {
  --tw-ring-color: rgb(20 184 166 / 0.4);
}

.ring-teal-500\/45 {
  --tw-ring-color: rgb(20 184 166 / 0.45);
}

.ring-teal-500\/5 {
  --tw-ring-color: rgb(20 184 166 / 0.05);
}

.ring-teal-500\/50 {
  --tw-ring-color: rgb(20 184 166 / 0.5);
}

.ring-teal-500\/55 {
  --tw-ring-color: rgb(20 184 166 / 0.55);
}

.ring-teal-500\/60 {
  --tw-ring-color: rgb(20 184 166 / 0.6);
}

.ring-teal-500\/65 {
  --tw-ring-color: rgb(20 184 166 / 0.65);
}

.ring-teal-500\/70 {
  --tw-ring-color: rgb(20 184 166 / 0.7);
}

.ring-teal-500\/75 {
  --tw-ring-color: rgb(20 184 166 / 0.75);
}

.ring-teal-500\/80 {
  --tw-ring-color: rgb(20 184 166 / 0.8);
}

.ring-teal-500\/85 {
  --tw-ring-color: rgb(20 184 166 / 0.85);
}

.ring-teal-500\/90 {
  --tw-ring-color: rgb(20 184 166 / 0.9);
}

.ring-teal-500\/95 {
  --tw-ring-color: rgb(20 184 166 / 0.95);
}

.ring-teal-600 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(13 148 136 / var(--tw-ring-opacity, 1));
}

.ring-teal-600\/0 {
  --tw-ring-color: rgb(13 148 136 / 0);
}

.ring-teal-600\/10 {
  --tw-ring-color: rgb(13 148 136 / 0.1);
}

.ring-teal-600\/100 {
  --tw-ring-color: rgb(13 148 136 / 1);
}

.ring-teal-600\/15 {
  --tw-ring-color: rgb(13 148 136 / 0.15);
}

.ring-teal-600\/20 {
  --tw-ring-color: rgb(13 148 136 / 0.2);
}

.ring-teal-600\/25 {
  --tw-ring-color: rgb(13 148 136 / 0.25);
}

.ring-teal-600\/30 {
  --tw-ring-color: rgb(13 148 136 / 0.3);
}

.ring-teal-600\/35 {
  --tw-ring-color: rgb(13 148 136 / 0.35);
}

.ring-teal-600\/40 {
  --tw-ring-color: rgb(13 148 136 / 0.4);
}

.ring-teal-600\/45 {
  --tw-ring-color: rgb(13 148 136 / 0.45);
}

.ring-teal-600\/5 {
  --tw-ring-color: rgb(13 148 136 / 0.05);
}

.ring-teal-600\/50 {
  --tw-ring-color: rgb(13 148 136 / 0.5);
}

.ring-teal-600\/55 {
  --tw-ring-color: rgb(13 148 136 / 0.55);
}

.ring-teal-600\/60 {
  --tw-ring-color: rgb(13 148 136 / 0.6);
}

.ring-teal-600\/65 {
  --tw-ring-color: rgb(13 148 136 / 0.65);
}

.ring-teal-600\/70 {
  --tw-ring-color: rgb(13 148 136 / 0.7);
}

.ring-teal-600\/75 {
  --tw-ring-color: rgb(13 148 136 / 0.75);
}

.ring-teal-600\/80 {
  --tw-ring-color: rgb(13 148 136 / 0.8);
}

.ring-teal-600\/85 {
  --tw-ring-color: rgb(13 148 136 / 0.85);
}

.ring-teal-600\/90 {
  --tw-ring-color: rgb(13 148 136 / 0.9);
}

.ring-teal-600\/95 {
  --tw-ring-color: rgb(13 148 136 / 0.95);
}

.ring-teal-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(15 118 110 / var(--tw-ring-opacity, 1));
}

.ring-teal-700\/0 {
  --tw-ring-color: rgb(15 118 110 / 0);
}

.ring-teal-700\/10 {
  --tw-ring-color: rgb(15 118 110 / 0.1);
}

.ring-teal-700\/100 {
  --tw-ring-color: rgb(15 118 110 / 1);
}

.ring-teal-700\/15 {
  --tw-ring-color: rgb(15 118 110 / 0.15);
}

.ring-teal-700\/20 {
  --tw-ring-color: rgb(15 118 110 / 0.2);
}

.ring-teal-700\/25 {
  --tw-ring-color: rgb(15 118 110 / 0.25);
}

.ring-teal-700\/30 {
  --tw-ring-color: rgb(15 118 110 / 0.3);
}

.ring-teal-700\/35 {
  --tw-ring-color: rgb(15 118 110 / 0.35);
}

.ring-teal-700\/40 {
  --tw-ring-color: rgb(15 118 110 / 0.4);
}

.ring-teal-700\/45 {
  --tw-ring-color: rgb(15 118 110 / 0.45);
}

.ring-teal-700\/5 {
  --tw-ring-color: rgb(15 118 110 / 0.05);
}

.ring-teal-700\/50 {
  --tw-ring-color: rgb(15 118 110 / 0.5);
}

.ring-teal-700\/55 {
  --tw-ring-color: rgb(15 118 110 / 0.55);
}

.ring-teal-700\/60 {
  --tw-ring-color: rgb(15 118 110 / 0.6);
}

.ring-teal-700\/65 {
  --tw-ring-color: rgb(15 118 110 / 0.65);
}

.ring-teal-700\/70 {
  --tw-ring-color: rgb(15 118 110 / 0.7);
}

.ring-teal-700\/75 {
  --tw-ring-color: rgb(15 118 110 / 0.75);
}

.ring-teal-700\/80 {
  --tw-ring-color: rgb(15 118 110 / 0.8);
}

.ring-teal-700\/85 {
  --tw-ring-color: rgb(15 118 110 / 0.85);
}

.ring-teal-700\/90 {
  --tw-ring-color: rgb(15 118 110 / 0.9);
}

.ring-teal-700\/95 {
  --tw-ring-color: rgb(15 118 110 / 0.95);
}

.ring-teal-800 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(17 94 89 / var(--tw-ring-opacity, 1));
}

.ring-teal-800\/0 {
  --tw-ring-color: rgb(17 94 89 / 0);
}

.ring-teal-800\/10 {
  --tw-ring-color: rgb(17 94 89 / 0.1);
}

.ring-teal-800\/100 {
  --tw-ring-color: rgb(17 94 89 / 1);
}

.ring-teal-800\/15 {
  --tw-ring-color: rgb(17 94 89 / 0.15);
}

.ring-teal-800\/20 {
  --tw-ring-color: rgb(17 94 89 / 0.2);
}

.ring-teal-800\/25 {
  --tw-ring-color: rgb(17 94 89 / 0.25);
}

.ring-teal-800\/30 {
  --tw-ring-color: rgb(17 94 89 / 0.3);
}

.ring-teal-800\/35 {
  --tw-ring-color: rgb(17 94 89 / 0.35);
}

.ring-teal-800\/40 {
  --tw-ring-color: rgb(17 94 89 / 0.4);
}

.ring-teal-800\/45 {
  --tw-ring-color: rgb(17 94 89 / 0.45);
}

.ring-teal-800\/5 {
  --tw-ring-color: rgb(17 94 89 / 0.05);
}

.ring-teal-800\/50 {
  --tw-ring-color: rgb(17 94 89 / 0.5);
}

.ring-teal-800\/55 {
  --tw-ring-color: rgb(17 94 89 / 0.55);
}

.ring-teal-800\/60 {
  --tw-ring-color: rgb(17 94 89 / 0.6);
}

.ring-teal-800\/65 {
  --tw-ring-color: rgb(17 94 89 / 0.65);
}

.ring-teal-800\/70 {
  --tw-ring-color: rgb(17 94 89 / 0.7);
}

.ring-teal-800\/75 {
  --tw-ring-color: rgb(17 94 89 / 0.75);
}

.ring-teal-800\/80 {
  --tw-ring-color: rgb(17 94 89 / 0.8);
}

.ring-teal-800\/85 {
  --tw-ring-color: rgb(17 94 89 / 0.85);
}

.ring-teal-800\/90 {
  --tw-ring-color: rgb(17 94 89 / 0.9);
}

.ring-teal-800\/95 {
  --tw-ring-color: rgb(17 94 89 / 0.95);
}

.ring-teal-900 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(19 78 74 / var(--tw-ring-opacity, 1));
}

.ring-teal-900\/0 {
  --tw-ring-color: rgb(19 78 74 / 0);
}

.ring-teal-900\/10 {
  --tw-ring-color: rgb(19 78 74 / 0.1);
}

.ring-teal-900\/100 {
  --tw-ring-color: rgb(19 78 74 / 1);
}

.ring-teal-900\/15 {
  --tw-ring-color: rgb(19 78 74 / 0.15);
}

.ring-teal-900\/20 {
  --tw-ring-color: rgb(19 78 74 / 0.2);
}

.ring-teal-900\/25 {
  --tw-ring-color: rgb(19 78 74 / 0.25);
}

.ring-teal-900\/30 {
  --tw-ring-color: rgb(19 78 74 / 0.3);
}

.ring-teal-900\/35 {
  --tw-ring-color: rgb(19 78 74 / 0.35);
}

.ring-teal-900\/40 {
  --tw-ring-color: rgb(19 78 74 / 0.4);
}

.ring-teal-900\/45 {
  --tw-ring-color: rgb(19 78 74 / 0.45);
}

.ring-teal-900\/5 {
  --tw-ring-color: rgb(19 78 74 / 0.05);
}

.ring-teal-900\/50 {
  --tw-ring-color: rgb(19 78 74 / 0.5);
}

.ring-teal-900\/55 {
  --tw-ring-color: rgb(19 78 74 / 0.55);
}

.ring-teal-900\/60 {
  --tw-ring-color: rgb(19 78 74 / 0.6);
}

.ring-teal-900\/65 {
  --tw-ring-color: rgb(19 78 74 / 0.65);
}

.ring-teal-900\/70 {
  --tw-ring-color: rgb(19 78 74 / 0.7);
}

.ring-teal-900\/75 {
  --tw-ring-color: rgb(19 78 74 / 0.75);
}

.ring-teal-900\/80 {
  --tw-ring-color: rgb(19 78 74 / 0.8);
}

.ring-teal-900\/85 {
  --tw-ring-color: rgb(19 78 74 / 0.85);
}

.ring-teal-900\/90 {
  --tw-ring-color: rgb(19 78 74 / 0.9);
}

.ring-teal-900\/95 {
  --tw-ring-color: rgb(19 78 74 / 0.95);
}

.ring-white\/10 {
  --tw-ring-color: rgb(255 255 255 / 0.1);
}

.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.backdrop-blur {
  --tw-backdrop-blur: blur(8px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.backdrop-blur-\[1px\] {
  --tw-backdrop-blur: blur(1px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.backdrop-filter {
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.mr-history-page {
  background:
    radial-gradient(circle at top left, rgba(153, 246, 228, 0.55), transparent 30%),
    radial-gradient(circle at bottom right, rgba(191, 219, 254, 0.7), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
}

.mr-train-page {
  background:
    radial-gradient(circle at top right, rgba(186, 230, 253, 0.85), transparent 32%),
    radial-gradient(circle at bottom left, rgba(254, 215, 170, 0.75), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #fff7ed 100%);
}

#authShell.hidden,
#appShell.hidden,
[id^="tab"].hidden,
[id^="authPanel"].hidden {
  display: none !important;
}

.mr-nav-item.active {
  background-color: #f5f4ed;
  border-left-color: #c96442;
  color: #c96442;
}

.material-symbols-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 1em;
  line-height: 1;
}

.auth-screen {
  background: radial-gradient(ellipse at 20% 60%, #0d2444 0%, #07111f 45%, #050d1a 100%);
}

.auth-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.auth-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(56, 189, 248, 0.7) 50%, transparent 100%);
  box-shadow: 0 0 18px 3px rgba(56, 189, 248, 0.25);
  animation: authScan 7s linear infinite;
  pointer-events: none;
}

@keyframes authScan {
  0% { top: -2px; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.auth-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(37, 99, 235, 0.28);
  border-radius: 9999px;
  background: rgba(37, 99, 235, 0.12);
  padding: 6px 14px;
  color: #93c5fd;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  backdrop-filter: blur(4px);
}

.auth-badge__dot {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: authDotBlink 2s ease-in-out infinite;
}

@keyframes authDotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.auth-logo-icon {
  display: flex;
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99, 179, 237, 0.3);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.7) 0%, rgba(37, 99, 235, 0.35) 100%);
  box-shadow: 0 0 36px rgba(37, 99, 235, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.auth-title-glow {
  background: linear-gradient(135deg, #ffffff 0%, #bfdbfe 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(96, 165, 250, 0.4));
}

.auth-feature-card {
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 16px 14px;
  backdrop-filter: blur(8px);
  transition: all 0.22s;
}

.auth-feature-card:hover {
  border-color: rgba(96, 165, 250, 0.4);
  background: rgba(37, 99, 235, 0.1);
  transform: translateY(-3px);
}

.auth-feature-icon {
  margin-bottom: 8px;
  font-size: 20px;
}

.auth-login-card {
  border: 1px solid rgba(99, 179, 237, 0.18);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.65);
  padding: 36px 32px;
  box-shadow: 0 0 70px rgba(37, 99, 235, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(28px);
}

.auth-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(99, 179, 237, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  color: #f1f5f9;
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}

.auth-input::placeholder {
  color: rgba(148, 163, 184, 0.45);
}

.auth-input:focus {
  border-color: rgba(96, 165, 250, 0.55);
  background: rgba(37, 99, 235, 0.08);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.auth-label {
  display: block;
  margin-bottom: 8px;
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-submit-btn {
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  padding: 13px 28px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 22px rgba(37, 99, 235, 0.42);
  cursor: pointer;
  transition: all 0.2s;
}

.auth-submit-btn:hover {
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
  box-shadow: 0 6px 30px rgba(37, 99, 235, 0.6);
  transform: translateY(-1px);
}

.auth-tab-bar {
  display: flex;
  gap: 4px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
}

.auth-tab {
  flex: 1;
  border: none;
  border-radius: 9px;
  background: transparent;
  padding: 9px 0;
  color: rgba(148, 163, 184, 0.75);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.auth-tab.active {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #ffffff;
  box-shadow: 0 2px 14px rgba(37, 99, 235, 0.45);
}

.auth-demo-hint {
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 10px;
  background: rgba(30, 58, 138, 0.2);
  padding: 12px 14px;
  color: #94a3b8;
  font-size: 12px;
}

.auth-demo-hint code {
  color: #93c5fd;
  font-weight: 700;
}

.auth-demo-hint--warning {
  margin-bottom: 16px;
  border-color: rgba(245, 158, 11, 0.28);
  background: rgba(120, 53, 15, 0.18);
}

.file\:mr-4::-webkit-file-upload-button {
  margin-right: 1rem;
}

.file\:mr-4::file-selector-button {
  margin-right: 1rem;
}

.file\:rounded-lg::-webkit-file-upload-button {
  border-radius: 0.5rem;
}

.file\:rounded-lg::file-selector-button {
  border-radius: 0.5rem;
}

.file\:border-0::-webkit-file-upload-button {
  border-width: 0px;
}

.file\:border-0::file-selector-button {
  border-width: 0px;
}

.file\:bg-surface-variant::-webkit-file-upload-button {
  --tw-bg-opacity: 1;
  background-color: rgb(227 227 220 / var(--tw-bg-opacity, 1));
}

.file\:bg-surface-variant::file-selector-button {
  --tw-bg-opacity: 1;
  background-color: rgb(227 227 220 / var(--tw-bg-opacity, 1));
}

.file\:px-4::-webkit-file-upload-button {
  padding-left: 1rem;
  padding-right: 1rem;
}

.file\:px-4::file-selector-button {
  padding-left: 1rem;
  padding-right: 1rem;
}

.file\:py-2::-webkit-file-upload-button {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.file\:py-2::file-selector-button {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.file\:text-sm::-webkit-file-upload-button {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.file\:text-sm::file-selector-button {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.file\:font-semibold::-webkit-file-upload-button {
  font-weight: 600;
}

.file\:font-semibold::file-selector-button {
  font-weight: 600;
}

.file\:text-on-surface-variant::-webkit-file-upload-button {
  --tw-text-opacity: 1;
  color: rgb(86 66 60 / var(--tw-text-opacity, 1));
}

.file\:text-on-surface-variant::file-selector-button {
  --tw-text-opacity: 1;
  color: rgb(86 66 60 / var(--tw-text-opacity, 1));
}

.last\:border-0:last-child {
  border-width: 0px;
}

.hover\:-translate-y-0\.5:hover {
  --tw-translate-y: -0.125rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:border-amber-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(245 158 11 / var(--tw-border-opacity, 1));
}

.hover\:border-blue-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}

.hover\:border-primary:hover {
  --tw-border-opacity: 1;
  border-color: rgb(154 64 33 / var(--tw-border-opacity, 1));
}

.hover\:border-slate-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
}

.hover\:border-stone-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(214 211 209 / var(--tw-border-opacity, 1));
}

.hover\:border-teal-200:hover {
  --tw-border-opacity: 1;
  border-color: rgb(153 246 228 / var(--tw-border-opacity, 1));
}

.hover\:border-teal-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(45 212 191 / var(--tw-border-opacity, 1));
}

.hover\:bg-\[\#f5f4ed\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(245 244 237 / var(--tw-bg-opacity, 1));
}

.hover\:bg-blue-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}

.hover\:bg-blue-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}

.hover\:bg-blue-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}

.hover\:bg-outline-variant:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(220 193 184 / var(--tw-bg-opacity, 1));
}

.hover\:bg-red-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}

.hover\:bg-slate-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
}

.hover\:bg-slate-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
}

.hover\:bg-slate-50\/80:hover {
  background-color: rgb(248 250 252 / 0.8);
}

.hover\:bg-slate-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(100 116 139 / var(--tw-bg-opacity, 1));
}

.hover\:bg-slate-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(51 65 85 / var(--tw-bg-opacity, 1));
}

.hover\:bg-slate-700\/50:hover {
  background-color: rgb(51 65 85 / 0.5);
}

.hover\:bg-slate-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(30 41 59 / var(--tw-bg-opacity, 1));
}

.hover\:bg-surface-tint:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(157 67 36 / var(--tw-bg-opacity, 1));
}

.hover\:bg-surface-variant:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(227 227 220 / var(--tw-bg-opacity, 1));
}

.hover\:bg-teal-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 250 / var(--tw-bg-opacity, 1));
}

.hover\:bg-white\/10:hover {
  background-color: rgb(255 255 255 / 0.1);
}

.hover\:text-\[\#c96442\]:hover {
  --tw-text-opacity: 1;
  color: rgb(201 100 66 / var(--tw-text-opacity, 1));
}

.hover\:text-blue-400:hover {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}

.hover\:text-red-700:hover {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}

.hover\:text-sky-300:hover {
  --tw-text-opacity: 1;
  color: rgb(125 211 252 / var(--tw-text-opacity, 1));
}

.hover\:text-slate-200:hover {
  --tw-text-opacity: 1;
  color: rgb(226 232 240 / var(--tw-text-opacity, 1));
}

.hover\:text-slate-300:hover {
  --tw-text-opacity: 1;
  color: rgb(203 213 225 / var(--tw-text-opacity, 1));
}

.hover\:text-stone-800:hover {
  --tw-text-opacity: 1;
  color: rgb(41 37 36 / var(--tw-text-opacity, 1));
}

.hover\:text-stone-900:hover {
  --tw-text-opacity: 1;
  color: rgb(28 25 23 / var(--tw-text-opacity, 1));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.hover\:shadow-md:hover {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-sm:hover {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-slate-200\/80:hover {
  --tw-shadow-color: rgb(226 232 240 / 0.8);
  --tw-shadow: var(--tw-shadow-colored);
}

.hover\:file\:bg-outline-variant::-webkit-file-upload-button:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(220 193 184 / var(--tw-bg-opacity, 1));
}

.hover\:file\:bg-outline-variant::file-selector-button:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(220 193 184 / var(--tw-bg-opacity, 1));
}

.focus\:border-blue-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}

.focus\:border-blue-600:focus {
  --tw-border-opacity: 1;
  border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}

.focus\:border-primary:focus {
  --tw-border-opacity: 1;
  border-color: rgb(154 64 33 / var(--tw-border-opacity, 1));
}

.focus\:border-teal-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(20 184 166 / var(--tw-border-opacity, 1));
}

.focus\:ring-0:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-4:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-sky-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(224 242 254 / var(--tw-ring-opacity, 1));
}

.focus\:ring-teal-100:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(204 251 241 / var(--tw-ring-opacity, 1));
}

.focus\:ring-teal-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(20 184 166 / var(--tw-ring-opacity, 1));
}

.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}

.disabled\:border-slate-200:disabled {
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}

.disabled\:text-slate-400:disabled {
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity, 1));
}

.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

.group:hover .group-hover\:scale-\[1\.01\] {
  --tw-scale-x: 1.01;
  --tw-scale-y: 1.01;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:scale-\[1\.02\] {
  --tw-scale-x: 1.02;
  --tw-scale-y: 1.02;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:text-primary {
  --tw-text-opacity: 1;
  color: rgb(154 64 33 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sm\:grid-cols-\[1fr\2c auto\] {
    grid-template-columns: 1fr auto;
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:items-center {
    align-items: center;
  }

  .sm\:justify-between {
    justify-content: space-between;
  }
}

@media (min-width: 768px) {

  .md\:flex {
    display: flex;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-start {
    align-items: flex-start;
  }

  .md\:items-end {
    align-items: flex-end;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:p-10 {
    padding: 2.5rem;
  }

  .md\:p-6 {
    padding: 1.5rem;
  }

  .md\:p-8 {
    padding: 2rem;
  }

  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1024px) {

  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .lg\:grid-cols-\[1\.4fr_1fr\] {
    grid-template-columns: 1.4fr 1fr;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:items-start {
    align-items: flex-start;
  }

  .lg\:justify-between {
    justify-content: space-between;
  }
}

@media (min-width: 1280px) {

  .xl\:sticky {
    position: sticky;
  }

  .xl\:top-5 {
    top: 1.25rem;
  }

  .xl\:col-span-12 {
    grid-column: span 12 / span 12;
  }

  .xl\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .xl\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .xl\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .xl\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .xl\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .xl\:flex {
    display: flex;
  }

  .xl\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .xl\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .xl\:grid-cols-\[1\.1fr\2c 0\.9fr\] {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .xl\:grid-cols-\[1\.2fr\2c 1fr\] {
    grid-template-columns: 1.2fr 1fr;
  }

  .xl\:grid-cols-\[1\.35fr\2c 0\.95fr\] {
    grid-template-columns: 1.35fr 0.95fr;
  }

  .xl\:grid-cols-\[1\.35fr\2c 1fr\] {
    grid-template-columns: 1.35fr 1fr;
  }

  .xl\:grid-cols-\[1\.4fr\2c 0\.9fr\] {
    grid-template-columns: 1.4fr 0.9fr;
  }

  .xl\:grid-cols-\[1\.5fr\2c 0\.9fr\] {
    grid-template-columns: 1.5fr 0.9fr;
  }

  .xl\:grid-cols-\[360px\2c minmax\(0\2c 1fr\)\] {
    grid-template-columns: 360px minmax(0,1fr);
  }

  .xl\:gap-16 {
    gap: 4rem;
  }

  .xl\:self-start {
    align-self: flex-start;
  }
}

@media (min-width: 1536px) {

  .\32xl\:max-w-\[1800px\] {
    max-width: 1800px;
  }

  .\32xl\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .\32xl\:grid-cols-\[400px\2c minmax\(0\2c 1fr\)\] {
    grid-template-columns: 400px minmax(0,1fr);
  }
}
