:root {
  --fq-blue-900: #0a4ea4;
  --fq-blue-700: #0f67c4;
  --fq-blue-600: #1491d6;
  --fq-cyan-500: #10adc5;
  --fq-teal-500: #099fa1;
  --fq-green-600: #2ea83d;
  --fq-green-500: #58bf3f;
  --fq-slate-900: #233649;
  --fq-slate-700: #526679;
  --fq-slate-500: #718396;
  --fq-border: #d7e5ec;
  --fq-border-strong: #bfd2dc;
  --fq-bg: #edf6f8;
  --fq-bg-soft: #f8fcfd;
  --fq-surface: #ffffff;
  --fq-surface-alt: #f1fafb;
  --fq-shadow: 0 18px 36px rgba(20, 90, 126, 0.12);
  --fq-glow: 0 12px 24px rgba(15, 103, 196, 0.24);
  --fq-danger: #cf3d37;
  --fq-danger-soft: rgba(207, 61, 55, 0.12);
  --fq-warning: #dca225;
  --fq-warning-soft: rgba(220, 162, 37, 0.16);
  --fq-info-soft: rgba(16, 173, 197, 0.14);
  --fq-primary-soft: rgba(15, 103, 196, 0.12);
  --fq-success-soft: rgba(46, 168, 61, 0.14);
  --bs-primary: var(--fq-blue-700);
  --bs-primary-rgb: 15, 103, 196;
  --bs-secondary: var(--fq-slate-700);
  --bs-secondary-rgb: 82, 102, 121;
  --bs-success: var(--fq-green-600);
  --bs-success-rgb: 46, 168, 61;
  --bs-info: var(--fq-cyan-500);
  --bs-info-rgb: 16, 173, 197;
  --bs-warning: var(--fq-warning);
  --bs-warning-rgb: 220, 162, 37;
  --bs-danger: var(--fq-danger);
  --bs-danger-rgb: 207, 61, 55;
  --bs-light: var(--fq-bg-soft);
  --bs-light-rgb: 248, 252, 253;
  --bs-body-bg: var(--fq-bg);
  --bs-body-color: var(--fq-slate-900);
  --bs-border-color: var(--fq-border);
  --bs-link-color: var(--fq-blue-700);
  --bs-link-hover-color: var(--fq-blue-600);
  --bs-emphasis-color: var(--fq-slate-900);
  --bs-border-radius: 0.95rem;
  --bs-border-radius-sm: 0.75rem;
  --bs-border-radius-lg: 1.2rem;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--fq-slate-900);
  background:
    radial-gradient(circle at top right, rgba(16, 173, 197, 0.16), transparent 24%),
    radial-gradient(circle at left top, rgba(88, 191, 63, 0.12), transparent 18%),
    linear-gradient(180deg, #fbfeff 0%, var(--fq-bg) 100%);
  min-height: 100vh;
}

body.bg-light {
  background:
    radial-gradient(circle at top right, rgba(16, 173, 197, 0.16), transparent 24%),
    radial-gradient(circle at left top, rgba(88, 191, 63, 0.12), transparent 18%),
    linear-gradient(180deg, #fbfeff 0%, var(--fq-bg) 100%) !important;
}

a {
  color: var(--fq-blue-700);
  text-decoration-color: rgba(15, 103, 196, 0.35);
}

a:hover {
  color: var(--fq-blue-600);
}

.text-muted,
.text-body-secondary {
  color: var(--fq-slate-500) !important;
}

.shadow-sm,
.shadow {
  box-shadow: var(--fq-shadow) !important;
}

.card,
.modal-content,
.dropdown-menu,
.filter-menu {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--fq-border);
  box-shadow: var(--fq-shadow);
}

.dropdown-item {
  border-radius: 0.7rem;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--fq-info-soft);
  color: var(--fq-blue-900);
}

.btn {
  border-radius: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus,
.btn-close:focus,
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(16, 173, 197, 0.18);
}

.btn-primary,
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary.active,
.btn-check:checked + .btn-outline-primary,
.btn-check + .btn-outline-primary:active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--fq-blue-700), var(--fq-cyan-500));
  box-shadow: var(--fq-glow);
}

.btn-primary:hover,
.btn-primary:focus {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--fq-blue-900), var(--fq-cyan-500));
}

.btn-outline-primary {
  color: var(--fq-blue-700);
  border-color: rgba(15, 103, 196, 0.35);
  background: rgba(255, 255, 255, 0.72);
}

.btn-secondary,
.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--fq-slate-700), var(--fq-slate-500));
}

.btn-outline-secondary {
  color: var(--fq-slate-700);
  border-color: rgba(82, 102, 121, 0.3);
  background: rgba(255, 255, 255, 0.72);
}

.btn-outline-success {
  color: var(--fq-green-600);
  border-color: rgba(46, 168, 61, 0.38);
}

.btn-outline-success:hover,
.btn-outline-success:focus {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--fq-green-600), var(--fq-green-500));
}

.btn-outline-danger:hover,
.btn-outline-danger:focus {
  color: #fff;
  border-color: transparent;
}

.form-control,
.form-select {
  border-color: var(--fq-border-strong);
  background-color: rgba(255, 255, 255, 0.92);
}

.form-control:hover,
.form-select:hover {
  border-color: rgba(16, 173, 197, 0.4);
}

.form-check-input:checked {
  background-color: var(--fq-blue-700);
  border-color: var(--fq-blue-700);
}

input[type="file"]::file-selector-button {
  margin-right: 0.75rem;
  border: 0;
  border-radius: 0.7rem;
  padding: 0.45rem 0.85rem;
  color: #fff;
  background: linear-gradient(135deg, var(--fq-blue-700), var(--fq-cyan-500));
}

.table {
  --bs-table-bg: transparent;
  --bs-table-striped-bg: rgba(16, 173, 197, 0.04);
  --bs-table-hover-bg: rgba(15, 103, 196, 0.06);
}

.table thead th {
  background: linear-gradient(180deg, var(--fq-surface-alt), rgba(255, 255, 255, 0.95));
  color: var(--fq-slate-700);
  border-bottom-color: var(--fq-border);
}

.table > :not(caption) > * > * {
  border-bottom-color: rgba(191, 210, 220, 0.7);
}

.badge {
  font-weight: 600;
}

.badge.bg-primary {
  background: linear-gradient(135deg, var(--fq-blue-700), var(--fq-cyan-500)) !important;
}

.badge.bg-secondary {
  background: linear-gradient(135deg, var(--fq-slate-700), var(--fq-slate-500)) !important;
}

.alert-info {
  color: var(--fq-blue-900);
  background: var(--fq-info-soft);
  border-color: rgba(16, 173, 197, 0.22);
}

.alert-light {
  color: var(--fq-slate-700);
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--fq-border);
}

table td,
table th {
  vertical-align: middle;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid var(--fq-border-strong);
  background: var(--fq-surface-alt);
  color: var(--fq-slate-700);
}

.status-pill--pend {
  background: linear-gradient(135deg, var(--fq-blue-700), var(--fq-cyan-500));
  border-color: transparent;
  color: #fff;
}

.status-pill--prog {
  background: rgba(16, 173, 197, 0.16);
  border-color: rgba(16, 173, 197, 0.28);
  color: var(--fq-blue-900);
}

.status-pill--done {
  background: linear-gradient(135deg, var(--fq-green-600), var(--fq-green-500));
  border-color: transparent;
  color: #fff;
}

.status-pill--overdue {
  background: linear-gradient(135deg, var(--fq-danger), #e06761);
  border-color: transparent;
  color: #fff;
}

.dashboard-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 250, 251, 0.96));
  border: 1px solid var(--fq-border);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  box-shadow: var(--fq-shadow);
}

.brand-logo {
  max-height: 48px;
  width: auto;
  display: block;
}

.print-logo {
  max-height: 56px;
  width: auto;
  display: block;
}

.navbar-logo {
  max-height: 36px;
  width: auto;
  display: block;
}

.navbar-logo--light {
  filter: none;
}

.brand-title {
  letter-spacing: 0.4px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fq-slate-900);
}

.navbar-main {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  background: rgba(255, 255, 255, 0.92) !important;
  border-bottom-color: rgba(191, 210, 220, 0.82) !important;
  backdrop-filter: blur(14px);
}

.navbar-actions {
  margin-left: auto;
}

.navbar-secondary-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(16, 173, 197, 0.16);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 250, 251, 0.9));
}

.navbar-logo-secondary {
  max-height: 42px;
  width: auto;
  display: block;
}

.navbar .nav-link {
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  color: var(--fq-slate-700);
  opacity: 0.92;
  transition: all 0.15s ease;
}

.navbar .nav-link:hover {
  opacity: 1;
  background: var(--fq-info-soft);
  color: var(--fq-blue-900);
}

.navbar .nav-link.active {
  opacity: 1;
  color: #fff;
  background: linear-gradient(135deg, var(--fq-blue-700), var(--fq-cyan-500));
  box-shadow: var(--fq-glow);
}

.navbar .nav-primary {
  font-weight: 700;
}

.navbar .nav-primary.active {
  color: #fff;
}

.pending-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 20px;
  padding: 0 0.4rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 0.35rem;
}

.pending-badge--alert {
  background: var(--fq-danger);
  color: #fff;
}

.pending-badge--neutral {
  background: var(--fq-surface-alt);
  color: var(--fq-slate-700);
}

.user-menu {
  opacity: 0.9;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
}

.pending-page {
  padding-top: 0.25rem;
}

.pending-card {
  border-left: 4px solid transparent;
}

.pending-card--alert {
  border-left-color: var(--fq-danger);
  background: var(--fq-danger-soft);
}

.pending-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--fq-slate-500);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pending-table .card-header {
  background: linear-gradient(180deg, var(--fq-surface-alt), rgba(255, 255, 255, 0.92));
}

.pending-table .table thead th {
  font-weight: 600;
}

.pending-table .table td,
.pending-table .table th {
  padding: 0.75rem 0.8rem;
  vertical-align: middle;
}

.action-status {
  font-weight: 600;
}

.action-status--open {
  background: var(--fq-slate-700);
}

.action-status--progress {
  background: rgba(16, 173, 197, 0.18);
  color: var(--fq-blue-900);
}

.action-status--done {
  background: var(--fq-green-600);
}

.action-status--canceled {
  background: var(--fq-border-strong);
  color: var(--fq-slate-900);
}

.evidence-item {
  width: 140px;
}

.evidence-thumb {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 0.25rem;
}

.attachment-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.attachment-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid var(--fq-border);
  border-radius: 0.35rem;
  background: #fff;
  color: var(--fq-slate-500);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.attachment-link:hover {
  color: var(--fq-blue-700);
  border-color: rgba(16, 173, 197, 0.28);
  background: var(--fq-info-soft);
}

.attachment-link:focus-visible {
  outline: 2px solid var(--fq-blue-700);
  outline-offset: 2px;
}

.attachment-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.attachment-name {
  flex: 1;
  min-width: 0;
}

.complaint-table thead th {
  white-space: nowrap;
}

.complaint-table .th-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
}

.complaint-table .filter-btn {
  padding: 0.15rem 0.35rem;
  line-height: 1;
}

.complaint-table .filter-menu {
  min-width: 260px;
  max-width: 340px;
  position: absolute;
  z-index: 1055;
  background: #fff;
  border: 1px solid var(--fq-border);
  border-radius: 0.25rem;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: none;
}

.complaint-table .filter-menu.show {
  display: block;
}

.complaint-table .filter-menu.floating {
  position: fixed;
  width: 300px;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.filter-menu {
  min-width: 260px;
  max-width: 340px;
  background: #fff;
  border: 1px solid var(--fq-border);
  border-radius: 0.25rem;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: none;
}

.filter-menu.show {
  display: block;
}

.filter-menu.floating {
  position: fixed;
  width: 300px;
  z-index: 99999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.complaint-table .filter-list {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid var(--fq-border);
  border-radius: 0.25rem;
  padding: 0.5rem;
}

.complaint-table th.filter-active .filter-icon {
  color: var(--fq-blue-700);
  font-weight: 700;
}
.legend-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  border-top: 1px solid var(--fq-border);
  padding-top: 0.75rem;
  font-size: 0.85rem;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-note {
  color: var(--fq-slate-500);
}

.legend-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.dashboard-table {
  table-layout: fixed;
  min-width: 100%;
  width: max-content !important;
}

.dashboard-table th,
.dashboard-table td {
  padding: 0.85rem 0.7rem;
  font-size: 0.85rem;
  white-space: normal;
}

.dashboard-table th {
  vertical-align: bottom;
  min-height: 74px;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  word-break: normal;
}

.stage-name {
  display: block;
  font-weight: 600;
  line-height: 1.2;
  white-space: normal;
}

.stage-deadline {
  display: block;
  font-size: 0.7rem;
  color: var(--fq-slate-500);
  line-height: 1.1;
}

.dashboard-table th.stage-head {
  min-width: 160px;
  width: 160px;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.dashboard-table th.stage-head-wide {
  min-width: 160px;
  width: 160px;
}

.dashboard-table col.col-id {
  width: 120px;
}

.dashboard-table col.col-client {
  width: 160px;
}

.dashboard-table col.col-product {
  width: 180px;
}

.dashboard-table col.col-date {
  width: 110px;
}

.dashboard-table col.col-status {
  width: 130px;
}

.dashboard-table col.col-stage {
  width: 160px;
}

.dashboard-table td.stage-cell {
  min-width: 160px;
  width: 160px;
}

.dashboard-table col.col-action {
  width: 90px;
}

.stage-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #111;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.dashboard-table .stage-badges {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.dashboard-table .stage-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 26px;
  padding: 0 0.45rem;
  border-radius: 0.45rem;
  border: 1px solid var(--fq-border-strong);
  background: var(--fq-surface-alt);
  color: var(--fq-slate-900);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.status-r {
  background: var(--fq-danger);
  color: #fff;
}

.status-y {
  background: #ffc107;
}

.status-g {
  background: var(--fq-green-600);
  color: #fff;
}

.validation-reject summary {
  list-style: none;
}

.validation-reject summary::-webkit-details-marker {
  display: none;
}

.status-b {
  background: var(--fq-blue-700);
  color: #fff;
}

.status-k {
  background: var(--fq-slate-900);
  color: #fff;
}

.kpi-section .kpi-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 250, 251, 0.94));
}

.kpi-section .kpi-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fq-slate-900);
}

.kpi-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--fq-border);
  background: var(--fq-surface-alt);
  font-size: 0.8rem;
  font-weight: 600;
}

.kpi-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: inline-block;
}

.kpi-metrics li + li {
  margin-top: 0.35rem;
}

.kpi-bars {
  display: grid;
  gap: 0.5rem;
}

.kpi-bar-row {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) 2.5fr 40px;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
}

.kpi-bar-label {
  color: var(--fq-slate-700);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kpi-bar-track {
  background: rgba(191, 210, 220, 0.55);
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
}

.kpi-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(135deg, var(--fq-blue-700), var(--fq-cyan-500));
  border-radius: 999px;
}

.kpi-bar-value {
  text-align: right;
  color: var(--fq-slate-900);
  font-weight: 600;
}

.bar-r .kpi-bar-fill {
  background: #dc3545;
}

.bar-y .kpi-bar-fill {
  background: #ffc107;
}

.bar-g .kpi-bar-fill {
  background: linear-gradient(135deg, var(--fq-green-600), var(--fq-green-500));
}

.bar-b .kpi-bar-fill {
  background: linear-gradient(135deg, var(--fq-blue-700), var(--fq-blue-600));
}

.bar-k .kpi-bar-fill {
  background: linear-gradient(135deg, var(--fq-slate-900), var(--fq-slate-700));
}

.print-header {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--fq-border);
}

.print-footer {
  font-size: 0.85rem;
  color: var(--fq-slate-500);
}

.no-access-link {
  cursor: not-allowed;
  opacity: 0.6;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(82, 102, 121, 0.45);
}

.breadcrumb-item.active,
.breadcrumb-item a {
  color: var(--fq-slate-700);
}

.breadcrumb-item a:hover {
  color: var(--fq-blue-700);
}

.tabulator {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--fq-border);
  border-radius: 1rem;
  box-shadow: var(--fq-shadow);
  color: var(--fq-slate-900);
}

.tabulator .tabulator-header {
  border-bottom: 1px solid var(--fq-border);
  background: linear-gradient(180deg, var(--fq-surface-alt), rgba(255, 255, 255, 0.98));
  color: var(--fq-slate-700);
}

.tabulator .tabulator-header .tabulator-col,
.tabulator .tabulator-row {
  background: transparent;
}

.tabulator .tabulator-header .tabulator-col {
  border-right-color: rgba(191, 210, 220, 0.8);
}

.tabulator .tabulator-row {
  border-bottom-color: rgba(191, 210, 220, 0.55);
}

.tabulator .tabulator-row:nth-child(even) {
  background: rgba(16, 173, 197, 0.03);
}

.tabulator .tabulator-row.tabulator-selected {
  background: rgba(15, 103, 196, 0.1);
}

.tabulator .tabulator-cell {
  border-right-color: rgba(191, 210, 220, 0.5);
}

.tabulator .tabulator-cell:focus,
.tabulator .tabulator-row.tabulator-selectable:hover {
  outline: none;
  background: rgba(16, 173, 197, 0.08);
}

.tabulator .tabulator-col.tabulator-sortable:hover {
  background: rgba(16, 173, 197, 0.08);
}

.tabulator .tabulator-validation-fail,
.cell-invalid {
  background: var(--fq-danger-soft) !important;
}

.badge-dirty {
  background: var(--fq-warning);
  color: #1b1b1b;
}

.login-page {
  position: relative;
}

.login-shell {
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(215, 229, 236, 0.9);
  box-shadow: 0 30px 60px rgba(20, 90, 126, 0.16);
}

.login-brand-panel {
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(88, 191, 63, 0.22), transparent 38%),
    linear-gradient(160deg, rgba(10, 78, 164, 0.96), rgba(16, 173, 197, 0.92));
  color: #fff;
}

.login-brand-wrap {
  padding: 2.5rem 2.2rem;
}

.login-logo-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 32px rgba(6, 42, 77, 0.18);
}

.login-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  opacity: 0.75;
}

.login-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
  filter: none;
}

.login-card {
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
}

.login-card .card-body {
  padding: 2.25rem;
}

.login-helper {
  color: var(--fq-slate-500);
}

@media print {
  .no-print {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .navbar-actions {
    margin-left: 0;
    align-items: flex-start;
  }

  .navbar-logo-secondary {
    max-height: 34px;
  }

  .login-brand-panel {
    display: none !important;
  }
}
