﻿:root {
  --bg: #f9fafb;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --purple: #7c3aed;
  --teal: #0d9488;
  --radius: 10px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 5% -10%, rgba(37, 99, 235, 0.12), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(13, 148, 136, 0.08), transparent 25%),
    var(--bg);
}

body {
  min-height: 100vh;
}

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

.app-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: linear-gradient(180deg, #0f172a, #111827 40%, #0b1224);
  color: #e5e7eb;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 14px;
  z-index: 40;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  margin-bottom: 18px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(145deg, #2563eb, #0ea5e9 65%, #34d399);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.45);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text strong {
  font-size: 17px;
}

.logo-text span {
  color: #94a3b8;
  font-size: 12px;
}

.sidebar-nav {
  display: grid;
  gap: 5px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 10px;
  border-radius: 9px;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s ease;
}

.nav-link:hover {
  background: rgba(148, 163, 184, 0.14);
  color: #fff;
}

.nav-link.active {
  background: linear-gradient(92deg, rgba(37, 99, 235, 0.95), rgba(59, 130, 246, 0.82));
  color: #fff;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.35);
}

.nav-link i {
  width: 18px;
  height: 18px;
}

.content-area {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(249, 250, 251, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 12px 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}

.topbar-title {
  font-size: 15px;
  font-weight: 700;
}

.menu-toggle {
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

.search-global {
  max-width: 640px;
  width: 100%;
  justify-self: center;
  position: relative;
}

.search-global input {
  width: 100%;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 0 44px 0 14px;
  background: #fff;
  font-size: 14px;
  color: var(--text);
}

.search-global i {
  position: absolute;
  right: 14px;
  top: 11px;
  color: var(--muted);
  width: 19px;
  height: 19px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.icon-btn .dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--danger);
  top: 8px;
  right: 8px;
  border: 2px solid #fff;
}

.icon-btn i {
  width: 18px;
  height: 18px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

main {
  padding: 26px;
  display: grid;
  gap: 24px;
}

.page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-head h1 {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.2;
}

.page-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 20px;
}

.card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.card-title h2,
.card-title h3 {
  margin: 0;
  font-size: clamp(18px, 2vw, 20px);
}

.card-title small {
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.kpi-card {
  background: linear-gradient(160deg, #fff 0%, #f8fbff 100%);
  border: 1px solid #dbeafe;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.kpi-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.07);
  right: -40px;
  top: -40px;
}

.kpi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.kpi-top span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.kpi-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: var(--primary);
}

.kpi-value {
  margin: 14px 0 8px;
  font-size: clamp(26px, 2vw, 30px);
  font-weight: 700;
  line-height: 1;
}

.kpi-trend {
  font-size: 13px;
  color: var(--success);
  font-weight: 600;
}

.grid-70-30 {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 24px;
}

.grid-60-40 {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}

.line-chart {
  width: 100%;
  height: 290px;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  border: 1px solid #eff6ff;
}

.line-chart svg {
  width: 100%;
  height: 100%;
}

.legend {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.legend em {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  display: inline-block;
}

.pie-wrap {
  display: grid;
  place-items: center;
  gap: 20px;
  min-height: 280px;
}

.pie-chart {
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: conic-gradient(#2563eb 0 78.9%, #f59e0b 78.9% 100%);
  position: relative;
}

.pie-chart::after {
  content: "";
  position: absolute;
  inset: 32px;
  border-radius: 999px;
  background: #fff;
}

.pie-labels {
  display: grid;
  gap: 10px;
  font-size: 14px;
  width: 100%;
}

.pie-labels div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pie-labels span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.map-card {
  min-height: 330px;
}

.brazil-map {
  margin-top: 12px;
  height: 250px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: linear-gradient(140deg, rgba(37, 99, 235, 0.06), rgba(16, 185, 129, 0.08));
  position: relative;
  overflow: hidden;
}

.brazil-map .region {
  position: absolute;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 12px;
  color: #0f172a;
  font-weight: 700;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.brazil-map .north {
  width: 95px;
  height: 68px;
  background: rgba(37, 99, 235, 0.3);
  left: 24%;
  top: 15%;
}

.brazil-map .northeast {
  width: 92px;
  height: 76px;
  background: rgba(16, 185, 129, 0.35);
  right: 14%;
  top: 20%;
}

.brazil-map .central {
  width: 120px;
  height: 94px;
  background: rgba(245, 158, 11, 0.34);
  left: 40%;
  top: 34%;
}

.brazil-map .southeast {
  width: 108px;
  height: 74px;
  background: rgba(239, 68, 68, 0.3);
  right: 24%;
  bottom: 24%;
}

.brazil-map .south {
  width: 88px;
  height: 64px;
  background: rgba(124, 58, 237, 0.31);
  right: 29%;
  bottom: 5%;
}

.brazil-map .outline {
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(15, 23, 42, 0.2);
  border-radius: 16px;
}

.rank-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.rank-table th,
.rank-table td {
  text-align: left;
  padding: 9px 8px;
  border-bottom: 1px solid #f1f5f9;
}

.rank-table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--muted);
}

.rank {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 700;
  font-size: 12px;
}

.delta-up {
  color: var(--success);
  font-weight: 600;
}

.delta-down {
  color: var(--danger);
  font-weight: 600;
}

.alert-list {
  display: grid;
  gap: 10px;
}

.alert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

.alert-item strong {
  font-weight: 700;
}

.btn {
  height: 40px;
  border-radius: 9px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.btn i {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 7px 16px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  border-color: #cbd5e1;
  color: #0f172a;
  background: #fff;
}

.btn-danger {
  background: #fee2e2;
  border-color: #fecaca;
  color: #991b1b;
}

.inline-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
}

.badge-blue {
  color: #1d4ed8;
  background: #dbeafe;
}

.badge-orange {
  color: #b45309;
  background: #ffedd5;
}

.badge-green {
  color: #047857;
  background: #d1fae5;
}

.badge-yellow {
  color: #92400e;
  background: #fef3c7;
}

.badge-red {
  color: #991b1b;
  background: #fee2e2;
}

.badge-gray {
  color: #374151;
  background: #f3f4f6;
}

.badge-purple {
  color: #6d28d9;
  background: #ede9fe;
}

.filters-shell {
  display: grid;
  gap: 14px;
}

.filters-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 0 11px;
  font-size: 14px;
  background: #fff;
  color: var(--text);
}

.field textarea {
  min-height: 120px;
  height: auto;
  padding: 10px 11px;
  resize: vertical;
}

.field .stack {
  display: flex;
  gap: 8px;
}

.field .stack input {
  flex: 1;
}

.checkbox-row,
.radio-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.checkbox-row label,
.radio-row label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
}

.slider-row {
  padding: 9px 10px;
  border: 1px solid var(--border);
  border-radius: 9px;
  display: grid;
  gap: 7px;
  background: #fff;
}

.slider-row input {
  width: 100%;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

table.data-table {
  width: 100%;
  min-width: 1400px;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}

.data-table th,
.data-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #f1f5f9;
  text-align: left;
  vertical-align: middle;
}

.data-table th {
  background: #f8fafc;
  color: #64748b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.data-table tr:hover td {
  background: #f9fbff;
}

.id-muted {
  color: #9ca3af;
  font-size: 12px;
  font-weight: 600;
}

.vehicle-preview,
.user-preview {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vehicle-preview img,
.user-preview img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
}

.preview-title {
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.preview-sub {
  color: #64748b;
  font-size: 12px;
}

.score {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
}

.score.good {
  color: #047857;
}

.score.medium {
  color: #b45309;
}

.score.bad {
  color: #b91c1c;
}

.row-actions {
  position: relative;
}

.action-trigger {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dbe3ef;
  cursor: pointer;
}

.action-menu {
  position: absolute;
  top: 38px;
  right: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
  border-radius: 9px;
  min-width: 200px;
  display: none;
  z-index: 20;
  overflow: hidden;
}

.action-menu.open {
  display: grid;
}

.action-menu button {
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 11px;
  font-size: 13px;
  cursor: pointer;
}

.action-menu button:hover {
  background: #f8fafc;
}

.table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 4px 0;
  font-size: 13px;
  color: #64748b;
}

.pagination {
  display: flex;
  gap: 6px;
  align-items: center;
}

.page-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #dbe3ef;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.page-btn.active {
  background: #dbeafe;
  border-color: #93c5fd;
  color: #1e40af;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}

.gallery-main {
  width: 100%;
  border-radius: 10px;
  height: 320px;
  object-fit: cover;
}

.thumb-row {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 3px;
}

.thumb-row img {
  width: 94px;
  height: 66px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid transparent;
}

.thumb-row img.active {
  border-color: #2563eb;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}

.info-item small {
  color: #64748b;
  font-size: 12px;
}

.info-item p {
  margin: 4px 0 0;
  font-weight: 600;
}

.progress-list {
  display: grid;
  gap: 10px;
}

.progress-item {
  display: grid;
  gap: 6px;
}

.progress-head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.progress-bar {
  height: 7px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.progress-bar > span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #10b981, #34d399);
}

.timeline {
  display: grid;
  gap: 12px;
  padding-left: 14px;
  border-left: 2px dashed #dbeafe;
}

.timeline-item {
  position: relative;
  padding-left: 12px;
  font-size: 13px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2563eb;
  left: -20px;
  top: 4px;
}

.stats-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 10px;
  padding: 14px;
}

.stat-card small {
  color: #64748b;
  font-size: 12px;
}

.stat-card p {
  margin: 8px 0 0;
  font-size: 24px;
  font-weight: 700;
}

.metrics-list {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed #e2e8f0;
  padding-bottom: 8px;
}

.bars-compare {
  display: grid;
  gap: 8px;
}

.bar-row {
  display: grid;
  gap: 4px;
}

.bar-track {
  height: 8px;
  background: #edf2f7;
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
}

.tab-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tab-pill {
  border: 1px solid #dbe3ef;
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.tab-pill.active {
  background: #dbeafe;
  color: #1d4ed8;
  border-color: #93c5fd;
}

.side-review {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 84px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}

.funnel {
  display: grid;
  gap: 14px;
}

.funnel-step {
  display: grid;
  gap: 6px;
}

.funnel-bar {
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.funnel-drop {
  color: #64748b;
  font-size: 12px;
}

.compare-line {
  width: 100%;
  height: 28px;
}

.settings-grid {
  display: grid;
  gap: 20px;
}

.setting-block {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px;
  background: #fff;
  display: grid;
  gap: 12px;
}

.switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.switch input {
  width: 40px;
  height: 20px;
}

.helper {
  font-size: 12px;
  color: #64748b;
}

.empty-state {
  border: 1px dashed #cbd5e1;
  background: #f8fafc;
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  font-size: 14px;
  color: #64748b;
}

.feedback-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.toast-wrap {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  z-index: 120;
}

.toast {
  min-width: 240px;
  max-width: 320px;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
  border: 1px solid transparent;
  font-size: 13px;
  background: #fff;
}

.toast.success {
  border-color: #a7f3d0;
  background: #ecfdf5;
}

.toast.error {
  border-color: #fecaca;
  background: #fef2f2;
}

.toast.loading {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.36);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 110;
}

.loading-overlay.active {
  display: flex;
}

.loading-box {
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid #c7d2fe;
  border-top-color: #2563eb;
  border-radius: 999px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1439px) {
  .app-shell {
    grid-template-columns: 84px 1fr;
  }

  .sidebar {
    padding: 14px 10px;
  }

  .logo-text,
  .nav-link span {
    display: none;
  }

  .nav-link {
    justify-content: center;
    padding: 11px;
  }

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

  .grid-70-30,
  .grid-60-40,
  .detail-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    left: -320px;
    width: 280px;
    transition: left 0.25s ease;
  }

  .sidebar.open {
    left: 0;
  }

  .logo-text,
  .nav-link span {
    display: block;
  }

  .nav-link {
    justify-content: flex-start;
  }

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

  .topbar {
    grid-template-columns: auto 1fr auto;
    padding: 12px;
  }

  .topbar-title {
    display: none;
  }

  main {
    padding: 14px;
    gap: 16px;
  }

  .kpi-grid,
  .filters-grid,
  .stats-grid,
  .info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .table-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
