/* StreamerChoice.com — Mint Paper Pop */

/* Fonts */
@font-face {
  font-family: 'Gabarito';
  src: url('/assets/fonts/gabarito-var.woff2?v=1.1') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: optional;
}
@font-face {
  font-family: 'Instrument Sans';
  src: url('/assets/fonts/instrument-sans-var.woff2?v=1.0') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: optional;
}

/* Tokens */
:root {
  --bg: #eef3ef;
  --bg-soft: #e3ece5;
  --card: #ffffff;
  --ink: #122019;
  --muted: #4b5c52;
  --line: #d5e0d7;
  --em: #0d8a57;
  --em-deep: #0a6b45;
  --em-soft: #dcefe4;
  --coral: #ff6a5b;
  --coral-deep: #e4523f;
  --gold: #e59f35;
  --r: 3px;
  --rb: 10px;
  --ease: cubic-bezier(.22,1,.36,1);
  --shadow-soft: 0 2px 10px rgba(18,32,25,.06);
  --shadow-lift: 0 14px 30px rgba(18,32,25,.12);
}

/* Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  overflow-x: clip;
  width: 100%; max-width: 100%;
  min-height: 100vh;
  display: flex; flex-direction: column;
  background: var(--bg);
  color: var(--ink);
  font: 400 16.5px/1.65 'Instrument Sans', 'Segoe UI', system-ui, sans-serif;
}
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--em); text-decoration: none; overflow-wrap: break-word; word-break: break-word; transition: color .25s var(--ease); }
a:hover { color: var(--em-deep); }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Gabarito', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.16;
  font-weight: 700;
  overflow-wrap: break-word; word-break: break-word;
  color: var(--ink);
}
h1 { font-size: clamp(26px, 4.6vw, 54px); font-weight: 800; letter-spacing: -.01em; }
h2 { font-size: clamp(22px, 3vw, 36px); letter-spacing: -.01em; }
h3 { font-size: clamp(17px, 2vw, 22px); }
p { color: var(--muted); }
ul, ol { list-style: none; }
[hidden] { display: none !important; }
.no-select, .btn, .burger, .nav a {
  -webkit-user-select: none; user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap;
}
.container {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: 600 15.5px/1 'Instrument Sans', sans-serif;
  padding: 13px 22px;
  border-radius: var(--rb);
  border: 0;
  cursor: pointer;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn--go {
  position: relative; overflow: clip;
  background: #ffe23d; color: #131313;
  border: 2px solid #131313;
  border-radius: 999px;
  font-family: 'Gabarito', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  box-shadow: 4px 4px 0 #131313;
}
.btn--go:hover { background: #ffd60a; box-shadow: 2px 2px 0 #131313; }
.hidlink { position: absolute; z-index: -5; }

/* attention pulse on the wrapper: the gate button itself must stay transform-free */
.top-row__action { animation: scPulse 2.2s var(--ease) infinite; }
@keyframes scPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(238,243,239,.84);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}
.site-header__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding-block: 11px;
}
.brand {
  display: flex; align-items: center; gap: 11px;
  font-family: 'Gabarito', sans-serif; font-weight: 800; font-size: 19.5px;
  color: var(--ink); letter-spacing: -.01em;
}
.brand:hover { color: var(--ink); }
.brand img { width: auto; height: 30px; flex-shrink: 0; }
.site-footer__brand .brand img { height: 30px; }
@media (max-width: 430px) {
  .brand img { height: 24px; }
}
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-weight: 600; font-size: 15px; color: var(--ink);
  padding: 8px 14px; border-radius: var(--rb);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.nav a:hover { background: var(--em-soft); color: var(--em-deep); }
.nav a.is-active { background: var(--ink); color: #f2f7f3; }

/* Burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  position: relative; z-index: 110; flex-shrink: 0;
  border-radius: var(--rb);
  background: rgba(18,32,25,.05);
  border: 1px solid var(--line);
  cursor: pointer;
  touch-action: manipulation;
}
.burger span {
  position: absolute; left: 12px; right: 12px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1220px) {
  .burger { display: block; }
  .site-header__row { padding-block: 6px; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    width: 100%; max-width: 100vw;
    max-height: calc(100dvh - var(--header-offset, 58px));
    z-index: 50;
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    padding: 14px 24px 28px;
    background: var(--bg);
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(18,32,25,.16);
    overflow-y: auto; overscroll-behavior: contain;
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear .3s;
  }
  .nav[data-open="true"] {
    transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear 0s;
  }
  .nav a { width: 100%; padding: 15px 4px; font-size: 20px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav a.is-active { background: none; color: var(--em-deep); }
  .nav a:hover { background: none; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: opacity .3s ease; transform: none; }
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ============ Home: hero ============ */
.sc-hero {
  background-image: url('/assets/img/hero/hero-bg.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.sc-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(238,243,239,.55) 0%, rgba(238,243,239,.72) 100%);
}
.sc-hero__inner {
  position: relative;
  text-align: center;
  padding-block: clamp(40px, 8vw, 60px);
  display: grid; justify-items: center; gap: 18px;
}
.sc-hero h1 { max-width: 21ch; animation: scRise .9s var(--ease) both; }
.sc-hero p {
  color: var(--ink); font-size: clamp(11px, 1.4vw, 19px); max-width: 62ch;
  animation: scRise .9s var(--ease) .12s both;
}
@keyframes scRise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@media (max-width: 820px) {
  .sc-hero { background-position: left center; }
  .sc-hero__inner { padding-block: 22px; min-height: 0; }
  .sc-hero p { display: none; }
}
@media (max-width: 520px) { .sc-hero__inner { padding-block: 16px; gap: 10px; } }

/* ============ Top board (home + /review) ============ */
.sc-top { padding-block: clamp(10px, 5vw, 40px); }
.sc-top__note { margin-top: 14px; font-size: 14.5px; text-align: center; }
.top-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
  margin-inline: auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-soft);
}
.top-row {
  display: grid;
  grid-template-areas: "logo main perks" "action action action";
  grid-template-columns: 94px minmax(0, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 8px 18px;
  padding: 26px 28px;
  transition: background .3s var(--ease);
}
.top-row:nth-child(even) { border-left: 1px solid var(--line); }
.top-row:nth-child(n+3) { border-top: 1px solid var(--line); }
.top-row:hover { background: #f7faf7; }
.top-row__rank { display: none; }
.top-row__logo { grid-area: logo; width: 94px; height: 94px; }
.top-row__main { grid-area: main; display: grid; gap: 6px; }
.top-row__name { font-size: 19px; }
.top-row__meta { font-size: 13.5px; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.top-row__meta svg { width: 15px; height: 15px; color: var(--em); flex-shrink: 0; }
.rating { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rating__stars { display: inline-flex; gap: 2px; color: var(--gold); }
.rating__stars svg { width: 16px; height: 16px; }
.rating__num { font: 700 14.5px/1 'Instrument Sans', sans-serif; color: var(--ink); }
.top-row__perks { grid-area: perks; display: grid; gap: 6px; align-content: center; }
.perk { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--muted); }
.perk svg { width: 16px; height: 16px; color: var(--em); flex-shrink: 0; margin-top: 4px; }
.top-row__action { grid-area: action; margin-top: 6px; display: flex; justify-content: center; }
.top-row__action .btn { min-width: 220px; }

@media (max-width: 820px) {
  .top-board { grid-template-columns: minmax(0, 1fr); }
  .top-row {
    grid-template-areas: "logo main" "perks perks" "action action";
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 4px 14px;
    padding: 10px 18px;
  }
  .rating { justify-content: center; }
  .top-row:nth-child(even) { border-left: 0; }
  .top-row + .top-row { border-top: 1px solid var(--line); }
  .top-row__logo { width: 58px; height: 58px; }
  .top-row__main { gap: 3px; justify-items: end; text-align: right; }
  .top-row__main .rating { justify-content: flex-end; }
  .top-row__perks { gap: 4px; margin-top: 6px; justify-items: center; }
  .perk { font-size: clamp(11.5px, 2.6vw, 15.5px); }
  .perk svg { margin-top: 2px; }
  .top-row__action { margin-top: 0; margin-bottom: 8px; }
  .top-row__meta { font-size: 10.5px; }
  .rating__stars svg { width: 13px; height: 13px; }
}

/* ============ Coins section (home + parts reused) ============ */
.sc-coins { background: var(--bg-soft); padding-block: clamp(36px, 6vw, 84px); }
.sc-coins__grid {
  display: grid; grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
}
.sc-coins__copy { display: grid; gap: 14px; }
.sc-coins__art img {
  width: 100%;
  height: clamp(180px, 28vw, 340px);
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--shadow-soft);
}

/* Data table */
.x-wrap { overflow-x: auto; }
table.data { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); font-size: 15px; }
table.data th, table.data td { padding: 13px 16px; text-align: left; border-top: 1px solid var(--line); vertical-align: top; }
table.data thead th { border-top: 0; background: var(--ink); color: #eef5f0; font: 700 13.5px/1.3 'Instrument Sans', sans-serif; letter-spacing: .02em; }
table.data td { color: var(--muted); }
table.data td:first-child { color: var(--ink); font-weight: 600; }

/* Prose blocks */
.prose { display: grid; gap: 14px; }
.prose h2 { margin-top: 10px; }

/* ============ Categories page ============ */
.pg-cats { padding-block: clamp(28px, 5vw, 64px); }
.pg-cats__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2.4vw, 28px); margin-top: clamp(20px, 3vw, 36px); }
.cat-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden;
  display: grid; grid-template-rows: auto 1fr;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.cat-card__body { padding: 20px 22px 24px; display: grid; gap: 8px; align-content: start; }
.cat-card__body p { font-size: 15px; }
@media (max-width: 1100px) { .pg-cats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .pg-cats__grid { grid-template-columns: minmax(0, 1fr); } }

/* ============ How we rate ============ */
.pg-rate { padding-block: clamp(28px, 5vw, 64px); }
.pg-rate__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.pg-rate__art img { border-radius: var(--r); box-shadow: var(--shadow-soft); }
.crit-list { display: grid; gap: 12px; margin-top: 8px; }
.crit {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 16px 18px; display: grid; grid-template-columns: 40px minmax(0,1fr); gap: 4px 14px; align-items: center;
}
.crit svg { width: 26px; height: 26px; color: var(--em); grid-row: span 2; }
.crit h3 { font-size: 16.5px; }
.crit p { font-size: 14.5px; grid-column: 2; }
@media (max-width: 1100px) { .pg-rate__grid { grid-template-columns: minmax(0,1fr); } .pg-rate__art { max-width: 460px; } }

/* ============ Getting started ============ */
.pg-start { padding-block: clamp(28px, 5vw, 64px); }
.pg-start__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.pg-start__art img { border-radius: var(--r); box-shadow: var(--shadow-soft); }
.steps { display: grid; gap: 0; margin-top: 10px; counter-reset: step; }
.step {
  position: relative;
  padding: 0 0 26px 56px;
}
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--em); color: #fff;
  font: 700 16px/38px 'Gabarito', sans-serif; text-align: center;
}
.step::after {
  content: ''; position: absolute; left: 18.5px; top: 42px; bottom: 4px;
  width: 1px; background: var(--line);
}
.step:last-child { padding-bottom: 0; }
.step:last-child::after { display: none; }
.step h3 { margin-bottom: 4px; font-size: 17px; }
.step p { font-size: 15px; }
@media (max-width: 1100px) { .pg-start__grid { grid-template-columns: minmax(0,1fr); } .pg-start__art { max-width: 460px; } }

/* Habits (2-col checks) */
.pg-habits { background: var(--bg-soft); padding-block: clamp(32px, 5vw, 72px); }
.pg-habits__list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px 32px; margin-top: clamp(16px, 2.4vw, 28px); }
.pg-habits__list li { display: flex; gap: 11px; align-items: flex-start; color: var(--muted); font-size: 15.5px; }
.pg-habits__list svg { width: 18px; height: 18px; color: var(--em); flex-shrink: 0; margin-top: 4px; }
@media (max-width: 820px) { .pg-habits__list { grid-template-columns: minmax(0,1fr); } }

/* ============ Legal ============ */
.legal-content { padding-block: clamp(28px, 5vw, 60px); display: grid; gap: 16px; }
.legal-content h2 { font-size: clamp(18px, 2.2vw, 24px); margin-top: 12px; }
.legal-content ul { display: grid; gap: 8px; padding-left: 4px; }
.legal-content ul li { position: relative; padding-left: 22px; color: var(--muted); }
.legal-content ul li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--em-soft); border: 2px solid var(--em);
}

/* ============ Footer ============ */
.site-footer { background: var(--ink); color: #b9c8bf; margin-top: clamp(30px, 5vw, 64px); }
.site-footer a { color: #d7e4db; }
.site-footer a:hover { color: #fff; }
.site-footer__grid {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, .6fr);
  gap: clamp(28px, 5vw, 80px);
  padding-block: clamp(34px, 5vw, 58px) 26px;
}
.site-footer__brand { display: grid; gap: 14px; justify-items: start; }
.site-footer__brand .brand { color: #fff; }
.site-footer__brand p { color: #b9c8bf; font-size: 15px; max-width: 46ch; }
.site-footer__addr { font-style: normal; font-size: 14px; color: #93a89b; line-height: 1.6; }
.socials { display: flex; gap: 10px; }
.socials a {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.socials a:hover { background: var(--em); transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; }
.site-footer__legal { display: grid; gap: 10px; align-content: start; }
.site-footer__legal-title { color: #fff; font-size: 16px; font-family: 'Gabarito', sans-serif; font-weight: 700; }
.site-footer__legal a { font-size: 15px; }
.site-footer__bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 18px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 13.5px; color: #93a89b;
}
@media (max-width: 820px) { .site-footer__grid { grid-template-columns: minmax(0,1fr); } }

/* ============ Cookie banner ============ */
.cbar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 95;
  max-width: 560px; margin-inline: auto;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: 0 18px 44px rgba(18,32,25,.22);
  padding: 20px 22px;
  display: grid; gap: 12px;
}
.cbar p { font-size: 14px; }
@media (max-width: 820px) {
  .cbar p { font-size: 11px; }
}
.cbar__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn--solid { background: var(--em); color: #fff; }
.btn--solid:hover { background: var(--em-deep); }
.btn--ghost { background: var(--bg-soft); color: var(--ink); }
.btn--ghost:hover { background: var(--line); }
.btn--sm { padding: 10px 16px; font-size: 14px; }

/* ============ Miko chat ============ */
.miko-toggle {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--em); color: #fff; border: 0; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(13,138,87,.4);
  transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.miko-toggle:hover { background: var(--em-deep); transform: scale(1.06); box-shadow: 0 14px 30px rgba(13,138,87,.45); }
.miko-toggle svg { width: 27px; height: 27px; }
.miko-panel {
  position: fixed; right: 18px; bottom: 88px; z-index: 90;
  width: 360px; height: 460px; max-width: calc(100vw - 32px); max-height: calc(100dvh - 110px);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: 0 16px 36px rgba(18,32,25,.24);
  display: flex; flex-direction: column;
  overflow: hidden;
  opacity: 0; transform: translateY(16px) scale(.97); pointer-events: none; visibility: hidden;
  transform-origin: bottom right;
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s linear .35s;
}
.miko-panel.is-open { opacity: 1; transform: none; pointer-events: auto; visibility: visible; transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s linear 0s; }
.miko-head { display: flex; align-items: center; gap: 12px; padding: 13px 16px; background: var(--ink); color: #fff; }
.miko-head img { width: 38px; height: 38px; border-radius: 50%; }
.miko-head__meta { display: grid; line-height: 1.3; }
.miko-head__meta b { font-size: 15px; }
.miko-head__meta span { font-size: 12px; color: #9fd8bd; display: flex; align-items: center; gap: 5px; }
.miko-head__meta span::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #38c98a; }
.miko-close { margin-left: auto; background: none; border: 0; color: #cfe0d6; cursor: pointer; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; transition: background .25s var(--ease), color .25s var(--ease); }
.miko-close:hover { background: rgba(255,255,255,.12); color: #fff; }
.miko-close svg { width: 17px; height: 17px; }
.miko-log { flex: 1; overflow-y: auto; padding: 16px; display: grid; gap: 10px; align-content: start; background: var(--bg); }
.miko-msg { max-width: 82%; padding: 10px 13px; border-radius: 12px; font-size: 14.5px; line-height: 1.5; }
.miko-msg--bot { background: var(--card); border: 1px solid var(--line); color: var(--ink); justify-self: start; border-bottom-left-radius: var(--r); }
.miko-msg--user { background: var(--em); color: #fff; justify-self: end; border-bottom-right-radius: var(--r); }
.miko-form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); background: var(--card); }
.miko-form input {
  flex: 1; min-width: 0;
  border: 1px solid var(--line); border-radius: var(--rb);
  padding: 11px 14px; font: 400 14.5px 'Instrument Sans', sans-serif;
  color: var(--ink); background: var(--bg);
  outline: none; transition: border-color .25s var(--ease);
}
.miko-form input:focus { border-color: var(--em); }
.miko-form button {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 0; border-radius: var(--rb);
  background: var(--em); color: #fff; cursor: pointer;
  display: grid; place-items: center;
  transition: background .3s var(--ease);
}
.miko-form button:hover { background: var(--em-deep); }
.miko-form svg { width: 18px; height: 18px; }

@media (max-width: 430px) {
  .miko-panel { right: 16px; }
  .miko-toggle { width: 52px; height: 52px; }
}
