:root {
  --ink: #30323d;
  --soft-ink: #666a78;
  --line: #dfe6ee;
  --paper: #ffffff;
  --mint: #45c81f;
  --mint-dark: #2ea50f;
  --blue: #47bdf2;
  --sky: #d8f4ff;
  --peach: #fff3df;
  --rose: #ff6f61;
  --yellow: #ffc94a;
  --shadow: 0 18px 42px rgba(67, 87, 108, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.85), transparent 24%),
    linear-gradient(150deg, #c9efff 0%, #e7f8ff 46%, #fff2df 100%);
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0;
}

body.feedback-correct::before,
body.feedback-wrong::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  animation: feedbackFlash 0.72s ease forwards;
}

body.feedback-correct::before {
  background:
    radial-gradient(circle at 50% 36%, rgba(101, 227, 78, 0.42), transparent 34%),
    radial-gradient(circle at 40% 48%, rgba(255, 215, 84, 0.32), transparent 24%);
}

body.feedback-wrong::before {
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 96, 85, 0.33), transparent 34%),
    radial-gradient(circle at 58% 48%, rgba(255, 177, 88, 0.28), transparent 25%);
}

@keyframes feedbackFlash {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }
  28% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.06);
  }
}

button,
select {
  font: inherit;
}

a {
  color: inherit;
}

.sky-shape {
  position: fixed;
  z-index: 0;
  border-radius: 8px;
  opacity: 0.65;
  transform: rotate(-18deg);
}

.shape-one {
  top: 13%;
  left: 3%;
  width: 54px;
  height: 54px;
  background: #ffb52e;
}

.shape-two {
  right: 7%;
  top: 10%;
  width: 62px;
  height: 38px;
  background: #32b9eb;
}

.shape-three {
  right: 8%;
  bottom: 13%;
  width: 58px;
  height: 58px;
  background: #2bd491;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1220px, calc(100vw - 36px));
  min-height: 78px;
  margin: 18px auto 0;
  padding: 10px 18px;
  border: 3px solid rgba(48, 50, 61, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.top-brand {
  display: flex;
  align-items: center;
  min-width: 220px;
}

.top-brand img {
  display: block;
  width: 206px;
  height: 58px;
  object-fit: cover;
  object-position: left center;
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.main-menu a {
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--soft-ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.main-menu a.active {
  background: #30323d;
  color: #fff;
}

.main-menu a[aria-disabled="true"] {
  opacity: 0.55;
}

.main-menu a[aria-disabled="true"]::after {
  content: "";
}

.mobile-menu-button,
.mobile-menu-panel {
  display: none;
}

.ad-band {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100vw - 36px));
  margin-inline: auto;
}

.ad-band-top {
  margin-top: 14px;
}

.ad-band-bottom {
  margin-bottom: 22px;
}

.ad-slot {
  display: grid;
  gap: 7px;
  place-items: center;
  min-height: 96px;
  padding: 10px 16px;
  overflow: hidden;
  border: 2px dashed rgba(48, 50, 61, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 26px rgba(67, 87, 108, 0.1);
}

.ad-slot span {
  color: rgba(102, 106, 120, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.ad-slot .adsbygoogle {
  width: 100%;
  min-height: 72px;
}

.ad-slot-side {
  min-height: 300px;
  align-content: center;
  background: rgba(255, 255, 255, 0.48);
}

.ad-slot-side .adsbygoogle {
  min-height: 260px;
}

.game-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(360px, 440px) minmax(280px, 360px);
  gap: 28px;
  width: min(1220px, calc(100vw - 36px));
  min-height: calc(100vh - 230px);
  margin: 0 auto;
  padding: 26px 0;
  align-items: start;
}

.left-stage,
.right-stage {
  display: grid;
  gap: 16px;
  align-self: start;
  overflow: visible;
  position: sticky;
  top: 104px;
}

.character-card,
.cat-panel,
.tab-panel,
.stat-card,
.bottom-controls {
  border: 3px solid rgba(48, 50, 61, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.mini-label {
  display: inline-flex;
  margin-bottom: 8px;
  color: #13984a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.panel-heading p,
.plan-list span,
.review-item p {
  color: var(--soft-ink);
  line-height: 1.55;
}

.character-card,
.cat-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 16px;
  background: linear-gradient(180deg, #fffaf2, #ffffff);
  overflow: hidden;
}

.character-card img,
.cat-panel img {
  width: min(100%, 280px);
  max-height: 310px;
  object-fit: contain;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.cat-panel img {
  width: min(100%, 260px);
}

.character-card img.bounce,
.cat-panel img.bounce {
  animation: bounce 0.42s ease;
}

@keyframes bounce {
  0% {
    transform: translateY(0) scale(1);
  }
  45% {
    transform: translateY(-9px) scale(1.03);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.speech-bubble {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 16px;
  right: 16px;
  padding: 12px 14px;
  border: 2px solid #f5d4aa;
  border-radius: 8px;
  background: #fff9ef;
  color: #6f4e2f;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.cat-bubble {
  border-color: #bfeec3;
  background: #f4fff5;
  color: #287a31;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stat-card {
  padding: 13px 10px;
  text-align: center;
}

.stat-card span {
  display: block;
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 800;
}

.stat-card strong {
  display: block;
  margin-top: 5px;
  font-size: 24px;
}

.phone-wrap {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.phone {
  position: relative;
  width: min(100%, 410px);
  min-height: 740px;
  padding: 44px 16px 18px;
  border: 9px solid #3d3f45;
  border-radius: 34px;
  background: #f8fafc;
  box-shadow: 0 28px 68px rgba(48, 50, 61, 0.28);
}

.phone.feedback-correct {
  animation: phoneCorrect 0.46s ease;
}

.phone.feedback-wrong {
  animation: phoneWrong 0.46s ease;
}

@keyframes phoneCorrect {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  45% {
    transform: translateY(-8px) scale(1.015);
  }
}

@keyframes phoneWrong {
  0%,
  100% {
    transform: translateX(0);
  }
  22% {
    transform: translateX(-7px);
  }
  48% {
    transform: translateX(7px);
  }
  72% {
    transform: translateX(-4px);
  }
}

.phone-notch {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 78px;
  height: 17px;
  border-radius: 999px;
  background: #3d3f45;
  transform: translateX(-50%);
}

.phone-top,
.progress-line,
.phone-actions,
.quest-toolbar,
.bottom-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-top {
  justify-content: space-between;
}

.round-btn {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #a0a7b2;
  font-size: 24px;
  cursor: pointer;
}

.life-bar {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: #e3e8ef;
  overflow: hidden;
}

#timeBar {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--mint);
  transition: width 0.2s ease;
}

.heart {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #ff4f66;
  font-size: 13px;
  font-weight: 900;
}

.heart strong {
  color: var(--ink);
  font-size: 12px;
}

.quest-toolbar {
  margin-top: 16px;
}

select {
  width: 100%;
  min-height: 38px;
  padding: 0 10px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.progress-line {
  justify-content: space-between;
  margin-top: 18px;
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 900;
}

.progress-track {
  height: 9px;
  margin: 8px 0 16px;
  border-radius: 999px;
  background: #e3e8ef;
  overflow: hidden;
}

#progressBar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), #5bd7ff);
  transition: width 0.22s ease;
}

.quiz-screen {
  min-height: 496px;
}

.question-type {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #e8f9e5;
  color: #23930b;
  font-size: 12px;
  font-weight: 900;
}

#questionText {
  min-height: 104px;
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.32;
}

.answers {
  display: grid;
  gap: 9px;
}

.answer-button {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 9px 10px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.answer-button:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: #75dfff;
}

.answer-button .number {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #edf7ff;
  color: #1878b8;
  font-weight: 900;
}

.answer-button.correct {
  border-color: var(--mint);
  background: #efffe9;
}

.answer-button.incorrect {
  border-color: var(--rose);
  background: #fff1ef;
}

.explanation {
  margin-top: 12px;
  padding: 13px;
  border: 2px solid #ffe2ad;
  border-radius: 8px;
  background: #fffaf0;
  font-size: 14px;
  line-height: 1.58;
}

.explanation strong {
  color: #119441;
}

.hidden {
  display: none;
}

.phone-actions {
  justify-content: space-between;
}

.primary-button,
.ghost-button,
.start-button,
.tab {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.primary-button {
  flex: 1;
  background: var(--mint);
  color: white;
  box-shadow: 0 10px 18px rgba(69, 200, 31, 0.22);
}

.ghost-button {
  padding: 0 16px;
  background: #edf2f7;
  color: #697386;
}

.start-button {
  flex: 1;
  padding: 0 18px;
  background: #ffcf4a;
  color: #5a3a00;
  box-shadow: 0 12px 22px rgba(255, 185, 46, 0.26);
}

button:hover:not(:disabled) {
  transform: translateY(-1px);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.bottom-controls {
  width: min(100%, 410px);
  padding: 12px;
}

.bottom-controls select {
  flex: 0 0 118px;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  padding: 7px;
  border: 3px solid rgba(48, 50, 61, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.tab {
  padding: 0 8px;
  background: transparent;
  color: var(--soft-ink);
  font-size: 14px;
}

.tab.active {
  background: #30323d;
  color: white;
}

.tab-panel {
  display: none;
  min-height: 0;
  max-height: 320px;
  padding: 18px;
  overflow: auto;
}

.tab-panel.active {
  display: block;
}

.panel-heading h2 {
  margin: 0;
  font-size: 26px;
}

.panel-heading p {
  margin: 8px 0 14px;
}

.review-list,
.plan-list,
.source-links {
  display: grid;
  gap: 10px;
}

.review-list {
  max-height: 210px;
  overflow: auto;
  padding-right: 4px;
}

.review-item,
.plan-list article,
.source-links a,
.empty-state {
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.review-item,
.plan-list article {
  padding: 13px;
}

.review-item h3 {
  margin: 5px 0 8px;
  font-size: 16px;
  line-height: 1.35;
}

.review-item p {
  margin: 6px 0;
  font-size: 14px;
}

.plan-list strong,
.plan-list span {
  display: block;
}

.plan-list strong {
  margin-bottom: 5px;
}

.source-links a {
  padding: 13px;
  color: #1878b8;
  font-weight: 900;
  text-decoration: none;
}

.empty-state {
  padding: 24px;
  color: var(--soft-ink);
  text-align: center;
}

.result-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 24, 32, 0.62);
  backdrop-filter: blur(4px);
}

.result-modal.hidden {
  display: none;
}

.result-card {
  width: min(92vw, 420px);
  padding: 26px;
  border: 4px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: #fffdf6;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  text-align: center;
  animation: resultPop 0.42s cubic-bezier(0.2, 1.2, 0.3, 1);
}

.result-medal {
  display: inline-grid;
  place-items: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffdc61, #ffb84d);
  color: #6a3a00;
  font-size: 20px;
  font-weight: 1000;
  box-shadow: 0 12px 28px rgba(255, 181, 54, 0.32);
  animation: medalWiggle 1.05s ease infinite;
}

.result-card h2 {
  margin: 18px 0 8px;
  font-size: 30px;
}

.result-card p {
  margin: 0 0 18px;
  color: var(--soft-ink);
  line-height: 1.55;
}

.result-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
  padding: 14px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.result-summary div,
.result-summary span,
.result-summary strong {
  display: block;
}

.result-summary span {
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 900;
}

.result-summary strong {
  font-size: 21px;
}

.result-card .primary-button {
  width: 100%;
}

@keyframes resultPop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes medalWiggle {
  0%,
  100% {
    transform: rotate(-1deg) scale(1);
  }
  50% {
    transform: rotate(1deg) scale(1.04);
  }
}

.site-footer {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100vw - 36px));
  margin: 0 auto 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 24px;
  border: 3px solid rgba(48, 50, 61, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  color: var(--soft-ink);
  text-align: left;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.site-footer strong span {
  color: #13984a;
  font-size: 13px;
}

.site-footer p {
  margin: 5px 0;
  line-height: 1.55;
}

.site-footer p span {
  display: inline-block;
  margin-left: 10px;
}

.site-footer a {
  color: #1878b8;
  font-weight: 900;
  text-decoration: none;
}

.footer-company {
  min-width: 0;
}

.footer-links {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
  align-items: center;
}

.footer-links a {
  min-height: 38px;
  padding: 10px 12px;
  border: 2px solid rgba(48, 50, 61, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 13px;
}

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

.policy-shell {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 36px));
  margin: 18px auto 28px;
  padding: 30px;
  border: 3px solid rgba(48, 50, 61, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.policy-shell h1 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 30px;
  letter-spacing: 0;
}

.policy-shell .policy-date {
  margin: 0 0 24px;
  color: var(--soft-ink);
  font-weight: 800;
}

.policy-shell section {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.policy-shell h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
}

.policy-shell p,
.policy-shell li {
  color: var(--soft-ink);
  line-height: 1.75;
}

.policy-shell ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.policy-shell a {
  color: #1878b8;
  font-weight: 900;
  text-decoration: none;
}

.result-banner {
  margin-bottom: 8px;
  padding: 12px;
  border-radius: 8px;
  background: #f0ffea;
  color: #22880e;
  font-weight: 900;
}

@media (max-width: 1120px) {
  .top-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-menu {
    justify-content: flex-start;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    width: 100%;
    flex-wrap: wrap;
  }

  .game-shell {
    grid-template-columns: minmax(310px, 430px) minmax(300px, 1fr);
    align-items: start;
  }

  .ad-slot {
    min-height: 88px;
  }

  .phone-wrap {
    order: 1;
    grid-column: 1 / -1;
  }

  .left-stage {
    order: 2;
    grid-column: 1 / -1;
    grid-template-columns: minmax(240px, 1fr) minmax(240px, 330px);
    align-items: stretch;
    position: static;
    max-height: none;
  }

  .right-stage {
    order: 3;
    grid-column: 1 / -1;
    position: static;
    max-height: none;
  }

  .stat-row {
    grid-column: 1 / -1;
  }

  .ad-slot-side {
    grid-column: 1 / -1;
    min-height: 120px;
  }

  .ad-slot-side .adsbygoogle {
    min-height: 90px;
  }

  .character-card {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .top-nav {
    position: relative;
    top: auto;
    width: min(100vw - 22px, 430px);
    margin-top: 10px;
    min-height: 58px;
    padding: 8px 10px;
    flex-direction: row;
    align-items: center;
  }

  .top-brand img {
    width: 126px;
    height: 40px;
  }

  .main-menu {
    display: none;
  }

  .mobile-menu-button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 8px;
    background: #30323d;
    cursor: pointer;
  }

  .mobile-menu-button span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .mobile-menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu-panel {
    position: absolute;
    top: 76px;
    left: 50%;
    z-index: 9;
    display: grid;
    gap: 8px;
    width: min(100vw - 22px, 430px);
    padding: 10px;
    border: 3px solid rgba(48, 50, 61, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -18px);
    transition: opacity 0.2s ease, transform 0.22s ease;
  }

  .mobile-menu-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .mobile-menu-panel a {
    min-height: 44px;
    padding: 12px 14px;
    border-radius: 8px;
    color: var(--soft-ink);
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-menu-panel a.active {
    background: #30323d;
    color: #fff;
  }

  .mobile-menu-panel a[aria-disabled="true"] {
    background: #f2f4f7;
    opacity: 0.65;
  }

  .ad-band {
    width: min(100vw - 22px, 430px);
  }

  .ad-band-top {
    margin-top: 10px;
  }

  .ad-band-bottom {
    margin-bottom: 18px;
  }

  .ad-slot {
    min-height: 76px;
    padding: 8px 10px;
  }

  .ad-slot .adsbygoogle {
    min-height: 56px;
  }

  .ad-slot-side {
    min-height: 76px;
  }

  .ad-slot-side .adsbygoogle {
    min-height: 56px;
  }

  .game-shell {
    grid-template-columns: 1fr;
    width: min(100vw - 22px, 430px);
    padding: 12px 0 24px;
  }

  .site-footer {
    width: min(100vw - 22px, 430px);
    margin-bottom: 18px;
    padding: 18px;
  }

  .site-footer p span {
    display: block;
    margin-left: 0;
  }

  .footer-links a {
    flex: 1;
    text-align: center;
  }

  .policy-shell {
    width: min(100vw - 22px, 430px);
    margin-top: 12px;
    padding: 22px 18px;
  }

  .policy-shell h1 {
    font-size: 24px;
  }

  .phone-wrap {
    order: 1;
  }

  .left-stage {
    order: 2;
    grid-template-columns: 1fr;
  }

  .right-stage {
    order: 3;
  }

  .character-card,
  .cat-panel {
    min-height: 250px;
  }

  .phone {
    min-height: 690px;
  }
  #questionText {
    min-height: auto;
    font-size: 20px;
  }
}
