:root {
  --bg: #f1f3f6;
  --surface: #ffffff;
  --sunken: #f6f8fa;
  --ink: #0f1b2d;
  --ink2: #33425a;
  --muted: #5f6d82;
  --faint: #95a1b3;
  --line: #dce2ea;
  --line2: #e9edf2;
  --brand: #1f5aa6;
  --brand-soft: #e6eef8;
  --brand-ink: #174a8c;
  --logo: #f28a1e;
  --topbar: #13213a;
  --top-ink: #b9c5d8;
  --top-on: #ffffff;
  --top-mark: #5b95e6;
  --count: #d9443f;
  --btn: #13213a;
  --btn-ink: #ffffff;
  --btn-hover: #213558;
  --focus: rgba(31, 90, 166, 0.25);
  --ok-bg: #e3f1e8;
  --ok: #1b6a42;
  --warn-bg: #fbf0d7;
  --warn: #7a5300;
  --bad-bg: #fae4e1;
  --bad: #9b2a22;
  --neu-bg: #ebeff4;
  --neu: #445167;
  --info-bg: #e6eef8;
  --info: #1f4f86;
  --bar: #b6c1cf;
  --shadow: 0 1px 2px rgba(15, 27, 45, 0.06);
  --sans: "IBM Plex Sans", "Segoe UI", Roboto, Arial, sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0c121b;
    --surface: #141c28;
    --sunken: #19222f;
    --ink: #e5eaf1;
    --ink2: #bcc7d5;
    --muted: #8c99ab;
    --faint: #667386;
    --line: #263143;
    --line2: #1e2837;
    --brand: #6f9fe6;
    --brand-soft: #182841;
    --brand-ink: #a3c1ef;
    --logo: #f59a3c;
    --topbar: #0a111d;
    --top-ink: #9fadc2;
    --top-on: #ffffff;
    --top-mark: #6f9fe6;
    --count: #e0544f;
    --btn: #e5eaf1;
    --btn-ink: #0c121b;
    --btn-hover: #c5cfdb;
    --focus: rgba(111, 159, 230, 0.35);
    --ok-bg: #15301f;
    --ok: #6cc88b;
    --warn-bg: #33290f;
    --warn: #e3b955;
    --bad-bg: #391c19;
    --bad: #ee887c;
    --neu-bg: #202a37;
    --neu: #aab5c3;
    --info-bg: #16293e;
    --info: #8db8e8;
    --bar: #3d4a5c;
    --shadow: none;
  }
}
:root[data-theme="dark"] {
  --bg: #0c121b;
  --surface: #141c28;
  --sunken: #19222f;
  --ink: #e5eaf1;
  --ink2: #bcc7d5;
  --muted: #8c99ab;
  --faint: #667386;
  --line: #263143;
  --line2: #1e2837;
  --brand: #6f9fe6;
  --brand-soft: #182841;
  --brand-ink: #a3c1ef;
  --logo: #f59a3c;
  --topbar: #0a111d;
  --top-ink: #9fadc2;
  --top-on: #ffffff;
  --top-mark: #6f9fe6;
  --count: #e0544f;
  --btn: #e5eaf1;
  --btn-ink: #0c121b;
  --btn-hover: #c5cfdb;
  --focus: rgba(111, 159, 230, 0.35);
  --ok-bg: #15301f;
  --ok: #6cc88b;
  --warn-bg: #33290f;
  --warn: #e3b955;
  --bad-bg: #391c19;
  --bad: #ee887c;
  --neu-bg: #202a37;
  --neu: #aab5c3;
  --info-bg: #16293e;
  --info: #8db8e8;
  --bar: #3d4a5c;
  --shadow: none;
}
* {
  box-sizing: border-box;
}
html,
body {
  background: var(--bg);
}
body {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
}
button,
input,
select {
  font: inherit;
  color: inherit;
}
a {
  color: inherit;
}
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.num {
  font-variant-numeric: tabular-nums;
}
.mono {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}

/* barra superior */
.top {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--topbar);
  border-bottom: 0;
  box-shadow: var(--shadow);
}
.top-in {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 52px;
  padding-inline: 20px;
  max-width: 1440px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}
.brand b {
  font-weight: 700;
  color: var(--logo);
  font-size: 17px;
  letter-spacing: -0.01em;
}
.brand span {
  color: var(--top-ink);
  font-size: 13px;
}
.nav {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}
.nav::-webkit-scrollbar {
  display: none;
}
.nav a {
  padding: 15px 11px 13px;
  text-decoration: none;
  color: var(--top-ink);
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav a:hover {
  color: var(--top-on);
}
.nav a.on {
  color: var(--top-on);
  border-bottom-color: var(--top-mark);
  font-weight: 600;
}
.count {
  background: var(--count);
  color: #fff;
  border-radius: 9px;
  font-size: 11px;
  padding: 0 6px;
  line-height: 17px;
  font-weight: 600;
}

.page {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: 20px;
  padding-block: 22px 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.head h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.head p {
  margin: 4px 0 0;
  color: var(--muted);
  max-width: 80ch;
}
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.panel-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line2);
}
.panel-h h2 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}
.panel-b {
  padding: 14px 16px;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 980px) {
  .grid3,
  .grid2 {
    grid-template-columns: 1fr;
  }
}

/* chips e botoes */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 18px;
}
.c-ok {
  background: var(--ok-bg);
  color: var(--ok);
}
.c-warn {
  background: var(--warn-bg);
  color: var(--warn);
}
.c-bad {
  background: var(--bad-bg);
  color: var(--bad);
}
.c-neu {
  background: var(--neu-bg);
  color: var(--neu);
}
.c-info {
  background: var(--info-bg);
  color: var(--info);
}
.c-brand {
  background: var(--brand-soft);
  color: var(--brand-ink);
}
.btn {
  border: 1px solid var(--btn);
  background: var(--btn);
  color: var(--btn-ink);
  border-radius: 6px;
  padding: 7px 13px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover {
  background: var(--btn-hover);
  border-color: var(--btn-hover);
}
.btn.sec {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}
.btn.sec:hover {
  background: var(--sunken);
}
.btn.sm {
  padding: 4px 9px;
  font-size: 12px;
}
.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.seg {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
}
.seg button {
  border: 0;
  background: none;
  padding: 6px 11px;
  cursor: pointer;
  color: var(--ink2);
  font-size: 13px;
  border-right: 1px solid var(--line);
}
.seg button:last-child {
  border-right: 0;
}
.seg button.on {
  background: var(--sunken);
  color: var(--ink);
  font-weight: 600;
  box-shadow: inset 0 -2px 0 var(--brand);
}
.search {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 7px 10px;
  background: var(--surface);
  min-width: 240px;
}
.search:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--focus);
}
select.sel {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 8px;
  background: var(--surface);
}

/* tabela densa */
.tw {
  overflow-x: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding: 9px 12px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
  background: var(--sunken);
  position: sticky;
  top: 0;
}
td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--line2);
  vertical-align: middle;
}
tr.click {
  cursor: pointer;
}
tr.click:hover td {
  background: var(--sunken);
}
td.r,
th.r {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
td .t {
  font-weight: 500;
  color: var(--ink);
  display: block;
  max-width: 440px;
}
td .s {
  font-size: 12px;
  color: var(--muted);
}
.muted {
  color: var(--muted);
}
.foot {
  padding: 10px 16px;
  color: var(--muted);
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* inicio */
.rep {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rep-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.thermo {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  flex: 1;
}
.thermo i {
  height: 8px;
  border-radius: 2px;
  background: var(--line);
}
.thermo i.on {
  background: #2c8741;
}
.kv {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
}
.kv dt {
  color: var(--muted);
}
.kv dd {
  margin: 0;
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.prog {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.prog-l {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.bar {
  height: 8px;
  background: var(--line2);
  border-radius: 4px;
  overflow: hidden;
}
.bar b {
  display: block;
  height: 100%;
  background: var(--brand);
  border-radius: 4px;
}
.bar b.ok {
  background: var(--ok);
}
.todo {
  display: flex;
  flex-direction: column;
}
.todo a {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line2);
  text-decoration: none;
}
.todo a:last-child {
  border-bottom: 0;
}
.todo a:hover {
  background: var(--sunken);
}
.todo .n {
  font-size: 20px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.todo .d b {
  display: block;
  font-weight: 600;
}
.todo .d span {
  color: var(--muted);
  font-size: 13px;
}
.chart svg {
  width: 100%;
  height: auto;
  display: block;
}
.chart text {
  fill: var(--muted);
  font-size: 10px;
  font-family: var(--sans);
}

/* painel lateral */
.drawer-bg {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 20, 0.35);
  z-index: 40;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(620px, 100%);
  background: var(--surface);
  z-index: 41;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
}
.dh {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: flex-start;
}
.dh h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.tabs {
  display: flex;
  gap: 4px;
  padding-inline: 18px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}
.tabs button {
  border: 0;
  background: none;
  padding: 10px 8px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  color: var(--ink2);
  font-weight: 500;
  white-space: nowrap;
}
.tabs button.on {
  border-bottom-color: var(--brand);
  color: var(--ink);
  font-weight: 600;
}
.db {
  padding: 16px 18px;
  overflow: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dfoot {
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
  background: var(--sunken);
}
.calc {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 16px;
  font-variant-numeric: tabular-nums;
}
.calc div:nth-child(even) {
  text-align: right;
}
.calc .tot {
  border-top: 1px solid var(--line);
  padding-top: 6px;
  font-weight: 600;
}
.note {
  background: var(--sunken);
  border: 1px solid var(--line2);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink2);
  font-size: 13px;
}
.x {
  border: 0;
  background: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  padding: 2px 6px;
}
ul.plain {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.field label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.field input {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 7px 10px;
  background: var(--surface);
  width: 160px;
}
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--btn);
  color: var(--btn-ink);
  padding: 9px 14px;
  border-radius: 6px;
  z-index: 60;
  font-weight: 500;
}
.empty {
  padding: 40px 16px;
  text-align: center;
  color: var(--muted);
}
.profile {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.profile h3 {
  margin: 0;
  font-size: 15px;
}
@media (max-width: 640px) {
  .search {
    min-width: 0;
    width: 100%;
  }
  .todo a {
    grid-template-columns: 48px 1fr;
  }
  .todo a .chip {
    display: none;
  }
}

/* segundo nivel do menu */
.sub {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.sub-in {
  display: flex;
  gap: 4px;
  padding-inline: 20px;
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.sub-in::-webkit-scrollbar {
  display: none;
}
.sub a {
  padding: 8px 10px;
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
  border-radius: 5px;
  margin-block: 5px;
}
.sub a:hover {
  color: var(--ink);
  background: var(--sunken);
}
.sub a.on {
  color: var(--brand-ink);
  background: var(--brand-soft);
  font-weight: 600;
}
.acct {
  color: var(--top-ink);
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
  padding: 6px 8px;
  border-radius: 5px;
}
.acct:hover,
.acct.on {
  background: rgba(255, 255, 255, 0.08);
  color: var(--top-on);
}

/* perguntas */
.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 16px;
  align-items: start;
}
@media (max-width: 980px) {
  .split {
    grid-template-columns: 1fr;
  }
}
.qlist {
  display: flex;
  flex-direction: column;
}
.qlist button {
  all: unset;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line2);
}
.qlist button:hover {
  background: var(--sunken);
}
.qlist button.on {
  background: var(--sunken);
  box-shadow: inset 3px 0 0 var(--brand);
}
.qlist button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: -2px;
}
.qlist .q {
  color: var(--ink);
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.qlist .meta {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.bubble {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  background: var(--sunken);
}
.bubble.ans {
  background: var(--surface);
}
.bubble small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 4px;
}
/* conversa da reclamação: quebra de linha e parágrafos como o Mercado Livre mostra */
.bubble .txt {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.bubble.sis {
  background: transparent;
  border-style: dashed;
}
.conv-dia {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin: 6px 0 2px;
}
.situacao-ml {
  border-left: 3px solid var(--bad);
  padding: 8px 12px;
  background: var(--surface);
}
.situacao-ml b {
  color: var(--bad);
  display: block;
}
.conta-venda {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  font-size: 13px;
}
.conta-venda .tot {
  border-top: 1px solid var(--line);
  padding-top: 4px;
  font-weight: 600;
}
textarea.resp {
  width: 100%;
  min-height: 120px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 11px;
  background: var(--surface);
  resize: vertical;
  line-height: 1.45;
}
textarea.resp:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--focus);
}
.stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

/* numeros-resumo em linha */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
}
.stats > div {
  padding: 12px 16px;
  border-right: 1px solid var(--line2);
}
.stats > div:last-child {
  border-right: 0;
}
.stats b {
  display: block;
  font-size: 19px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.stats span {
  color: var(--muted);
  font-size: 12px;
}
@media (max-width: 640px) {
  .stats > div {
    border-right: 0;
    border-bottom: 1px solid var(--line2);
  }
}

/* fotos */
.slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
}
.slot {
  aspect-ratio: 1;
  max-width: 100%;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 12px;
  text-align: center;
  padding: 6px;
}
.slot.cheia {
  background: var(--neu-bg);
  color: var(--neu);
  border: 1px solid var(--line);
}
.slot.cheia b {
  font-size: 15px;
}
.slot.vazia {
  border: 1px dashed var(--bar);
  color: var(--faint);
}

/* formularios da calculadora */
.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}
.form .field input,
.form .field select {
  width: 100%;
}
.form .field select {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 7px 8px;
  background: var(--surface);
}
.form .full {
  grid-column: 1/-1;
}
.big {
  font-size: 22px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.spark {
  display: block;
}
.fx {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ---- app real: login, sair, carregando, fotos reais ---- */
.sair {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--top-ink);
  font: inherit;
  font-size: 12px;
  padding: 5px 9px;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 4px;
}
.sair:hover {
  color: var(--top-on);
  border-color: rgba(255, 255, 255, 0.4);
}
.login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: var(--bg);
}
.login-box {
  width: 100%;
  max-width: 360px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.login-box .brand {
  margin-bottom: 8px;
}
.login-box .brand span {
  color: var(--muted);
}
.login-box h1 {
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--ink);
}
.login-box label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
.login-box input {
  font: inherit;
  font-size: 14px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
}
.login-box input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--focus);
}
.login-box .btn {
  margin-top: 14px;
  width: 100%;
  justify-content: center;
}
.login-box .erro {
  margin: 8px 0 0;
  color: var(--bad);
  font-size: 13px;
}
.carregando {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: var(--btn);
  color: var(--btn-ink);
  font-size: 13px;
  padding: 9px 14px;
  border-radius: 6px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 60;
}
.carregando span {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: gira 0.8s linear infinite;
}
@keyframes gira {
  to {
    transform: rotate(360deg);
  }
}
.slot.cheia.img {
  position: relative;
  overflow: hidden;
  background: #fff;
  justify-content: flex-end;
}
.slot.cheia.img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}
.slot.cheia.img b,
.slot.cheia.img {
  font-size: 11px;
}
.slot.cheia.img b {
  position: absolute;
  left: 5px;
  top: 4px;
  background: rgba(15, 27, 45, 0.72);
  color: #fff;
  border-radius: 4px;
  padding: 1px 5px;
}
.slot.cheia.img > b + * {
  display: none;
}

[hidden] {
  display: none !important;
}
