/* Fonts: Barlow vom Theme geerbt, kein Google-Fonts-Import */

:root {
  --ic-wa-dark:  #075E54;
  --ic-wa:       #128C7E;
  --ic-wa-light: #25D366;
  --ic-out-bg:   #DCF8C6;
  --ic-in-bg:    #FFFFFF;
  --ic-panel:    #F0F2F5;
  --ic-chat-bg:  #ECE5DD;
  --ic-text:     #111B21;
  --ic-muted:    #667781;
  --ic-edge:     rgba(17,27,33,.10);
  --ic-shadow:   0 8px 30px rgba(0,0,0,.22), 0 2px 8px rgba(0,0,0,.12);
  --ic-font:     system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ic-font-h:   system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

#ic-root * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--ic-font);
  -webkit-font-smoothing: antialiased;
}

/* ── Toggle-Button ───────────────────────────────────────────────────────── */
#ic-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  overflow: visible;
  border-radius: 50%;
  background: var(--ic-wa-light);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(37,211,102,.38);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  transition: transform .18s ease, background .18s;
  -webkit-tap-highlight-color: transparent;
}
#ic-btn:hover { transform: scale(1.07); background: var(--ic-wa); }
#ic-btn svg   { width: 28px; height: 28px; }

#ic-badge {
  position: absolute;
  top: 1px; right: 1px;
  min-width: 19px; height: 19px;
  background: #D4A843;
  border-radius: 10px;
  font-size: 11px; font-weight: 700; color: #fff;
  display: none;
  align-items: center; justify-content: center;
  padding: 0 5px; line-height: 1;
}

/* ── Fenster ─────────────────────────────────────────────────────────────── */
#ic-win {
  position: fixed;
  bottom: 94px; right: 24px;
  width: 380px;
  height: min(680px, calc(100vh - 124px));
  max-height: 680px;
  border-radius: 14px;
  background: var(--ic-panel);
  box-shadow: var(--ic-shadow);
  display: flex;
  flex-direction: column;
  z-index: 9997;
  overflow: hidden;
  transform-origin: bottom right;
  transition: opacity .2s ease, transform .2s ease;
}
#ic-win.ic-hidden {
  opacity: 0;
  transform: scale(.88) translateY(14px);
  pointer-events: none;
}

/* ── Header ──────────────────────────────────────────────────────────────── */
#ic-hdr {
  background: var(--ic-wa-dark);
  color: #fff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
#ic-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex;
  align-items: center; justify-content: center;
  font-family: var(--ic-font-h);
  font-size: 16px; font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
#ic-avatar img,
.ic-avatar-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ic-avatar-letter {
  display: flex;
  width: 100%; height: 100%;
  align-items: center; justify-content: center;
}
#ic-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 2px rgba(255,255,255,.25);
  transition: background .4s;
  flex-shrink: 0;
}
#ic-dot.ic-dot-orange { background: #fb923c; }
#ic-dot.ic-dot-red    { background: #f87171; }
#ic-hdr-info { flex: 1; min-width: 0; }
#ic-hdr-name {
  font-family: var(--ic-font-h);
  font-size: 15px; font-weight: 600;
  line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
#ic-hdr-sub { font-size: 11px; opacity: .72; margin-top: 2px; }

/* ── Header-Schließen-Button ─────────────────────────────────────────────── */
#ic-close-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.13);
  color: #fff;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 6px;
  transition: background .18s;
}
#ic-close-btn:hover { background: rgba(255,255,255,.24); }

/* ── Name-Screen ─────────────────────────────────────────────────────────── */
#ic-name-scr {
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#ic-name-scr > p { font-size: 14px; line-height: 1.55; color: var(--ic-text); }
#ic-ni {
  border: 1.5px solid #ddd;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 15px; outline: none; background: #fff;
  transition: border-color .18s;
}
#ic-ni:focus { border-color: var(--ic-wa); }
#ic-nb {
  background: var(--ic-wa); color: #fff;
  border: none; border-radius: 10px;
  padding: 11px 18px;
  font-size: 15px; font-weight: 500; cursor: pointer;
  transition: background .18s;
}
#ic-nb:hover { background: var(--ic-wa-dark); }

/* ── Nachrichten-Container ────────────────────────────────────────────────── */
#ic-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  scroll-behavior: smooth;
  background-color: var(--ic-chat-bg);
  background-image:
    radial-gradient(circle at 14px 14px, rgba(0,0,0,.035) 1.2px, transparent 1.3px),
    radial-gradient(circle at 38px 34px, rgba(255,255,255,.28) 1.2px, transparent 1.3px);
  background-size: 52px 52px;
}
#ic-msgs::-webkit-scrollbar { width: 3px; }
#ic-msgs::-webkit-scrollbar-track { background: transparent; }
#ic-msgs::-webkit-scrollbar-thumb { background: rgba(0,0,0,.15); border-radius: 2px; }

/* ── Nachrichten-Blase ───────────────────────────────────────────────────── */
.ic-msg {
  display: flex;
  max-width: 88%;
  animation: ic-pop .14s ease;
}
@keyframes ic-pop {
  from { opacity: 0; transform: translateY(5px) scale(.97); }
  to   { opacity: 1; transform: none; }
}

#ic-root .ic-bubble {
  min-width: 118px;
  padding: 14px 20px 10px;
  border-radius: 14px;
  word-break: break-word;
  position: relative;
  overflow: visible;
}
.ic-txt {
  display: block;
  font-size: 15px;
  line-height: 1.55;
}

/* Zeit + Haken als Zeile am Ende der Blase */
.ic-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 7px;
}
.ic-meta time {
  font-size: 11px;
  opacity: .6;
  white-space: nowrap;
}

/* Ausgehend (rechts) */
.ic-out { align-self: flex-end; }
.ic-out .ic-bubble {
  background: var(--ic-out-bg);
  color: var(--ic-text);
  border-radius: 15px 15px 4px 15px;
  box-shadow: 0 1px .5px rgba(11,20,26,.13);
}
/* Kleiner Schwanz: scharfe Ecke unten rechts reicht als Richtungsindikator */

/* Eingehend (links) */
.ic-in {
  align-self: flex-start;
  flex-direction: row;
  align-items: flex-end;
  gap: 10px;
}
.ic-in .ic-bubble {
  background: var(--ic-in-bg);
  color: var(--ic-text);
  border-radius: 15px 15px 15px 4px;
  box-shadow: 0 1px .5px rgba(11,20,26,.13);
}
.ic-msg-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ic-wa-dark);
  color: #fff;
  display: flex;
  align-items: center; justify-content: center;
  flex: 0 0 28px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(0,0,0,.12);
}
.ic-msg-avatar-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Aufeinanderfolgende Nachrichten vom gleichen Sender: kleinerer Abstand */
.ic-out + .ic-out { margin-top: 2px; }
.ic-out + .ic-out .ic-bubble { border-radius: 8px 3px 2px 8px; }
.ic-in  + .ic-in  { margin-top: 2px; }
.ic-in  + .ic-in  .ic-bubble { border-radius: 3px 8px 8px 2px; }

/* ── Lesebestätigungen ──────────────────────────────────────────────────── */
.ic-tick {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ic-tick svg {
  display: block;
}
/* WhatsApp-ähnlich: Haken in Grau/Blau */
.ic-out .ic-tick { color: #8696a0; }
.ic-out .ic-tick.ic-t2 { color: #53bdeb; }

/* Systemhinweise (Fehler etc.) */
.ic-sys {
  text-align: center;
  font-size: 11px;
  color: #999;
  padding: 4px 8px;
  background: rgba(0,0,0,.06);
  border-radius: 8px;
  align-self: center;
  max-width: 80%;
}

/* ── Eingabe ─────────────────────────────────────────────────────────────── */
#ic-inp {
  padding: 13px 14px;
  border-top: 1px solid var(--ic-edge);
  display: flex;
  align-items: flex-end;
  gap: 8px;
  background: var(--ic-panel);
  flex-shrink: 0;
}
#ic-ta {
  flex: 1;
  border: 1.5px solid #e5e5e5;
  border-radius: 22px;
  padding: 11px 16px;
  font-size: 15px;
  resize: none; outline: none;
  background: #fff;
  max-height: 120px;
  line-height: 1.4;
  font-family: var(--ic-font);
  transition: border-color .18s;
}
#ic-ta:focus { border-color: var(--ic-wa); }
#ic-sb {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ic-wa); color: #fff;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .18s;
}
#ic-sb:hover { background: var(--ic-wa-dark); }
#ic-sb svg { width: 17px; height: 17px; }

/* ── Verlauf-löschen Footer ──────────────────────────────────────────────── */
#ic-footer {
  text-align: center;
  padding: 10px 12px;
  border-top: 1px solid var(--ic-edge);
  flex-shrink: 0;
  background: #fff;
}
#ic-clear {
  background: none; border: none;
  font-size: 11px; color: #c0b8b0;
  cursor: pointer; text-decoration: underline;
  font-family: var(--ic-font); padding: 0;
}
#ic-clear:hover { color: var(--ic-wa); }

/* ── Kontaktformular ─────────────────────────────────────────────────────── */
#ic-contact {
  padding: 20px 20px 16px;
  display: flex; flex-direction: column; gap: 10px;
  overflow-y: auto;
  background: var(--ic-panel);
}
#ic-contact p { font-size: 14px; line-height: 1.55; color: var(--ic-text); }
.ic-ci {
  border: 1.5px solid #ddd; border-radius: 10px;
  padding: 10px 13px; font-size: 14px;
  font-family: var(--ic-font); outline: none;
  width: 100%; background: #fff;
  transition: border-color .18s;
}
.ic-ci:focus { border-color: var(--ic-wa); }
textarea.ic-ci { resize: none; }
#cc-send {
  background: var(--ic-wa); color: #fff;
  border: none; border-radius: 10px;
  padding: 11px; font-size: 15px;
  font-family: var(--ic-font); cursor: pointer;
  font-weight: 500;
  transition: background .18s;
}
#cc-send:hover    { background: var(--ic-wa-dark); }
#cc-send:disabled { background: #ccc; cursor: default; }

/* Honeypot */
#cc-website {
  position: absolute; left: -9999px;
  width: 1px; height: 1px; opacity: 0; pointer-events: none;
}

.ic-hint { font-size: 11px; color: #bbb; line-height: 1.4; }

/* ── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 440px) {
  #ic-win  { width: calc(100vw - 16px); right: 8px; bottom: 82px; max-height: 74vh; }
  #ic-btn  { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .ic-msg { max-width: 92%; }
  .ic-bubble { min-width: 84px; }
}

/* ── WhatsApp-ähnliche Profilkarte ─────────────────────────────────────── */
#ic-avatar,
#ic-hdr-info {
  cursor: pointer;
}
#ic-profile {
  position: absolute;
  inset: 0;
  z-index: 20;
  background: rgba(0, 0, 0, .32);
  display: flex;
  align-items: flex-end;
}
#ic-profile.ic-profile-hidden {
  display: none;
}
.ic-profile-panel {
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #fff;
  color: var(--ic-text);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -8px 30px rgba(0,0,0,.22);
  position: relative;
  animation: ic-profile-up .18s ease;
}
@keyframes ic-profile-up {
  from { transform: translateY(18px); opacity: .88; }
  to   { transform: none; opacity: 1; }
}
#ic-profile-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.26);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.ic-profile-cover {
  height: 132px;
  background: var(--ic-wa-dark);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
}
.ic-profile-bigavatar {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  font-weight: 700;
  transform: translateY(34px);
  border: 4px solid #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,.22);
}
.ic-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ic-profile-body {
  padding: 46px 22px 22px;
}
.ic-profile-name {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
}
.ic-profile-status {
  margin-top: 4px;
  color: var(--ic-muted);
  text-align: center;
  font-size: 13px;
}
.ic-profile-section {
  margin-top: 20px;
  border-top: 1px solid var(--ic-edge);
  padding-top: 14px;
}
.ic-profile-label {
  color: var(--ic-wa);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 7px;
  text-transform: uppercase;
}
.ic-profile-section p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ic-text);
}
.ic-profile-row {
  display: block;
  padding: 9px 0;
  color: var(--ic-text);
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid rgba(17,27,33,.06);
  word-break: break-word;
}
.ic-profile-row:hover {
  color: var(--ic-wa-dark);
}


/* ── V5: aufmerksamkeitsstarker Button ───────────────────────────────────── */
#ic-cta {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translate(12px, -50%);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  background: #fff;
  color: var(--ic-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 11px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
  transition: opacity .22s ease, transform .22s ease;
}
#ic-cta::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #fff;
  transform: translateY(-50%) rotate(45deg);
}
#ic-btn.ic-cta-show #ic-cta {
  opacity: 1;
  transform: translate(0, -50%);
}
#ic-btn.ic-bounce {
  animation: ic-btn-bounce .72s ease;
}
@keyframes ic-btn-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  28% { transform: translateY(-9px) scale(1.04); }
  55% { transform: translateY(0) scale(.98); }
  78% { transform: translateY(-4px) scale(1.02); }
}

/* ── V5: mehr Luft in den Nachrichten ───────────────────────────────────── */
#ic-msgs { gap: 5px; padding: 22px 18px 18px; }
#ic-root .ic-bubble { min-width: 118px; padding: 14px 20px 10px; border-radius: 15px; }
.ic-txt { line-height: 1.58; }
.ic-meta { margin-top: 7px; }
.ic-in { gap: 11px; }
.ic-msg-avatar { width: 32px; height: 32px; flex-basis: 32px; }
.ic-out .ic-bubble { border-radius: 15px 15px 4px 15px; }
.ic-in .ic-bubble { border-radius: 15px 15px 15px 4px; }

/* ── V5: Datei-Upload ───────────────────────────────────────────────────── */
#ic-file-btn {
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  color: #667781;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  cursor: pointer;
  border-radius: 50%;
}
#ic-file-btn:hover { background: rgba(0,0,0,.05); color: var(--ic-wa-dark); }
#ic-file-btn svg { width: 24px; height: 24px; }
.ic-file-link {
  color: var(--ic-wa-dark);
  font-weight: 600;
  text-decoration: none;
}
.ic-file-link:hover { text-decoration: underline; }

.ic-audio {
  display: block;
  width: 210px;
  max-width: 100%;
  height: 36px;
  margin: 2px 0;
}

.ic-audio-fallback {
  display: block;
  font-size: 13px;
}
.ic-audio-fallback a {
  color: inherit;
  text-decoration: underline;
}

#ic-drop {
  position: absolute;
  inset: 74px 14px 82px;
  z-index: 18;
  border: 2px dashed rgba(18,140,126,.7);
  background: rgba(236,245,241,.92);
  color: var(--ic-wa-dark);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  pointer-events: none;
}
#ic-drop.ic-drop-hidden { display: none; }

/* ── V5: Profil als echtes externes Popup ───────────────────────────────── */
#ic-profile {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(17, 27, 33, .48);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#ic-profile.ic-profile-hidden { display: none; }
.ic-profile-panel {
  width: min(420px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 40px));
  overflow-y: auto;
  background: #fff;
  color: var(--ic-text);
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  position: relative;
  animation: ic-profile-pop .18s ease;
}
@keyframes ic-profile-pop {
  from { transform: translateY(14px) scale(.97); opacity: .7; }
  to   { transform: none; opacity: 1; }
}
.ic-profile-cover { height: 154px; border-radius: 22px 22px 0 0; }
.ic-profile-bigavatar { width: 118px; height: 118px; transform: translateY(38px); }
.ic-profile-body { padding: 54px 24px 24px; }
.ic-profile-section { margin-top: 22px; padding-top: 16px; }
.ic-profile-row { padding: 12px 0; }
#ic-profile-close {
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  font-size: 28px;
}

/* ── V5: Mobile luftiger ────────────────────────────────────────────────── */
@media (max-width: 440px) {
  #ic-win  {
    width: calc(100vw - 20px);
    right: 10px;
    bottom: 88px;
    height: min(76vh, 650px);
    max-height: 76vh;
    border-radius: 18px;
  }
  #ic-hdr { padding: 17px 18px; }
  #ic-msgs { padding: 24px 20px 18px; gap: 6px; }
  .ic-msg { max-width: 91%; }
  #ic-root .ic-bubble { min-width: 124px; padding: 14px 20px 10px; }
  #ic-inp { padding: 14px 14px; gap: 9px; }
  #ic-ta { padding: 12px 16px; }
  #ic-sb { width: 46px; height: 46px; }
  #ic-cta { right: 62px; font-size: 13px; padding: 10px 13px; }
  #ic-profile { align-items: center; padding: 16px; }
  .ic-profile-panel { width: calc(100vw - 28px); border-radius: 22px; }
}


/* ── V5.1: Emoji + Mikrofon wiederhergestellt ───────────────────────────── */
#ic-inp {
  position: relative;
}
#ic-emoji-btn,
#ic-mic-btn {
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  color: #667781;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  cursor: pointer;
  border-radius: 50%;
}
#ic-emoji-btn {
  font-size: 23px;
  line-height: 1;
}
#ic-mic-btn svg {
  width: 24px;
  height: 24px;
}
#ic-emoji-btn:hover,
#ic-mic-btn:hover {
  background: rgba(0,0,0,.05);
  color: var(--ic-wa-dark);
}
#ic-mic-btn.ic-mic-active {
  background: rgba(18,140,126,.12);
  color: var(--ic-wa);
  animation: ic-mic-pulse 1s infinite;
}
@keyframes ic-mic-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(18,140,126,.25); }
  50% { box-shadow: 0 0 0 7px rgba(18,140,126,0); }
}

#ic-emoji-panel {
  position: absolute;
  left: 12px;
  bottom: 64px;
  z-index: 25;
  width: 260px;
  max-width: calc(100vw - 48px);
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  background: #fff;
  border: 1px solid rgba(17,27,33,.10);
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(0,0,0,.22);
}
#ic-emoji-panel.ic-emoji-hidden {
  display: none;
}
#ic-emoji-panel button {
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  padding: 8px;
}
#ic-emoji-panel button:hover {
  background: rgba(18,140,126,.08);
}

@media (max-width: 440px) {
  #ic-emoji-btn,
  #ic-file-btn,
  #ic-mic-btn {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
  #ic-emoji-btn { font-size: 22px; }
  #ic-file-btn svg,
  #ic-mic-btn svg { width: 23px; height: 23px; }
  #ic-emoji-panel {
    left: 10px;
    bottom: 70px;
    width: 252px;
  }
}

/* ── V5.7: Sprachnachricht erst als Entwurf/Vorschau ───────────────────── */
#ic-inp {
  flex-wrap: wrap;
}
#ic-voice-draft {
  order: -1;
  flex: 0 0 100%;
  width: 100%;
  margin-bottom: 4px;
}
.ic-voice-draft-hidden {
  display: none !important;
}
.ic-voice-draft-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(18,140,126,.22);
  background: rgba(18,140,126,.07);
  border-radius: 14px;
}
.ic-voice-draft-label {
  font-size: 12px;
  color: #667781;
  white-space: nowrap;
}
.ic-voice-draft-inner audio {
  flex: 1;
  min-width: 120px;
  height: 34px;
}
#ic-voice-redo,
#ic-voice-discard {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: #667781;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
}
#ic-voice-redo:hover,
#ic-voice-discard:hover {
  background: #fff;
  color: var(--ic-wa-dark);
}
#ic-voice-discard {
  font-size: 22px;
}
