/* FOOTPASS Messenger v2 · sous-pages (Pass ID, coffre, mandats, réglages, notifs, aide)
   + feuilles modales (nouveau message, nouvel appel, événement, document).
   S'appuie sur le vocabulaire hm-* (Modern Black, accent --acc). */

/* ═══ Sous-page plein écran (glisse depuis la droite) ═══ */
.pg {
  position: absolute; inset: 0; z-index: 60;
  background: #050506; color: #FAFAFA;
  display: flex; flex-direction: column;
  font-family: 'Inter', sans-serif;
  animation: pgIn 300ms cubic-bezier(0.2, 0, 0, 1);
}
@keyframes pgIn { from { opacity: 0; transform: translateX(36px); } }
/* Variante écran principal : laisse la tab bar visible et cliquable en dessous */
.pg.with-tabbar { bottom: 70px; }
.pg-headacts2 { display: flex; align-items: center; gap: 8px; }
.pg-head {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px 10px;
}
.pg-back {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #131316; border: 1px solid rgba(255,255,255,0.09);
  color: #EAEAEA; cursor: pointer;
}
.pg-back svg { width: 9px; height: auto; }
.pg-title { flex: 1; font: 800 19px/1.1 'Inter', sans-serif; letter-spacing: -0.02em; padding-left: 6px; }
.pg-headact {
  background: none; border: none; cursor: pointer; padding: 6px 4px;
  font: 600 12px/1 'Inter', sans-serif; color: var(--acc-bright, #00C49A);
}
.pg-scroll { flex: 1; overflow-y: auto; min-height: 0; padding: 4px 18px 26px; }
.pg-scroll::-webkit-scrollbar { display: none; }

/* ═══ Pass ID ═══ */
.pg-cardwrap { margin: 6px 0 16px; perspective: 900px; }
.pg-qrtile {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 18px 16px 14px; margin-bottom: 16px; border-radius: 18px;
  background: #FDFDFB; color: #0F0F0F;
}
.pg-qrtile svg { display: block; }
.pg-qrnum { font: 700 14px/1 'SF Mono', ui-monospace, monospace; letter-spacing: 0.12em; color: #1C1C1F; }
.pg-qrhint { font: 400 10.5px/1.4 'Inter', sans-serif; color: #8A8A93; text-align: center; }
.pg-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.pg-actions.single { grid-template-columns: 1fr; }
.pg-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; border-radius: 13px; cursor: pointer;
  font: 650 13px/1 'Inter', sans-serif;
  background: #161619; border: 1px solid rgba(255,255,255,0.1); color: #FAFAFA;
}
.pg-btn:active { background: #1E1E22; }
.pg-btn.primary { background: #FAFAFA; border-color: #FAFAFA; color: #0F0F0F; }
.pg-btn.primary:active { background: #E4E4E7; }
.pg-btn.danger { background: rgba(242,109,109,0.09); border-color: rgba(242,109,109,0.25); color: #F26D6D; }
.pg-info { border-radius: 16px; overflow: hidden; margin-bottom: 18px; background: #101013; border: 1px solid rgba(255,255,255,0.07); }
.pg-inforow {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; min-height: 46px;
}
.pg-inforow + .pg-inforow { border-top: 1px solid rgba(255,255,255,0.06); }
.pg-inforow span { font: 450 12.5px/1.3 'Inter', sans-serif; color: #8E8E96; }
.pg-inforow b { font: 600 12.5px/1.3 'Inter', sans-serif; color: #FAFAFA; text-align: right; display: flex; align-items: center; gap: 6px; }
.pg-inforow b.ok { color: var(--acc-bright, #00C49A); }

/* ═══ Pills d'état (coffre, mandats) ═══ */
.pg-pill {
  flex-shrink: 0; padding: 4px 9px; border-radius: 99px;
  font: 600 9.5px/1 'Inter', sans-serif; letter-spacing: 0.03em;
  background: rgba(255,255,255,0.07); color: #A1A1AA;
}
.pg-pill.ok { background: color-mix(in srgb, var(--acc-bright, #00C49A) 14%, transparent); color: var(--acc-bright, #00C49A); }
.pg-pill.warn { background: rgba(226,178,72,0.13); color: #E2B248; }
.pg-pill.off { background: rgba(242,109,109,0.12); color: #F26D6D; }

/* ═══ Réglages ═══ */
.pg-toggle {
  position: relative; width: 44px; height: 26px; border-radius: 99px; flex-shrink: 0;
  background: #2A2A30; border: 1px solid rgba(255,255,255,0.08); cursor: pointer;
  transition: background 200ms;
}
.pg-toggle::after {
  content: ''; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px;
  border-radius: 50%; background: #FAFAFA; transition: transform 220ms cubic-bezier(0.2,0,0,1);
}
.pg-toggle.on { background: var(--acc, #00A37E); border-color: transparent; }
.pg-toggle.on::after { transform: translateX(18px); }
.pg-seg {
  display: flex; gap: 3px; padding: 3px; border-radius: 10px; flex-shrink: 0;
  background: #1B1B1F; border: 1px solid rgba(255,255,255,0.07);
}
.pg-seg button {
  padding: 6px 13px; border-radius: 8px; border: none; cursor: pointer;
  background: none; font: 650 11px/1 'Inter', sans-serif; color: #8E8E96;
}
.pg-seg button.on { background: #FAFAFA; color: #0F0F0F; }

/* ═══ Notifications ═══ */
.hm-notif { position: relative; }
.hm-notif.unread::before {
  content: ''; position: absolute; left: 5px; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--acc-bright, #00C49A);
}
.hm-notif.unread .hm-row-txt b { color: #FFFFFF; }
.hm-notif:not(.unread) .hm-row-txt b { color: #B9B9C0; }

/* ═══ Aide · FAQ accordéon ═══ */
.pg-faq { width: 100%; background: none; border: none; cursor: pointer; color: inherit; text-align: left; padding: 0; }
.pg-faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 13px 14px; font: 650 13px/1.35 'Inter', sans-serif; color: #FAFAFA;
}
.pg-faq-q svg { flex-shrink: 0; transition: transform 220ms; color: #71717A; }
.pg-faq.open .pg-faq-q svg { transform: rotate(90deg); }
.pg-faq-a {
  max-height: 0; overflow: hidden; transition: max-height 260ms cubic-bezier(0.2,0,0,1);
  font: 400 12px/1.55 'Inter', sans-serif; color: #9C9CA4; padding: 0 14px;
}
.pg-faq.open .pg-faq-a { max-height: 160px; padding-bottom: 13px; }
.pg-faq + .pg-faq { border-top: 1px solid rgba(255,255,255,0.06); }

/* ═══ Feuilles modales ═══ */
.pg-sheetwrap { position: absolute; inset: 0; z-index: 80; display: flex; flex-direction: column; justify-content: flex-end; }
.pg-scrim { position: absolute; inset: 0; background: rgba(0,0,0,0.55); animation: pgFade 220ms; }
@keyframes pgFade { from { opacity: 0; } }
.pg-sheet {
  position: relative; max-height: 78%; overflow-y: auto;
  border-radius: 24px 24px 0 0; padding: 8px 18px calc(16px + 12px);
  background: #131316; border-top: 1px solid rgba(255,255,255,0.1);
  animation: pgUp 320ms cubic-bezier(0.2, 0, 0, 1);
  font-family: 'Inter', sans-serif; color: #FAFAFA;
}
.pg-sheet::-webkit-scrollbar { display: none; }
@keyframes pgUp { from { transform: translateY(60px); opacity: 0; } }
.pg-grab { display: block; width: 38px; height: 4px; border-radius: 99px; margin: 4px auto 12px; background: rgba(255,255,255,0.18); }
.pg-sheet-title { font: 800 17px/1.2 'Inter', sans-serif; letter-spacing: -0.02em; margin-bottom: 14px; }
.pg-sheet-title.center { text-align: center; }
.pg-sheet .hm-cardlist { background: #1A1A1E; border-color: rgba(255,255,255,0.08); }
.pg-sheet .hm-row + .hm-row { border-top-color: rgba(255,255,255,0.07); }

/* Contact dans une feuille */
.pg-contact-acts { display: flex; gap: 8px; flex-shrink: 0; }
.pg-roundbtn {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.09);
  color: var(--acc-bright, #00C49A); cursor: pointer;
}
.pg-roundbtn:active { background: rgba(255,255,255,0.12); }

/* Fiche événement / document */
.pg-ev-head { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.pg-ev-date {
  width: 52px; height: 56px; border-radius: 13px; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
}
.pg-ev-date b { font: 800 17px/1 'Inter', sans-serif; }
.pg-ev-date em { font: 600 9px/1 'Inter', sans-serif; font-style: normal; letter-spacing: 0.08em; color: #8E8E96; }
.pg-ev-name { font: 750 15.5px/1.25 'Inter', sans-serif; letter-spacing: -0.01em; }
.pg-ev-sub { font: 400 12px/1.4 'Inter', sans-serif; color: #8E8E96; margin-top: 3px; }
.pg-sheet .pg-info { background: #1A1A1E; border-color: rgba(255,255,255,0.08); }
.pg-sheet .pg-inforow + .pg-inforow { border-top-color: rgba(255,255,255,0.07); }
.pg-sheet-actions { display: grid; gap: 9px; margin-top: 14px; }
.pg-mono { font-family: 'SF Mono', ui-monospace, monospace; letter-spacing: 0.06em; font-size: 11.5px; }

/* Chips (nouvel événement) */
.pg-chiplbl { font: 700 10px/1 'Inter', sans-serif; letter-spacing: 0.12em; text-transform: uppercase; color: #71717A; margin: 14px 2px 8px; }
.pg-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.pg-chip {
  padding: 9px 13px; border-radius: 99px; cursor: pointer;
  background: #1A1A1E; border: 1px solid rgba(255,255,255,0.09);
  font: 550 12px/1 'Inter', sans-serif; color: #D4D4D8;
}
.pg-chip.on {
  background: var(--acc, #00A37E);
  border-color: var(--acc, #00A37E); color: #fff; font-weight: 700;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--acc, #00A37E) 35%, transparent);
}
.ag-typechip.on { background: var(--tc, var(--acc, #00A37E)); border-color: var(--tc, var(--acc, #00A37E)); color: #fff;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--tc, #00A37E) 35%, transparent); }
.ag-typechip.on .ag-typedot { background: rgba(255,255,255,0.95); }
.ag-whochip.on::after, .ag-typechip.on::after {
  content: '✓'; margin-left: 3px; font-size: 10px; font-weight: 800; opacity: 0.92;
}
.ag-plus.on::after, .ag-plus::after { content: none; }

/* ═══ Recherche réelle (liste Messages) ═══ */
.hm-search input {
  flex: 1; min-width: 0; height: 100%; background: none; border: none; outline: none;
  font: 400 13px/1 'Inter', sans-serif; color: #FAFAFA;
}
.hm-search input::placeholder { color: #6B6B73; }
.hm-search-clear {
  background: none; border: none; cursor: pointer; padding: 2px;
  display: flex; color: #6B6B73;
}
.hm-empty {
  padding: 26px 14px; text-align: center;
  font: 400 12.5px/1.5 'Inter', sans-serif; color: #71717A;
}

/* ═══ Conversation vide (nouveau contact) ═══ */
.chat-empty {
  margin: auto; max-width: 240px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 28px 0;
}
.chat-empty-ic {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--acc, #00A37E) 12%, transparent);
}
.chat-empty b { font: 650 13px/1.4 'Inter', sans-serif; }
.chat-empty span { font: 400 11.5px/1.5 'Inter', sans-serif; opacity: 0.55; }

/* ═══ Fiche contact (depuis le chat) ═══ */
.pg-peer { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 16px; }
.pg-peer-name { font: 800 18px/1.1 'Inter', sans-serif; letter-spacing: -0.02em; display: flex; align-items: center; gap: 7px; }
.pg-peer-role { font: 450 12px/1.3 'Inter', sans-serif; color: #8E8E96; }
.pg-peer-pass { font: 600 11px/1 'SF Mono', ui-monospace, monospace; letter-spacing: 0.1em; color: #71717A; margin-top: 2px; }
.pg-peer-acts { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; width: 100%; margin: 14px 0 2px; }

/* Le chat est en thème clair par défaut : la feuille reste sombre (cohérent iOS) */
.pg-sheetwrap.in-chat { z-index: 95; }

/* Le toast doit passer au-dessus des sous-pages et des feuilles */
.hm-toast { z-index: 96; }

/* ═══ Feuille « Nouveau message » · sélecteur de contact (style WhatsApp) ═══ */
.nm-sheet { max-height: 88%; padding-top: 8px; }
/* En-tête : titre centré + bouton fermer (comme « Nouvelle discussion ») */
.nm-head { position: relative; display: flex; align-items: center; justify-content: center; min-height: 30px; margin: 0 0 12px; }
.nm-title { font: 800 17px/1.2 'Inter', sans-serif; letter-spacing: -0.02em; }
.nm-close {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); color: #B5B5BA;
}
.nm-close:active { background: rgba(255,255,255,0.14); }
.hm.light .nm-close { background: rgba(15,15,16,0.06); color: #6B6B73; }
.hm.light .nm-close:active { background: rgba(15,15,16,0.12); }

/* Recherche + filtres restent épinglés en haut quand on fait défiler l'annuaire */
.nm-tools {
  position: sticky; top: 0; z-index: 6;
  margin: 0 -18px; padding: 8px 18px 0;
  background: #131316;
}
.hm.light .nm-tools { background: #FFFFFF; }
.nm-search { margin: 0 0 10px; }
.nm-chips { margin: 0; padding: 0 0 12px; }

/* Colonne défilante (laisse une gouttière à droite pour l'index A→Z) */
.nm-scroll { padding-right: 16px; }

/* Carte d'actions (Nouveau groupe / Inviter / Diffusion) */
.nm-actions { margin-bottom: 16px; }
.nm-action .hm-row-ic { color: var(--acc-bright, #00C49A); }
.hm.light .nm-action .hm-row-ic { background: color-mix(in srgb, var(--acc, #00A37E) 10%, #fff); color: var(--acc, #00A37E); }
.nm-action .hm-row-txt em { color: #8E8E96; }

.nm-sechead { margin: 2px 2px 7px; }
.nm-letter span { font: 800 11px/1 'Inter', sans-serif; letter-spacing: 0.06em; }
.nm-letter em {
  font-style: normal; font: 600 11px/1 'Inter', sans-serif; color: #57575F;
}
.hm.light .nm-letter em { color: #9AA0A6; }
.nm-group { margin-bottom: 13px; }
.nm-group:last-of-type { margin-bottom: 4px; }
.nm-empty { padding: 32px 8px; text-align: center; }

/* Index alphabétique A→Z (scrubber) · épinglé sur le bord droit de la feuille */
.nm-rail {
  position: absolute; right: 1px; bottom: 56px; z-index: 90;
  display: flex; flex-direction: column; align-items: center;
  padding: 4px 3px; gap: 0;
}
.nm-railL {
  appearance: none; border: none; background: none; cursor: pointer;
  width: 16px; height: 15px; padding: 0; border-radius: 4px;
  font: 700 9.5px/1 'Inter', sans-serif; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.26);
}
.nm-railL.on { color: var(--acc-bright, #00C49A); }
.nm-railL:active { color: #FFFFFF; }
.hm.light .nm-railL { color: rgba(15,15,16,0.26); }
.hm.light .nm-railL.on { color: var(--acc, #00A37E); }
.hm.light .nm-railL:active { color: #0F0F10; }

/* ═══ Feuille « Nouvel appel » · recherche, appel/visio/message, ajout QR / Pass ID ═══ */
.nc-back {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; color: #A1A1AA;
}
.nc-back:active { color: #FFFFFF; }
.hm.light .nc-back { color: #6B6B73; }
.hm.light .nc-back:active { color: #0F0F10; }

.nc-hint {
  margin: 12px auto 0; max-width: 240px; text-align: center;
  font: 400 11.5px/1.45 'Inter', sans-serif; color: #8E8E96;
}
.hm.light .nc-hint { color: #6B6B73; }

/* Scan QR · viseur */
.nc-scan { padding: 22px 0 26px; display: flex; flex-direction: column; align-items: center; }
.nc-scan-frame {
  position: relative; width: 208px; height: 208px; border-radius: 22px;
  background: rgba(255,255,255,0.03);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hm.light .nc-scan-frame { background: rgba(15,15,16,0.04); }
.nc-scan-frame > svg { width: 62px; height: 62px; }
.hm.light .nc-scan-frame > svg { stroke: rgba(15,15,16,0.18); }
.nc-c { position: absolute; width: 26px; height: 26px; border: 2.5px solid var(--acc-bright, #00C49A); }
.hm.light .nc-c { border-color: var(--acc, #00A37E); }
.nc-c.tl { top: 10px; left: 10px; border-right: none; border-bottom: none; border-top-left-radius: 12px; }
.nc-c.tr { top: 10px; right: 10px; border-left: none; border-bottom: none; border-top-right-radius: 12px; }
.nc-c.bl { bottom: 10px; left: 10px; border-right: none; border-top: none; border-bottom-left-radius: 12px; }
.nc-c.br { bottom: 10px; right: 10px; border-left: none; border-top: none; border-bottom-right-radius: 12px; }
.nc-scan-line {
  position: absolute; left: 18px; right: 18px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--acc-bright, #00C49A), transparent);
  animation: nc-scanline 1.8s ease-in-out infinite alternate;
}
.hm.light .nc-scan-line { background: linear-gradient(90deg, transparent, var(--acc, #00A37E), transparent); }
@keyframes nc-scanline { from { top: 14%; } to { top: 86%; } }
@media (prefers-reduced-motion: reduce) { .nc-scan-line { animation: none; top: 50%; } }

/* Contact trouvé (scan ou numéro) */
.nc-found {
  margin: 14px auto 6px; max-width: 300px;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 20px 18px; border-radius: 18px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.hm.light .nc-found { background: #F7F7F5; border-color: rgba(15,15,16,0.08); }
.nc-found-av { width: 56px; height: 56px; font-size: 18px; margin-bottom: 6px; }
.nc-found > b { font: 700 16px/1.2 'Inter', sans-serif; color: #FAFAFA; }
.hm.light .nc-found > b { color: #0F0F10; }
.nc-found > em { font: 500 11.5px/1.3 'Inter', sans-serif; font-style: normal; color: #8E8E96; }
.hm.light .nc-found > em { color: #6B6B73; }
.nc-found-pass {
  margin-top: 7px; display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 999px;
  background: color-mix(in srgb, var(--acc-bright, #00C49A) 12%, transparent);
  color: var(--acc-bright, #00C49A);
  font: 600 10px/1 'Inter', sans-serif; letter-spacing: 0.03em;
}
.hm.light .nc-found-pass { background: color-mix(in srgb, var(--acc, #00A37E) 10%, transparent); color: var(--acc, #00A37E); }
.nc-found-add { width: 100%; margin-top: 13px; }
.nc-found-done { margin-top: 13px; font: 600 11.5px/1 'Inter', sans-serif; color: #8E8E96; }

/* Saisie du numéro Pass ID · FP- pré-rempli + pavé numérique */
.nc-pass { padding: 14px 2px 22px; }
.nc-passrow { display: flex; gap: 8px; }
.nc-passfield {
  flex: 1; min-width: 0; height: 44px; padding: 0 14px; border-radius: 12px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center;
  font: 600 16px/1 'Inter', sans-serif; letter-spacing: 0.07em; white-space: nowrap; overflow: hidden;
}
.nc-pre { color: #8E8E96; }
.nc-typed { color: #FAFAFA; font-weight: 650; }
.nc-ghost { color: #4A4A52; font-style: normal; font-weight: 500; }
.hm.light .nc-passfield { background: #FFFFFF; border-color: rgba(15,15,16,0.12); }
.hm.light .nc-pre { color: #9A9AA2; }
.hm.light .nc-typed { color: #0F0F10; }
.hm.light .nc-ghost { color: #C9C9CE; }
.nc-caret {
  width: 2px; height: 20px; margin: 0 1px; border-radius: 2px; flex-shrink: 0;
  background: var(--acc-bright, #00C49A);
  animation: nc-caret-blink 1.05s steps(1) infinite;
}
.hm.light .nc-caret { background: var(--acc, #00A37E); }
@keyframes nc-caret-blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .nc-caret { animation: none; } }
.nc-verify {
  flex-shrink: 0; height: 44px; padding: 0 18px; border-radius: 12px; cursor: pointer;
  background: var(--acc-bright, #00C49A); border: none; color: #04130E;
  font: 700 12.5px/1 'Inter', sans-serif;
}
.nc-verify:disabled { opacity: 0.4; cursor: default; }
.hm.light .nc-verify { background: var(--acc, #00A37E); color: #FFFFFF; }

/* Pavé numérique façon iOS */
.nc-kbd {
  margin-top: 16px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px;
}
.nc-key {
  height: 48px; border-radius: 10px; cursor: pointer; border: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  background: rgba(255,255,255,0.08); color: #FAFAFA;
}
.nc-key:active { background: rgba(255,255,255,0.18); }
.nc-key b { font: 500 22px/1 'Inter', sans-serif; }
.nc-key em {
  font: 700 9px/1 'Inter', sans-serif; font-style: normal;
  letter-spacing: 0.14em; color: #8E8E96;
}
.nc-key.del { background: none; color: #C7C7CE; }
.nc-key.del:active { color: #FFFFFF; background: rgba(255,255,255,0.08); }
.hm.light .nc-key { background: #FFFFFF; color: #0F0F10; box-shadow: 0 1px 0 rgba(15,15,16,0.18); }
.hm.light .nc-key:active { background: #E9E9EB; }
.hm.light .nc-key em { color: #8A8A93; }
.hm.light .nc-key.del { background: none; box-shadow: none; color: #52525B; }
