:root {
  --nu: #820ad1;
  --nu-2: #9b23e8;
  --nu-deep: #6b0499;
  --nu-soft: #f0e6fa;
  --bg: #f0f1f5;
  --card: #ffffff;
  --ink: #111111;
  --soft: #727272;
  --line: #e6e6eb;
  --good: #00a868;
  --bad: #e5484d;
  --nav-bg: rgba(240, 241, 245, 0.88);
  --nav-border: transparent;
  --card-border: transparent;
  --card-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
  --panel-shadow: 0 2px 10px rgba(17, 17, 17, 0.04);
  --open-shadow: 0 10px 28px rgba(130, 10, 209, 0.12);
  --open-border: transparent;
  --chev: #b0b0b8;
  --alert-bg: #fff5f5;
  --alert-border: transparent;
  --ok-bg: #f0faf5;
  --ok-border: transparent;
  --launcher-bg: #ffffff;
  --launcher-border: transparent;
  --launcher-shadow: 0 24px 64px rgba(17, 17, 17, 0.22);
  --launcher-backdrop: rgba(17, 17, 17, 0.45);
  --pick-bg: #f0f1f5;
  --pick-icon-bg: #ffffff;
  --input-bg: #ffffff;
  --input-ring: rgba(130, 10, 209, 0.15);
  --code-bg: #e8e8ee;
  --fab-shadow: 0 12px 28px rgba(130, 10, 209, 0.4);
  --spend-track: linear-gradient(90deg, #c084fc, var(--nu));
  --radius: 20px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  color-scheme: light;
}

html[data-theme="dark"] {
  --nu: #9b23e8;
  --nu-2: #b44aff;
  --nu-deep: #820ad1;
  --nu-soft: rgba(155, 35, 232, 0.18);
  --bg: #0d0d0f;
  --card: #19191c;
  --ink: #f5f5f7;
  --soft: #9a9aa3;
  --line: #2c2c31;
  --good: #1dd68a;
  --bad: #ff6b6b;
  --nav-bg: rgba(13, 13, 15, 0.88);
  --nav-border: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.04);
  --card-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  --panel-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  --open-shadow: 0 10px 28px rgba(155, 35, 232, 0.2);
  --open-border: rgba(155, 35, 232, 0.35);
  --chev: #6a6a72;
  --alert-bg: rgba(255, 107, 107, 0.1);
  --alert-border: rgba(255, 107, 107, 0.18);
  --ok-bg: rgba(29, 214, 138, 0.1);
  --ok-border: rgba(29, 214, 138, 0.18);
  --launcher-bg: #1f1f23;
  --launcher-border: rgba(255, 255, 255, 0.06);
  --launcher-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  --launcher-backdrop: rgba(0, 0, 0, 0.65);
  --pick-bg: #151518;
  --pick-icon-bg: #2a2a30;
  --input-bg: #151518;
  --input-ring: rgba(155, 35, 232, 0.25);
  --code-bg: #2a2a30;
  --fab-shadow: 0 12px 28px rgba(155, 35, 232, 0.45);
  --spend-track: linear-gradient(90deg, #6b0499, var(--nu));
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Manrope, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  padding-bottom: 24px;
}

.wrap {
  width: min(720px, calc(100% - 32px));
  margin: 0 auto;
}

/* —— Top nav —— */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--nav-border);
}

.nav-inner {
  width: min(720px, calc(100% - 32px));
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.theme-toggle {
  appearance: none;
  border: 0;
  background: var(--nu-soft);
  color: var(--nu);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.15s var(--ease), background 0.15s var(--ease);
}

.theme-toggle:hover {
  transform: scale(1.05);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.theme-toggle .icon-sun {
  display: none;
}

html[data-theme="dark"] .theme-toggle .icon-moon {
  display: none;
}

html[data-theme="dark"] .theme-toggle .icon-sun {
  display: block;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.brand::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--nu);
  box-shadow: 0 0 0 4px var(--nu-soft);
  flex-shrink: 0;
}

.nav nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2px;
}

.nav nav a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--soft);
  padding: 7px 10px;
  border-radius: 999px;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}

.nav nav a:hover {
  color: var(--nu);
  background: var(--nu-soft);
}

/* —— Hero roxo —— */
.hero {
  position: relative;
  overflow: hidden;
  margin: 8px auto 0;
  width: min(720px, calc(100% - 32px));
  border-radius: 28px;
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 48px 28px 56px;
  color: #fff;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 10% 0%, rgba(255, 255, 255, 0.22), transparent 45%),
    radial-gradient(90% 80% at 100% 100%, rgba(0, 0, 0, 0.18), transparent 50%),
    linear-gradient(145deg, var(--nu-2) 0%, var(--nu) 48%, var(--nu-deep) 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, 0.08);
  right: -60px;
  bottom: -80px;
}

.hero-bg::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  left: -40px;
  top: -30px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  animation: fade-up 0.55s var(--ease) both;
}

.hero-period {
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 12px;
}

.hero-brand {
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

/* —— Cards de resumo —— */
.metrics {
  width: min(720px, calc(100% - 32px));
  margin: -28px auto 28px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  animation: fade-up 0.55s var(--ease) 0.06s both;
}

.metric {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px 14px 16px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
}

.metric-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--soft);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.metric-val {
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.metric.in .metric-val {
  color: var(--good);
}

.metric.out .metric-val {
  color: var(--bad);
}

.metric.rest .metric-val {
  color: var(--nu);
}

/* —— Seções —— */
.band {
  padding: 12px 0 28px;
  scroll-margin-top: 72px;
}

.band.alt {
  padding-top: 8px;
}

.sec-head {
  margin-bottom: 14px;
}

.sec-head h2 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.sec-head p {
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 500;
}

.panel,
.cat-acc,
.day-acc,
.soft-panel {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--panel-shadow);
  border: 1px solid var(--card-border);
}

.panel {
  padding: 6px 18px;
}

.row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 2px;
  border-bottom: 1px solid var(--line);
}

.row:last-child {
  border-bottom: 0;
}

.row .name {
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.015em;
}

.row .hint {
  font-size: 0.8rem;
  color: var(--soft);
  margin-top: 2px;
  font-weight: 500;
}

.row .money {
  font-weight: 800;
  font-size: 0.98rem;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.money.good {
  color: var(--good);
}

.money.bad {
  color: var(--bad);
}

.track {
  height: 6px;
  border-radius: 99px;
  background: var(--bg);
  overflow: hidden;
  margin-top: 10px;
}

.track > i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--nu);
}

.track.spend > i {
  background: var(--spend-track);
}

.rank {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--nu-soft);
  color: var(--nu);
  font-size: 0.75rem;
  font-weight: 800;
  margin-right: 10px;
  flex-shrink: 0;
}

.cats,
.days {
  display: grid;
  gap: 10px;
}

.cat-acc,
.day-acc {
  overflow: hidden;
  transition: box-shadow 0.2s var(--ease);
}

.cat-acc.open,
.day-acc.open {
  box-shadow: var(--open-shadow);
  border-color: var(--open-border);
}

.cat-line,
.day-line {
  width: 100%;
  border: 0;
  background: transparent;
  display: grid;
  gap: 10px;
  align-items: center;
  padding: 16px 16px;
  cursor: pointer;
  text-align: left;
}

.cat-line {
  grid-template-columns: 1fr auto 14px;
}

.day-line {
  grid-template-columns: 54px 1fr auto 14px;
}

.cat-left {
  display: flex;
  align-items: flex-start;
  min-width: 0;
}

.chev {
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--chev);
  border-bottom: 2px solid var(--chev);
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease);
}

.cat-acc.open .chev,
.day-acc.open .chev {
  transform: rotate(-135deg);
  margin-top: 3px;
  border-color: var(--nu);
}

.cat-acc-body,
.day-acc-body {
  padding: 0 16px 14px;
  border-top: 1px solid var(--line);
}

.day-acc-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 0 4px;
  font-size: 0.8rem;
  color: var(--soft);
  font-weight: 500;
}

.when {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--nu);
}

.when small {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.day-bar-wrap {
  height: 6px;
  border-radius: 99px;
  background: var(--bg);
  overflow: hidden;
}

.day-bar-wrap > i {
  display: block;
  height: 100%;
  background: var(--nu);
  border-radius: inherit;
}

.count {
  font-weight: 500;
  color: var(--soft);
  font-size: 0.85em;
}

.tx {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.tx:last-child {
  border-bottom: 0;
}

.tx .what {
  font-weight: 600;
  font-size: 0.94rem;
}

.tx .tag {
  font-size: 0.78rem;
  color: var(--soft);
  font-weight: 500;
  grid-column: 1;
}

.tip {
  margin-top: 14px;
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 500;
}

.tip strong {
  color: var(--nu);
}

/* —— Pendências —— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.soft-panel {
  padding: 16px;
}

.soft-panel h3 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 10px;
}

.soft-panel.alert {
  background: var(--alert-bg);
  border-color: var(--alert-border);
}

.soft-panel.ok {
  background: var(--ok-bg);
  border-color: var(--ok-border);
}

.bills-empty {
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 500;
}

.bills-status {
  margin: 0 0 10px;
  font-size: 0.88rem;
  font-weight: 700;
}

.bills-status.info {
  color: var(--nu);
}

.bills-status.ok {
  color: var(--good);
}

.bills-status.err {
  color: var(--bad);
}

.bill-row.bill-open {
  border-radius: 12px;
  padding: 8px 2px;
}

.bill-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.bill-settle {
  appearance: none;
  border: 0;
  background: var(--nu);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.bill-settle:hover {
  background: var(--nu-2);
}

.pill {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  margin-top: 5px;
}

.pill.warn {
  background: rgba(229, 72, 77, 0.12);
  color: var(--bad);
}

.pill.ok {
  background: rgba(0, 168, 104, 0.12);
  color: var(--good);
}

.foot {
  width: min(720px, calc(100% - 32px));
  margin: 8px auto 0;
  text-align: center;
  padding: 20px 0 96px;
  font-size: 0.75rem;
  color: var(--soft);
  font-weight: 500;
}

/* —— Loading / setup —— */
.loading,
.setup {
  min-height: 70vh;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 14px;
  padding: 40px 20px;
}

.loading-dot {
  width: 14px;
  height: 14px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--nu);
  animation: pulse 1s ease-in-out infinite;
}

.loading p,
.setup p {
  color: var(--soft);
  font-weight: 500;
}

.setup h1 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.setup ol {
  text-align: left;
  max-width: 400px;
  margin: 8px auto;
  color: var(--soft);
  padding-left: 1.2rem;
  line-height: 1.7;
}

.setup code {
  font-size: 0.9em;
  background: var(--code-bg);
  padding: 2px 6px;
  border-radius: 6px;
}

.setup-btn {
  appearance: none;
  border: 0;
  background: var(--nu);
  color: #fff;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  justify-self: center;
}

/* —— Auth gate —— */
#auth-gate {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: var(--launcher-backdrop);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.auth-panel {
  position: relative;
  z-index: 1;
  width: min(380px, 100%);
  background: var(--launcher-bg);
  border: 1px solid var(--launcher-border);
  border-radius: 28px;
  box-shadow: var(--launcher-shadow);
  padding: 24px 22px 20px;
  text-align: center;
  animation: fade-up 0.3s var(--ease);
}

.auth-lock {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--nu-soft);
  color: var(--nu);
}

.auth-lock svg {
  width: 26px;
  height: 26px;
}

.auth-panel h2 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.auth-warn {
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 18px;
}

.auth-form {
  display: grid;
  gap: 12px;
  text-align: left;
}

.auth-form label {
  display: grid;
  gap: 6px;
}

.auth-form label span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--soft);
}

.auth-form input {
  border: 1px solid var(--line);
  background: var(--input-bg);
  color: var(--ink);
  border-radius: 14px;
  padding: 12px 14px;
  outline: none;
  text-align: center;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.auth-form input:focus {
  border-color: var(--nu);
  box-shadow: 0 0 0 3px var(--input-ring);
}

.auth-msg {
  font-size: 0.86rem;
  margin: 0;
  font-weight: 600;
  text-align: center;
}

.auth-msg.err {
  color: var(--bad);
}

.auth-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.auth-cancel,
.auth-submit {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 14px;
  font-weight: 800;
  cursor: pointer;
}

.auth-cancel {
  background: var(--pick-bg);
  color: var(--ink);
}

.auth-submit {
  background: var(--nu);
  color: #fff;
}

.auth-submit:hover {
  background: var(--nu-2);
}
.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  border: 0;
  background: var(--nu);
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 15px 20px;
  border-radius: 999px;
  box-shadow: var(--fab-shadow);
  cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.15s var(--ease);
}

.fab:hover {
  background: var(--nu-2);
  transform: translateY(-1px);
}

.launcher-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--launcher-backdrop);
}

.launcher-panel {
  position: fixed;
  z-index: 70;
  right: 14px;
  bottom: 14px;
  width: min(400px, calc(100vw - 28px));
  background: var(--launcher-bg);
  border: 1px solid var(--launcher-border);
  border-radius: 28px;
  box-shadow: var(--launcher-shadow);
  padding: 20px 18px 16px;
  animation: fade-up 0.3s var(--ease);
}

.launcher-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.launcher-head h2 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.launcher-head p {
  color: var(--soft);
  font-size: 0.86rem;
  margin-top: 2px;
  font-weight: 500;
}

.launcher-back {
  border: 0;
  background: transparent;
  color: var(--nu);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0;
  margin-bottom: 6px;
  cursor: pointer;
  text-align: left;
}

.launcher-close {
  border: 0;
  background: var(--bg);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.launcher-picker {
  display: grid;
  gap: 8px;
}

.pick-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 1px;
  align-items: center;
  width: 100%;
  text-align: left;
  border: 0;
  background: var(--pick-bg);
  border-radius: 18px;
  padding: 14px;
  cursor: pointer;
  transition: background 0.15s var(--ease), transform 0.15s var(--ease);
}

.pick-card:hover {
  background: var(--nu-soft);
  transform: scale(1.01);
}

.pick-icon {
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pick-icon-bg);
  color: var(--nu);
}

.pick-icon svg {
  width: 28px;
  height: 28px;
}

.pick-label {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.pick-hint {
  font-size: 0.8rem;
  color: var(--soft);
  font-weight: 500;
}

.pick-saida,
.pick-entrada,
.pick-pendencia {
  color: var(--nu);
}

.launcher-form {
  display: grid;
  gap: 12px;
}

.launcher-form label {
  display: grid;
  gap: 6px;
}

.launcher-form label span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--soft);
}

.launcher-form input {
  border: 1px solid var(--line);
  background: var(--input-bg);
  color: var(--ink);
  border-radius: 14px;
  padding: 12px 14px;
  outline: none;
}

.launcher-form input:focus {
  border-color: var(--nu);
  box-shadow: 0 0 0 3px var(--input-ring);
}

.launcher-submit {
  border: 0;
  background: var(--nu);
  color: #fff;
  font-weight: 800;
  padding: 14px 16px;
  border-radius: 999px;
  cursor: pointer;
  margin-top: 2px;
}

.launcher-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.launcher-msg {
  font-size: 0.86rem;
  margin: 0;
  font-weight: 600;
}

.launcher-msg.ok {
  color: var(--good);
}

.launcher-msg.err {
  color: var(--bad);
}

.launcher-msg.info {
  color: var(--soft);
}

.launcher-setup {
  font-size: 0.8rem;
  color: var(--soft);
  line-height: 1.4;
  margin: 0;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.85);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .metrics {
    grid-template-columns: 1fr;
  }

  .metric.rest {
    order: -1;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .day-line {
    grid-template-columns: 48px 1fr auto 12px;
  }

  .nav nav a {
    padding: 6px 7px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 190px;
    padding: 40px 22px 48px;
    border-radius: 24px;
  }

  .launcher-panel {
    right: 10px;
    left: 10px;
    bottom: 10px;
    width: auto;
  }

  .tx .what {
    font-weight: 600;
  }
}
