/* DFM-IT — Style global */

/* Améliorations tableau de bord & app */
.dfmit-app .card-dfmit {
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.dfmit-app a[href]:not(.btn) {
  transition: color 0.15s ease;
}
.nav-dfmit {
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-link-dfmit {
  white-space: nowrap;
}

/* Menu manager — colonne flex, pas de calque invisible */
.manager-shell {
  display: flex;
  width: 100%;
  min-height: 100vh;
}
.manager-sidebar {
  flex-shrink: 0;
  pointer-events: auto;
  z-index: 200;
}
.manager-sidebar-link {
  pointer-events: auto;
  text-decoration: none !important;
  cursor: pointer;
  color: inherit;
}
.manager-main-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.manager-main-content {
  position: relative;
  z-index: 0;
  flex: 1;
  min-width: 0;
}
.manager-topbar a {
  pointer-events: auto;
  cursor: pointer;
}
#sidebar-overlay {
  display: none !important;
  pointer-events: none !important;
}

:root {
  --primary: #0d47a1;
  --primary-dark: #002171;
  --primary-light: #5472d3;
  --accent: #ff6f00;
  --bg: #f5f7fa;
  --card: #fff;
  --text: #1a237e;
  --text-muted: #5c6bc0;
  --border: #c5cae9;
  --success: #2e7d32;
  --warning: #ed6c02;
  --error: #c62828;
  --radius: 8px;
  --shadow: 0 2px 8px rgba(13, 71, 161, 0.08);
  --shadow-hover: 0 4px 16px rgba(13, 71, 161, 0.12);
}

* { box-sizing: border-box; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

/* Nav */
.navbar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 0.75rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow);
}
.navbar a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  font-size: 0.95rem;
}
.navbar a:hover { background: rgba(255,255,255,0.15); color: #fff; }
.navbar .nav-right { margin-left: auto; }
.navbar .nav-right a { opacity: 0.9; }

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
  min-height: 60vh;
}

/* Cards */
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.card h2, .card h3 { margin-top: 0; color: var(--primary); font-size: 1.15rem; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.card-stat {
  text-align: center;
  padding: 1rem;
  border-left: 4px solid var(--primary);
}
.card-stat .number { font-size: 1.75rem; font-weight: 700; color: var(--primary); }
.card-stat .label { font-size: 0.85rem; color: var(--text-muted); }

/* Tables */
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
th, td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}
tr:hover { background: rgba(13, 71, 161, 0.04); }
table .actions { white-space: nowrap; }
table .actions a { margin-right: 0.5rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: #fff !important;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s;
}
.btn:hover { background: var(--primary-dark); }
.btn-secondary { background: var(--text-muted); }
.btn-secondary:hover { background: var(--primary-light); }
.btn-success { background: var(--success); }
.btn-warning { background: var(--warning); }
.btn-sm { padding: 0.35rem 0.7rem; font-size: 0.85rem; }
.page-header { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.page-header h1 { margin: 0; font-size: 1.5rem; color: var(--primary-dark); }

/* Messages */
.messages { list-style: none; padding: 0; margin: 0 0 1rem 0; }
.messages li {
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
}
.messages .success { background: #e8f5e9; color: var(--success); border-left: 4px solid var(--success); }
.messages .info { background: #e3f2fd; color: #1565c0; border-left: 4px solid #1565c0; }
.messages .warning { background: #fff3e0; color: var(--warning); border-left: 4px solid var(--warning); }
.messages .error { background: #ffebee; color: var(--error); border-left: 4px solid var(--error); }

/* Forms */
form p { margin: 0.75rem 0; }
form label { display: block; font-weight: 500; margin-bottom: 0.25rem; color: var(--text); }
form input[type="text"], form input[type="email"], form input[type="password"],
form input[type="search"], form input[type="number"], form input[type="date"],
form input[type="month"], form input[type="file"],
form textarea, form select {
  width: 100%;
  max-width: 420px;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
}
form textarea { min-height: 100px; resize: vertical; }
form .helptext { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }
.form-actions { margin-top: 1.25rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Filters / toolbar */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.toolbar label { margin-right: 0.35rem; font-size: 0.9rem; }
.toolbar select { max-width: 140px; padding: 0.4rem; }

/* Pagination */
.pagination { margin-top: 1rem; font-size: 0.9rem; color: var(--text-muted); }

/* Suggestions / alerts */
.suggestion { padding: 1rem; border-radius: var(--radius); margin-bottom: 0.75rem; border-left: 4px solid; }
.suggestion.success { background: #e8f5e9; border-color: var(--success); }
.suggestion.warning { background: #fff3e0; border-color: var(--warning); }
.suggestion.info { background: #e3f2fd; border-color: #1565c0; }
.suggestion .titre { font-weight: 600; margin-bottom: 0.25rem; }

/* ========== Dashboard super admin — styles harmonisés ========== */
.dash-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}
.dash-card-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.dash-card-header h2, .dash-card-header h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
}
.dash-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #2563eb;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.dash-btn-primary:hover { background: #1d4ed8; }
.dash-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.2s;
}
.dash-btn-secondary:hover { background: #e2e8f0; color: #334155; }

/* Champs de formulaire dashboard (filtres, saisie) */
.dash-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.375rem;
}
.dash-input,
input.dash-input,
select.dash-input,
textarea.dash-input {
  display: block;
  width: 100%;
  max-width: none;
  padding: 0.5625rem 0.875rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #334155;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.dash-input:hover {
  border-color: #94a3b8;
}
.dash-input:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}
.dash-input::placeholder {
  color: #94a3b8;
}
select.dash-input {
  cursor: pointer;
  padding-right: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  background-size: 1rem;
  appearance: none;
}
.dash-filters-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.02em;
}
.dash-filters-subtitle {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.125rem;
}
.dash-input-wrap {
  position: relative;
}
.dash-input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: #94a3b8;
  pointer-events: none;
}
.dash-input-with-icon {
  padding-left: 2.375rem;
}

.dash-table { width: 100%; font-size: 0.875rem; border-collapse: collapse; }
.dash-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  background: #f8fafc;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
}
.dash-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f1f5f9;
}
.dash-table tbody tr:hover { background: #f8fafc; }
.dash-link { color: #2563eb; text-decoration: none; }
.dash-link:hover { text-decoration: underline; }
.dash-table .dash-link { color: #2563eb; text-decoration: none; }
.dash-table .dash-link:hover { text-decoration: underline; }
.dash-filter-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  margin-bottom: 0;
}
.dash-filter-form select,
.dash-filter-form input[type="text"],
.dash-filter-form input[type="search"],
.dash-filter-form input[type="date"] {
  padding: 0.5rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 9999px;
  font-size: 0.875rem;
  background: #fff;
  color: #334155;
}
.dash-filter-form button[type="submit"] {
  padding: 0.5rem 1rem;
  background: #334155;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s;
}
.dash-filter-form button[type="submit"]:hover { background: #1e293b; }
.dash-page-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.25rem 0;
}
.dash-page-subtitle { font-size: 0.875rem; color: #64748b; margin: 0; }
.dash-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-top: 1px solid #f1f5f9;
  font-size: 0.8rem;
  color: #64748b;
}
.dash-pagination a {
  padding: 0.35rem 0.75rem;
  background: #f1f5f9;
  color: #475569;
  border-radius: 0.375rem;
  text-decoration: none;
  font-size: 0.8rem;
}
.dash-pagination a:hover { background: #e2e8f0; }

/* Suivi projets manager */
#suivi-projets {
  border-radius: 0.75rem !important;
}
#suivi-projets > .overflow-x-auto,
#suivi-projets .overflow-x-auto {
  background: #fff;
}
#suivi-projets table {
  min-width: 1320px !important;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}
#suivi-projets thead th {
  padding: 0.8rem 0.75rem !important;
  background: #174ea6 !important;
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 700 !important;
  line-height: 1.1;
  letter-spacing: 0;
  border-bottom: 0 !important;
}
#suivi-projets thead th:nth-child(1) { width: 15%; }
#suivi-projets thead th:nth-child(2) { width: 9%; }
#suivi-projets thead th:nth-child(3) { width: 19%; }
#suivi-projets thead th:nth-child(4) { width: 8%; }
#suivi-projets thead th:nth-child(5) { width: 9%; }
#suivi-projets thead th:nth-child(6),
#suivi-projets thead th:nth-child(7) { width: 7%; }
#suivi-projets thead th:nth-child(8) { width: 6%; }
#suivi-projets thead th:nth-child(9) { width: 7%; }
#suivi-projets thead th:nth-child(10),
#suivi-projets thead th:nth-child(11),
#suivi-projets thead th:nth-child(12) { width: 7%; }
#suivi-projets thead th:nth-child(13),
#suivi-projets thead th:nth-child(14),
#suivi-projets thead th:nth-child(15) { width: 4.5%; }
#suivi-projets thead th:nth-child(16) { width: 8%; }
#suivi-projets tbody tr {
  background: #fff;
}
#suivi-projets tbody tr:hover {
  background: #f8fafc !important;
}
#suivi-projets tbody td {
  padding: 0.95rem 0.75rem !important;
  vertical-align: middle;
  border-bottom: 1px solid #e5e7eb !important;
  color: #475569;
  line-height: 1.35;
}
#suivi-projets tbody td:first-child a {
  display: inline-flex;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: #2563eb !important;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}
#suivi-projets tbody td:first-child a:hover {
  text-decoration: underline;
}
#suivi-projets tbody td:nth-child(2),
#suivi-projets tbody td:nth-child(4),
#suivi-projets tbody td:nth-child(5),
#suivi-projets tbody td:nth-child(6),
#suivi-projets tbody td:nth-child(7) {
  color: #475569;
  font-size: 0.82rem;
}
#suivi-projets tbody td:nth-child(3) > div:first-child {
  margin-bottom: 0.45rem;
  color: #1e293b;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: normal;
}
#suivi-projets tbody td:nth-child(3) > div + div {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  align-items: stretch;
}
#suivi-projets tbody td:nth-child(3) span,
#suivi-projets .doc-popup-trigger,
#suivi-projets tbody td:nth-child(9) span {
  display: inline-flex;
  min-height: 1.55rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.35rem !important;
  padding: 0.25rem 0.45rem !important;
  font-size: 0.68rem !important;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
}
#suivi-projets tbody td:nth-child(8) {
  text-align: center;
}
#suivi-projets tbody td:nth-child(8) > span {
  min-width: 2.7rem;
  height: 1.55rem;
  border-radius: 999px !important;
}
#suivi-projets tbody td:nth-child(8) > div {
  margin-top: 0.35rem !important;
  color: #64748b;
  font-size: 0.68rem !important;
}
#suivi-projets tbody td:nth-child(10),
#suivi-projets tbody td:nth-child(11),
#suivi-projets tbody td:nth-child(12) {
  text-align: center;
}
#suivi-projets tbody td:nth-child(13) span,
#suivi-projets tbody td:nth-child(14) span,
#suivi-projets tbody td:nth-child(15) span {
  width: 1.65rem !important;
  height: 1.65rem !important;
  font-size: 0.75rem !important;
  font-weight: 800;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}
#suivi-projets tbody td:nth-child(16) {
  font-size: 0.75rem !important;
}
#suivi-projets tbody td:nth-child(16) > div + div {
  margin-top: 0.35rem;
  color: #64748b !important;
  font-size: 0.68rem !important;
}

/* Hero block reusable for premium headers */
.dash-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 62%, #0ea5e9 100%);
  color: #fff;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(148, 163, 184, 0.2);
}
.dash-hero .dash-page-title { color: #fff; margin-bottom: 0.2rem; }
.dash-hero .dash-page-subtitle { color: rgba(241, 245, 249, 0.94); }
.dash-hero-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.dash-hero .dash-btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}
.dash-hero .dash-btn-secondary:hover { background: rgba(255, 255, 255, 0.28); color: #fff; }
.dash-hero .dash-btn-primary,
.dash-hero .dash-hero-btn {
  background: #fff;
  color: #1d4ed8 !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  position: relative;
  z-index: 1;
}
.dash-hero .dash-btn-primary:hover,
.dash-hero .dash-hero-btn:hover { background: #f8fafc; color: #1e40af !important; }
.dash-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ========== Pointage — style premium ========== */
.time-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 65%, #0ea5e9 100%);
  color: #fff;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(148, 163, 184, 0.2);
}
.time-hero .dash-page-title { color: #fff; margin-bottom: 0.2rem; }
.time-hero .dash-page-subtitle { color: rgba(241, 245, 249, 0.92); }
.time-hero-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.time-hero .dash-btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}
.time-hero .dash-btn-secondary:hover { background: rgba(255, 255, 255, 0.28); color: #fff; }
.time-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #e2e8f0;
  color: #1e293b;
}
.time-pill-live {
  background: #dcfce7;
  color: #166534;
}
.time-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.time-kpi {
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 0.75rem;
}
.time-kpi-label { color: #64748b; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; }
.time-kpi-value { color: #0f172a; font-size: 1.15rem; font-weight: 700; margin-top: 0.2rem; }
@media (max-width: 900px) {
  .time-kpi-grid { grid-template-columns: 1fr; }
}

/* ========== Formulaires premium RT ========== */
.rt-premium-form .field-block {
  margin-bottom: 0.35rem;
}
.rt-premium-form label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.35rem;
}
.rt-premium-form input[type="text"],
.rt-premium-form input[type="email"],
.rt-premium-form input[type="number"],
.rt-premium-form input[type="date"],
.rt-premium-form input[type="datetime-local"],
.rt-premium-form input[type="time"],
.rt-premium-form input[type="file"],
.rt-premium-form select,
.rt-premium-form textarea {
  width: 100%;
  max-width: none;
  border: 1px solid #cbd5e1;
  border-radius: 0.75rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 0.7rem 0.85rem;
  color: #0f172a;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.rt-premium-form textarea { min-height: 110px; }
.rt-premium-form .intervenants-picker {
  border: 1px solid #cbd5e1;
  border-radius: 0.75rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 0.75rem 0.9rem;
}
.rt-premium-form .intervenants-picker ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.45rem 0.8rem;
}
.rt-premium-form .intervenants-picker li label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: #334155;
}
.rt-premium-form input:focus,
.rt-premium-form select:focus,
.rt-premium-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
  background: #fff;
}
.rt-premium-form .field-help {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: #64748b;
}
.rt-premium-form .field-error {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: #dc2626;
  font-weight: 600;
}

/* Recherche en direct — suggestions */
.live-search-wrap {
  position: relative;
}
.live-search-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 80;
  max-height: 14rem;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}
.live-search-suggest-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  color: #334155;
  border: none;
  background: transparent;
  cursor: pointer;
}
.live-search-suggest-item:hover,
.live-search-suggest-item:focus {
  background: #f1f5f9;
  outline: none;
}
form.live-search-pending {
  opacity: 0.92;
}
