/* -------------------------------------------------------------
   La Magie en Chemin - Canicule 2026
   Palette WAOW! - Permanent Marker + Roboto
   Polices auto-hebergees (RGPD-friendly, zero tracking)
   ------------------------------------------------------------- */

@font-face {
  font-family: 'Permanent Marker';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/permanent-marker-v16-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/roboto-v30-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/roboto-v30-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/roboto-v30-latin-700.woff2') format('woff2');
}

:root {
  --rouge: #C8202C;
  --rouge-fonce: #A01820;
  --rouge-clair: #FCEBEC;
  --jaune: #F5B800;
  --gris-fonce: #3A3A3A;
  --gris-pierre: #E8E8E8;
  --gris-pierre-claire: #F4F4F4;
  --blanc: #FFFFFF;
  --gris-texte: #5A5A5A;
  --gris-muet: #888;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: 'Roboto', -apple-system, sans-serif;
  color: var(--gris-fonce);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Bande rouge WAOW! en haut de page - signature visuelle */
body::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--rouge);
  position: relative;
  z-index: 10;
}

/* --- EN-TETE ----------------------------------------------- */
.header {
  position: relative;
  padding: 20px 24px 16px;
  background: var(--blanc);
  border-bottom: 1px solid var(--gris-pierre);
}

/* --- EN-TETE ---------------------------------------------- */
.header {
  position: relative;
  padding: 28px 24px 28px;
  background: var(--blanc);
  border-bottom: 1px solid var(--gris-pierre);
  max-width: 1400px;
  margin: 0 auto;
  min-height: 168px;
  display: flex;
  align-items: center;
}

.header-content {
  padding-right: 170px;
  width: 100%;
}

.retour-accueil {
  display: inline-block;
  font-size: 12px;
  color: var(--gris-muet);
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.15s ease;
}
.retour-accueil:hover { color: var(--rouge); }

/* Bouton retour explicite vers l'accueil */
.bouton-retour {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blanc);
  color: var(--rouge);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: 2px solid var(--rouge);
  margin-bottom: 14px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(200, 32, 44, 0.12);
}

.bouton-retour:hover {
  background: var(--rouge);
  color: var(--blanc);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200, 32, 44, 0.25);
}

.bouton-retour-icone {
  font-size: 16px;
  line-height: 1;
}

.bouton-retour-texte {
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.surtitre {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jaune);
  margin-bottom: 6px;
  display: inline-block;
  padding-left: 14px;
  position: relative;
}

.surtitre::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background: var(--rouge);
  border-radius: 1px;
}

h1 {
  font-family: 'Permanent Marker', cursive;
  font-weight: 400;
  font-size: clamp(26px, 5vw, 34px);
  line-height: 1.1;
  color: var(--gris-fonce);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

h1::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--jaune);
  border-radius: 2px;
}

.sous-titre {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--gris-texte);
}

.logo-link {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  display: block;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  transition: transform 0.2s ease;
  background: var(--gris-fonce);
  border: 3px solid var(--rouge);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
.logo-link:hover { transform: translateY(-50%) scale(1.05); }
.logo-link img {
  width: 100%; height: 100%; object-fit: cover;
}

/* --- FILTRES ----------------------------------------------- */
.filtres {
  background: var(--gris-pierre-claire);
  padding: 14px 20px 16px;
  border-bottom: 1px solid var(--gris-pierre);
}

.filtre-ligne { margin-bottom: 10px; }
.filtre-ligne:last-child { margin-bottom: 0; }

.filtre-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jaune);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toggle-tout {
  background: var(--blanc);
  border: 1px solid var(--gris-pierre);
  color: var(--gris-texte);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.toggle-tout:hover {
  border-color: var(--rouge);
  color: var(--rouge);
}

.btn-groupe {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.btn-filtre {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.mini-logo {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gris-fonce);
  border: 1.5px solid var(--rouge);
  flex-shrink: 0;
  position: relative;
}

.btn-filtre.actif {
  background: var(--rouge);
  color: var(--blanc);
  box-shadow: 0 1px 3px rgba(200, 32, 44, 0.3);
}
.btn-filtre.actif:hover { background: var(--rouge-fonce); }

.btn-filtre.inactif {
  background: var(--blanc);
  color: var(--gris-muet);
  border: 1px solid var(--gris-pierre);
}
.btn-filtre.inactif:hover {
  border-color: var(--gris-muet);
  color: var(--gris-fonce);
}

.poi-icon {
  font-size: 14px;
  line-height: 1;
}

/* --- CARTE ------------------------------------------------- */
#map-container {
  position: relative;
}

#map {
  width: 100%;
  height: calc(100vh - 280px);
  min-height: 380px;
  background: var(--gris-pierre);
}

/* --- BOUTON PLEIN ECRAN ----------------------------------- */
.bouton-plein-ecran {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 500;
  background: var(--blanc);
  border: 2px solid var(--gris-fonce);
  border-radius: 6px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gris-fonce);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.15s ease;
  font-family: inherit;
  line-height: 1;
  white-space: nowrap;
}

.bouton-plein-ecran:hover {
  background: var(--rouge);
  color: var(--blanc);
  border-color: var(--rouge);
  transform: scale(1.03);
}

.bouton-plein-ecran:active {
  transform: scale(0.97);
}

.bouton-plein-ecran .icone {
  font-size: 16px;
  line-height: 1;
}

/* Mode plein ecran : carte couvre toute la fenetre */
#map-container.plein-ecran {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: var(--blanc);
}

#map-container.plein-ecran #map {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

#map-container.plein-ecran .bouton-plein-ecran {
  background: var(--rouge);
  color: var(--blanc);
  border-color: var(--rouge);
}

#map-container.plein-ecran .bouton-plein-ecran:hover {
  background: var(--gris-fonce);
  border-color: var(--gris-fonce);
}

/* Sur mobile, bouton plus compact mais toujours lisible */
@media (max-width: 600px) {
  .bouton-plein-ecran {
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 0.05em;
  }
  .bouton-plein-ecran .icone {
    font-size: 14px;
  }
}

/* Empeche le scroll de la page quand plein ecran */
body.carte-plein-ecran {
  overflow: hidden;
}

.chargement {
  position: absolute;
  inset: 0;
  background: var(--blanc);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  font-family: 'Roboto', sans-serif;
  color: var(--gris-texte);
  font-size: 15px;
}

.chargement.cache {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

/* --- PROFIL ALTIMETRIQUE ----------------------------------- */
.profil-altimetrique {
  background: var(--gris-pierre-claire);
  padding: 18px 20px;
  border-top: 1px solid var(--gris-pierre);
}

.profil-titre {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jaune);
  margin-bottom: 10px;
}

.profil-stats {
  display: flex;
  gap: 18px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--gris-texte);
  flex-wrap: wrap;
}

.profil-stat strong {
  color: var(--gris-fonce);
}

#profil-chart {
  width: 100% !important;
  max-width: 100%;
  height: 180px;
  background: var(--blanc);
  border-radius: 8px;
}

/* --- LEGENDE ----------------------------------------------- */
.legende {
  background: var(--blanc);
  padding: 16px 24px 8px;
  border-top: 1px solid var(--gris-pierre);
}

.legende-titre {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jaune);
  margin-bottom: 10px;
  text-align: center;
}

.legende-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  font-size: 13px;
  color: var(--gris-texte);
}

.legende-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.puce {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--blanc);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}

/* --- LIENS VERS LES PAGES VOIES (sur l'index) -------------- */
.liens-voies {
  background: var(--blanc);
  padding: 24px 20px;
  border-top: 1px solid var(--gris-pierre);
  text-align: center;
}

.liens-voies-titre {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jaune);
  margin-bottom: 4px;
}

.liens-voies-sous-titre {
  font-size: 13px;
  color: var(--gris-texte);
  margin-bottom: 16px;
}

.liens-voies-liste {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.lien-voie {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: var(--gris-fonce);
  background: var(--gris-pierre-claire);
  border: 1px solid var(--gris-pierre);
  transition: all 0.15s ease;
}
.lien-voie:hover {
  border-color: var(--couleur-voie);
  background: var(--blanc);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.lien-voie-puce {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--couleur-voie);
  flex-shrink: 0;
}

/* --- ENCADRE TELECHARGEMENTS ------------------------------- */
.emporter {
  padding: 32px 24px;
  background: var(--gris-pierre);
  border-top: 1px solid #d4d4d4;
}

.emporter-cadre {
  max-width: 720px;
  margin: 0 auto;
  background: var(--blanc);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.emporter-cadre::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--couleur-voie, var(--jaune));
}

.emporter-surtitre {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jaune);
  text-align: center;
  margin-bottom: 8px;
}

.emporter-titre {
  font-family: 'Permanent Marker', cursive;
  font-weight: 400;
  font-size: 28px;
  text-align: center;
  color: var(--gris-fonce);
  margin-bottom: 12px;
  line-height: 1.1;
}

.emporter-intro {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--gris-texte);
  text-align: center;
  max-width: 480px;
  margin: 0 auto 24px;
}

.emporter-boutons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.bouton-dl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--rouge);
  color: var(--blanc);
  border: none;
  border-radius: 12px;
  padding: 16px 28px;
  min-width: 200px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(200, 32, 44, 0.25);
}
.bouton-dl:hover {
  background: var(--rouge-fonce);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(200, 32, 44, 0.35);
}

.bouton-dl-format {
  font-family: 'Permanent Marker', cursive;
  font-weight: 400;
  font-size: 26px;
  color: var(--jaune);
  letter-spacing: 0.04em;
  line-height: 1;
}
.bouton-dl-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--blanc);
  margin-top: 4px;
}
.bouton-dl-taille {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

.compat {
  text-align: center;
  padding-top: 20px;
  border-top: 1px dashed var(--gris-pierre);
}

.compat-titre {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jaune);
  margin-bottom: 10px;
}

.compat-liste {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
}

.compat-item {
  display: inline-block;
  padding: 4px 11px;
  background: var(--rouge-clair);
  border: 1px solid rgba(200, 32, 44, 0.15);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  color: var(--rouge);
  letter-spacing: 0.02em;
}

/* --- CREDIT VOIE (cas Via Ligeria) ------------------------- */
.credit-voie {
  background: var(--jaune);
  color: var(--gris-fonce);
  padding: 14px 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  font-style: italic;
}

/* --- FOOTER ------------------------------------------------ */
.footer {
  padding: 32px 28px 40px;
  background: var(--blanc);
  border-top: 1px solid var(--gris-pierre);
  text-align: center;
}

.mot-personnel {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gris-texte);
  max-width: 540px;
  margin: 0 auto 16px;
}

.signature {
  font-family: 'Permanent Marker', cursive;
  font-weight: 400;
  font-size: 22px;
  color: var(--rouge);
  line-height: 1.35;
}

.mention {
  margin-top: 20px;
  font-size: 11px;
  color: var(--gris-muet);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
  background: var(--gris-pierre-claire);
  border-radius: 999px;
}

.mention-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.mention-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--rouge);
  display: inline-block;
  flex-shrink: 0;
}
.mention-item:nth-child(2) .mention-icon { background: var(--jaune); }
.mention-item:nth-child(3) .mention-icon { background: var(--gris-fonce); }

.lien-special {
  margin-top: 16px;
  font-size: 12px;
  color: var(--gris-muet);
}
.lien-special a {
  color: var(--rouge);
  text-decoration: none;
  border-bottom: 1px dotted var(--rouge);
}
.lien-special a:hover {
  color: var(--rouge-fonce);
}

.lien-mentions {
  margin-top: 12px;
  font-size: 11px;
}
.lien-mentions a {
  color: var(--gris-muet);
  text-decoration: none;
  border-bottom: 1px dotted var(--gris-pierre);
}
.lien-mentions a:hover {
  color: var(--rouge);
  border-bottom-color: var(--rouge);
}

/* --- MESSAGE VIDE (avant publication) ---------------------- */
.message-vide {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--gris-pierre-claire) 0%, var(--gris-pierre) 100%);
  position: relative;
}

.message-vide-card {
  display: inline-block;
  background: var(--blanc);
  padding: 36px 48px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  position: relative;
  max-width: 520px;
}

.message-vide-card::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--rouge);
  border-radius: 0 0 4px 4px;
}

.message-vide-titre {
  font-family: 'Permanent Marker', cursive;
  font-size: 28px;
  color: var(--gris-fonce);
  margin-bottom: 12px;
}

.message-vide p {
  font-size: 15px;
  color: var(--gris-texte);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.6;
}

.message-vide-poi {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  font-size: 24px;
  opacity: 0.5;
}

/* --- POPUPS LEAFLET STYLE WAOW! ---------------------------- */
.leaflet-popup-content-wrapper {
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  border: none;
  padding: 0;
}

.leaflet-popup-content {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  min-width: 240px;
}

.popup-essentiel { padding: 16px 18px 14px; }

.popup-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jaune);
  margin-bottom: 4px;
}

.popup-titre {
  font-size: 17px;
  font-weight: 700;
  color: var(--gris-fonce);
  margin-bottom: 4px;
  line-height: 1.2;
}

.popup-voie {
  font-size: 12px;
  color: var(--rouge);
  font-weight: 500;
  margin-bottom: 4px;
}

.popup-distance {
  font-size: 13px;
  color: var(--gris-texte);
  margin-bottom: 12px;
}

.popup-bouton-principal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--rouge);
  color: var(--blanc) !important;
  text-decoration: none !important;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
}
.popup-bouton-principal:hover { background: var(--rouge-fonce); }

.popup-toggle {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: var(--gris-muet);
  text-decoration: none !important;
  cursor: pointer;
}
.popup-toggle:hover { color: var(--rouge); }

.popup-details {
  background: var(--gris-pierre);
  padding: 14px 18px;
  border-top: 1px solid #d4d4d4;
  display: none;
  border-radius: 0 0 12px 12px;
}
.popup-details.visible { display: block; }

.popup-coords {
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  color: var(--gris-fonce);
  margin-bottom: 6px;
  word-break: break-all;
}

.popup-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blanc);
  color: var(--gris-fonce) !important;
  text-decoration: none !important;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--gris-pierre);
  cursor: pointer;
  margin-right: 6px;
  margin-top: 6px;
  transition: all 0.15s ease;
}
.popup-action:hover {
  background: var(--rouge-clair);
  border-color: var(--rouge);
  color: var(--rouge) !important;
}

.popup-potable {
  font-size: 12px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #d4d4d4;
}
.popup-potable.oui { color: #2d7d3f; }
.popup-potable.non { color: var(--rouge); }
.popup-potable.inconnu { color: var(--gris-muet); }

.popup-signaler {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  color: var(--gris-muet);
  text-decoration: none !important;
  text-align: center;
}
.popup-signaler:hover { color: var(--rouge); }

.marqueur-poi {
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  border: 2px solid var(--blanc);
  display: flex;
  align-items: center;
  justify-content: center;
}

.leaflet-control-zoom a {
  background: var(--blanc) !important;
  color: var(--gris-fonce) !important;
  border-color: var(--gris-pierre) !important;
}

/* --- MOBILE ------------------------------------------------ */
@media (max-width: 600px) {
  .header { padding: 16px 16px 16px; min-height: auto; }
  .header-content { padding-right: 90px; }
  .logo-link { width: 80px; height: 80px; top: 50%; right: 14px; border-width: 2px; }
  h1 { font-size: 24px; }
  .sous-titre { font-size: 13px; }
  .filtres { padding: 12px 14px 14px; }
  .btn-filtre { font-size: 12px; padding: 6px 11px; }
  #map { height: calc(100vh - 320px); min-height: 320px; }
  .emporter { padding: 24px 14px; }
  .emporter-cadre { padding: 24px 18px; }
  .emporter-titre { font-size: 24px; }
  .bouton-dl { min-width: 100%; padding: 14px 18px; }
  .footer { padding: 24px 20px 32px; }
  .profil-altimetrique { padding: 14px 14px; }
  .profil-stats { gap: 12px; font-size: 12px; }
}
