:root {
  color-scheme: light;
  --app-bg: #f7fafc;
  --app-bg-alt: #eef3f8;
  --app-panel: #ffffff;
  --app-panel-2: #f2f6fb;
  --app-line: rgba(51, 51, 51, 0.18);
  --app-text: #333333;
  --app-muted: rgba(51, 51, 51, 0.65);
  --app-accent: #3890c7;
  --app-accent-2: #2a7fb7;
  --app-accent-3: #58a6d6;
  --app-accent-soft: rgba(56, 144, 199, 0.2);
  --app-danger-soft: rgba(198, 40, 40, 0.16);
  --app-success: #2f9e44;
  --app-warning: #b7791f;
  --app-danger: #c62828;
  --app-shadow: 0 14px 30px rgba(51, 51, 51, 0.12);
  --app-shadow-2: 0 10px 22px rgba(51, 51, 51, 0.12);
  --app-focus: rgba(56, 144, 199, 0.25);
  --app-bg-gradient: radial-gradient(900px 520px at 12% 6%, rgba(56, 144, 199, 0.12), transparent 60%),
    radial-gradient(760px 520px at 88% 12%, rgba(88, 166, 214, 0.12), transparent 60%),
    radial-gradient(720px 520px at 50% 92%, rgba(47, 158, 68, 0.08), transparent 60%),
    var(--app-bg);
}

[data-theme="dark"] {
  color-scheme: dark;
  --app-bg: #121417;
  --app-bg-alt: #1b1f24;
  --app-panel: #1f242a;
  --app-panel-2: #1a1f25;
  --app-line: rgba(247, 250, 252, 0.18);
  --app-text: #f7fafc;
  --app-muted: rgba(247, 250, 252, 0.7);
  --app-accent: #3890c7;
  --app-accent-2: #58a6d6;
  --app-accent-3: #7ec2e8;
  --app-accent-soft: rgba(56, 144, 199, 0.28);
  --app-danger-soft: rgba(229, 57, 53, 0.22);
  --app-success: #4caf50;
  --app-warning: #ffb020;
  --app-danger: #e53935;
  --app-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  --app-shadow-2: 0 10px 28px rgba(0, 0, 0, 0.5);
  --app-focus: rgba(56, 144, 199, 0.4);
  --app-bg-gradient: radial-gradient(900px 520px at 12% 6%, rgba(56, 144, 199, 0.2), transparent 60%),
    radial-gradient(760px 520px at 88% 12%, rgba(126, 194, 232, 0.15), transparent 60%),
    radial-gradient(720px 520px at 50% 92%, rgba(76, 175, 80, 0.14), transparent 60%),
    var(--app-bg);
}

.admin-app {
  color-scheme: dark;
  --app-bg: #0f1113;
  --app-bg-alt: #14181d;
  --app-panel: #151a20;
  --app-panel-2: #1b2027;
  --app-line: rgba(255, 255, 255, 0.12);
  --app-text: #e6e9ee;
  --app-muted: rgba(230, 233, 238, 0.65);
  --app-accent: #3890c7;
  --app-accent-2: #58a6d6;
  --app-accent-3: #7ec2e8;
  --app-accent-soft: rgba(56, 144, 199, 0.28);
  --app-danger-soft: rgba(229, 57, 53, 0.22);
  --app-success: #4caf50;
  --app-warning: #ffb020;
  --app-danger: #e53935;
  --app-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  --app-shadow-2: 0 10px 28px rgba(0, 0, 0, 0.5);
  --app-focus: rgba(56, 144, 199, 0.4);
}

html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

table {
  width: 100%;
  border-collapse: collapse;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin-bottom: 60px;
  background: var(--app-bg);
  color: var(--app-text);
  font-family: "Space Grotesk", "Segoe UI", Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
}

.link {
  color: var(--app-text);
  text-decoration: underline;
}

.link:hover {
  color: var(--app-accent);
}

.wrap,
.page,
.admin-main {
  color: var(--app-text);
}

.admin-main .page,
.admin-main .wrap {
  width: 100%;
  max-width: none;
}

.subtitle,
.muted,
.sub {
  color: var(--app-muted);
}

.card {
  background: var(--app-panel);
  color: var(--app-text);
  border: 1px solid var(--app-line);
  border-radius: 14px;
  box-shadow: var(--app-shadow-2);
}

.card-title {
  color: var(--app-text);
  font-weight: 700;
}

.panel {
  max-width: 100%;
  overflow-x: auto;
}

.panel table {
  width: 100%;
}

.table-wrap {
  border: 1px solid var(--app-line);
  border-radius: 14px;
  background: var(--app-panel);
  overflow-x: auto;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  color: var(--app-text);
}

.table-wrap th,
.table-wrap td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--app-line);
}

.table-wrap th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--app-muted);
}

.table-wrap tr:last-child td {
  border-bottom: 0;
}

.table {
  color: var(--app-text);
}

.table th,
.table td {
  border-color: var(--app-line);
}

.table thead th {
  color: var(--app-muted);
}

.request-table {
  table-layout: fixed;
  width: 100%;
}

.request-table .request-name {
  max-width: none;
  overflow: visible;
  text-overflow: initial;
  white-space: normal;
  word-break: break-word;
}

.request-table .request-actions {
  width: auto;
  min-width: 0;
  white-space: normal;
}

.request-table .request-actions-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .request-table th,
  .request-table td {
    white-space: normal;
    word-break: break-word;
  }
}

.request-kpi-list {
  display: grid;
  gap: 12px;
  width: 90vw;
  max-width: none;
  margin: 0 auto;
  justify-items: stretch;
  padding: 0 12px;
}

.request-kpi {
  border: 1px solid var(--app-line);
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--app-panel-2);
  display: grid;
  gap: 12px;
  width: 100%;
  box-shadow: var(--app-shadow-2);
}

.request-kpi-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 12px;
  align-items: start;
}

.request-kpi-grid.bottom {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  align-items: center;
}

.kpi-field {
  display: grid;
  gap: 6px;
  min-width: 0;
  width: 100%;
}

.kpi-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--app-muted);
  font-weight: 700;
  width: 100%;
}

.kpi-value {
  font-size: 13px;
  font-weight: 700;
  word-break: break-word;
  white-space: normal;
  width: 100%;
}

.kpi-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 900px) {
  .request-kpi-list {
    width: 100%;
  }

  .kpi-actions {
    justify-content: flex-start;
  }
}

.toast {
  background: var(--app-panel);
  color: var(--app-text);
  border: 1px solid var(--app-line);
}

input,
select,
textarea,
.form-control,
.form-select,
.input {
  background: var(--app-panel);
  color: var(--app-text);
  border-color: var(--app-line);
}

.kpi,
.kpi-mini,
.rep-kpi,
.settings-kpi,
.daily-kpi,
.kpi-table {
  color: var(--app-text);
}

.kpi .label,
.kpi-mini .label,
.rep-kpi h4,
.settings-kpi span,
.daily-kpi .label,
.kpi .hint,
.kpi-trend {
  color: var(--app-muted);
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.12rem var(--app-bg), 0 0 0 0.25rem var(--app-focus);
}

.btn,
button,
.btn-hero,
.login-btn,
.pw-btn,
.log-btn {
  max-width: 100%;
  white-space: normal;
  line-height: 1.15;
}

.btn.kpi-btn,
.rep-btn.kpi-btn {
  background: linear-gradient(135deg, rgba(56,144,199,.35), rgba(99,102,241,.3));
  border: 1px solid rgba(56,144,199,.4);
  color: #fff;
  font-weight: 800;
  border-radius: 10px;
  padding: 8px 12px;
}

.btn.kpi-btn.btn-show,
.rep-btn.kpi-btn.btn-show {
  background: linear-gradient(135deg, rgba(56,144,199,.25), rgba(88,166,214,.25));
  border-color: rgba(56,144,199,.5);
}

.btn.kpi-btn.btn-excel,
.rep-btn.kpi-btn.btn-excel {
  background: linear-gradient(135deg, rgba(76,175,80,.25), rgba(66,153,225,.15));
  border-color: rgba(76,175,80,.5);
}

.btn.kpi-btn.btn-pdf,
.rep-btn.kpi-btn.btn-pdf {
  background: linear-gradient(135deg, rgba(229,57,53,.25), rgba(255,176,32,.15));
  border-color: rgba(229,57,53,.5);
}

.global-back-bar {
  display: flex;
  justify-content: flex-end;
  margin: 8px 0 12px;
}

.global-back {
  text-decoration: none;
}

input,
select,
textarea {
  max-width: 100%;
}

.toolbar,
.actions,
.action-row,
.btn-toolbar,
.btn-group {
  flex-wrap: wrap;
}

.action-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.app-nav {
  background: var(--app-panel);
  border-bottom: 1px solid var(--app-line);
  box-shadow: var(--app-shadow-2);
}

.app-nav .nav-link,
.app-nav .navbar-brand {
  color: var(--app-text);
}

.app-nav .navbar-brand {
  font-family: "Unbounded", "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.app-nav .navbar-brand .brand-mark {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.app-nav .btn-link {
  color: var(--app-text);
}

.navbar-toggler {
  border-color: var(--app-line);
}

[data-theme="dark"] .navbar-toggler-icon {
  filter: invert(1);
}

.app-nav .nav-link:hover,
.app-nav .navbar-brand:hover {
  color: var(--app-accent);
}

.overdue-high {
  color: var(--app-danger);
  font-weight: 800;
}

.theme-toggle {
  border: 1px solid var(--app-line);
  background: var(--app-panel-2);
  color: var(--app-text);
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
}

.theme-toggle:hover {
  color: var(--app-accent);
}

.app-footer {
  border-top: 1px solid var(--app-line);
  color: var(--app-muted);
}

:root {
  --admin-active: #f28c28;
  --admin-active-soft: rgba(242, 140, 40, 0.18);
  --admin-glass: linear-gradient(160deg, rgba(56, 144, 199, 0.18), rgba(18, 20, 23, 0.05));
}

[data-theme="dark"] {
  --admin-glass: linear-gradient(160deg, rgba(56, 144, 199, 0.22), rgba(18, 20, 23, 0.35));
}

.admin-shell {
  min-height: 100vh;
  display: flex;
  background: var(--app-bg-gradient);
  position: relative;
}

.admin-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 72px;
  padding: 22px 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--admin-glass);
  border-right: 1px solid var(--app-line);
  box-shadow: var(--app-shadow-2);
  backdrop-filter: blur(18px);
  overflow: hidden;
  overflow-x: hidden;
  transition: width 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: width;
  contain: layout paint;
  z-index: 20;
  font-size: 0.82rem;
}

.admin-sidebar:hover {
  width: 240px;
}

.admin-main {
  flex: 1;
  padding: 24px;
  min-width: 0;
  margin-left: 72px;
  transition: none;
}

.admin-notify-slot {
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 40;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--app-panel);
  border: 1px solid var(--app-line);
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.admin-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 180px;
  opacity: 0;
  overflow: hidden;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.admin-brand-title {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.admin-brand-sub {
  font-size: 12px;
  color: var(--app-muted);
  font-weight: 600;
}

.admin-top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-theme-toggle {
  width: 44px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--app-line);
  background: var(--app-panel);
  position: relative;
  padding: 0;
}

.admin-theme-toggle::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--admin-active);
  position: absolute;
  left: 8px;
  top: 8px;
  transition: transform 0.2s ease;
}

[data-theme="dark"] .admin-theme-toggle::before {
  transform: translateX(16px);
}

.admin-nav {
  display: grid;
  gap: 8px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  padding-bottom: 8px;
}

.admin-item,
.admin-subitem {
  text-decoration: none;
  color: var(--app-text);
  border-radius: 12px;
  padding: 6px 8px;
  font-weight: 600;
  font-size: 0.8rem;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  line-height: 1.2;
  min-width: 0;
  max-width: 100%;
}

.admin-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
}

.admin-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-label {
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 180px;
  max-width: 100%;
  min-width: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.admin-item:hover,
.admin-subitem:hover {
  background: var(--app-panel-2);
  border-color: var(--app-line);
}

.admin-item.is-active,
.admin-subitem.is-active {
  background: var(--admin-active-soft);
  border-color: var(--admin-active);
  color: var(--admin-active);
  box-shadow: 0 0 0 1px rgba(242, 140, 40, 0.25);
}

.admin-group {
  border: 1px solid var(--app-line);
  border-radius: 14px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.admin-group summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.82rem;
  list-style: none;
  color: var(--app-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1.2;
}

.admin-item,
.admin-subitem {
  justify-content: flex-start;
}

.admin-group[open] summary {
  color: var(--admin-active);
}

.admin-group summary::-webkit-details-marker {
  display: none;
}

.admin-sidebar-footer {
  margin-top: auto;
  display: grid;
  gap: 10px;
  flex: 0 0 auto;
  width: 100%;
}

.admin-logout-form {
  margin: 0;
}

.admin-logout {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 1px solid var(--app-line);
}

.admin-notify {
  position: relative;
}

.admin-notify-toggle {
  list-style: none;
  border: 1px solid var(--app-line);
  background: var(--app-panel);
  width: 44px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
}

.admin-notify-toggle::-webkit-details-marker {
  display: none;
}

.admin-notify-icon {
  font-weight: 800;
}

.admin-notify-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--admin-active);
  color: #111;
  font-size: 11px;
  border-radius: 999px;
  padding: 2px 6px;
  font-weight: 800;
}

.admin-notify-badge.is-hidden {
  display: none;
}

.admin-notify-panel {
  position: absolute;
  right: 0;
  margin-top: 10px;
  width: 260px;
  background: var(--app-panel);
  border: 1px solid var(--app-line);
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--app-shadow);
  z-index: 20;
}

.admin-notify-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.admin-notify-list {
  display: grid;
  gap: 6px;
}

.admin-notify-item {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: var(--app-text);
  border-radius: 10px;
  padding: 6px 8px;
  background: var(--app-panel-2);
}

.admin-notify-count {
  font-weight: 800;
  color: var(--admin-active);
}

.admin-menu-badge {
  margin-left: auto;
  min-width: 20px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--admin-active);
  color: #111;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.admin-nav-scroll::-webkit-scrollbar {
  width: 6px;
}

.admin-nav-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.admin-sidebar .kpi,
.admin-sidebar .kpi-mini,
.admin-sidebar .rep-kpi,
.admin-sidebar .settings-kpi {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 0.82rem;
}

.admin-sidebar:hover .admin-menu-badge,
.admin-shell.admin-sidebar-open .admin-menu-badge {
  opacity: 1;
  transform: scale(1);
}

.admin-menu-badge.is-hidden {
  opacity: 0;
  transform: scale(0.9);
}

.admin-mobile-toggle {
  display: none;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 1px solid var(--app-line);
  background: var(--app-panel);
  color: var(--app-text);
  padding: 6px 10px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .admin-sidebar {
    position: fixed;
    width: 240px;
    transform: translateX(-100%);
    transition: transform 0.2s ease;
    z-index: 30;
  }

  .admin-shell.admin-sidebar-open .admin-sidebar {
    transform: translateX(0);
  }

  .admin-main {
    margin-left: 0;
    padding: 18px;
  }

  .admin-mobile-toggle {
    display: inline-flex;
  }

  .admin-sidebar .admin-label,
  .admin-sidebar .admin-brand-text {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.admin-sidebar:hover .admin-label,
.admin-sidebar:hover .admin-brand-text,
.admin-shell.admin-sidebar-open .admin-label,
.admin-shell.admin-sidebar-open .admin-brand-text {
  opacity: 1;
  transform: translateX(0);
}

.admin-group summary:hover {
  background: var(--app-panel-2);
}

@media (max-width: 720px) {
  .overdue-table .sticky-name-col {
    position: sticky;
    left: 0;
    z-index: 2;
    background: var(--app-panel);
  }

  .overdue-table thead .sticky-name-col {
    z-index: 3;
  }
}

.limit-customer-results {
  display: none;
  margin-top: 6px;
  border: 1px solid var(--app-line);
  border-radius: 10px;
  background: var(--app-panel);
  max-height: 240px;
  overflow-y: auto;
  overflow-x: hidden;
}

.limit-customer-results button {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: var(--app-text);
  cursor: pointer;
  white-space: normal;
  word-break: break-word;
}

.limit-customer-results button + button {
  border-top: 1px solid var(--app-line);
}

.limit-customer-results button:hover,
.limit-customer-results button:focus {
  background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 900px) {
  .limit-customer-results {
    max-height: 320px;
  }
}

.visit-request-results {
  display: none;
  margin-top: 6px;
  border: 1px solid var(--app-line);
  border-radius: 10px;
  background: var(--app-panel);
  width: 100%;
  box-sizing: border-box;
  max-height: 240px;
  overflow-y: auto;
  overflow-x: hidden;
}

.visit-request-results button {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: var(--app-text);
  cursor: pointer;
  white-space: normal;
  word-break: break-word;
}

.visit-request-results button + button {
  border-top: 1px solid var(--app-line);
}

.visit-request-results button:hover,
.visit-request-results button:focus {
  background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 900px) {
  .visit-request-results {
    max-height: 320px;
  }
}

.ai-brief-modal {
  position: fixed;
  inset: 0;
  background: rgba(12, 14, 18, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 16px;
}

.ai-brief-modal.show {
  display: flex;
}

.ai-brief-card {
  width: min(700px, 94vw);
  max-height: 84vh;
  overflow-y: auto;
  background: var(--app-panel);
  color: var(--app-text);
  border: 1px solid var(--app-line);
  border-radius: 16px;
  box-shadow: var(--app-shadow-2);
  padding: 16px;
}

.ai-brief-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.ai-brief-title {
  font-weight: 900;
  font-size: 18px;
}

.ai-brief-sub {
  color: var(--app-muted);
  font-size: 12px;
  margin-top: 4px;
}

.ai-brief-section {
  border: 1px solid var(--app-line);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 10px;
  background: var(--app-panel-2);
}

.ai-brief-section h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--app-muted);
  margin-bottom: 6px;
}

.ai-brief-section p,
.ai-brief-section li {
  font-size: 12px;
  line-height: 1.5;
}

.ai-brief-section ul {
  margin: 0;
  padding-left: 18px;
}

.ai-brief-loading {
  padding: 14px 0;
  font-weight: 700;
}

.ai-brief-error {
  padding: 14px 0;
  color: var(--app-danger);
  font-weight: 700;
}

.ai-brief-tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--app-line);
  background: var(--app-panel-2);
  font-weight: 800;
  font-size: 12px;
}
