:root {
  --ink: #29243a;
  --muted: #6f687f;
  --surface: rgba(255, 255, 255, 0.9);
  --line: rgba(91, 70, 130, 0.12);
  --shadow: 0 18px 45px rgba(78, 57, 112, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  text-align: center;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 184, 218, 0.35), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(178, 214, 255, 0.42), transparent 28%),
    linear-gradient(145deg, #fff9fc 0%, #f8f7ff 48%, #f3fbff 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(rgba(122, 92, 177, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(105, 83, 214, 0.32);
  outline-offset: 3px;
}

.visitor-name-tag {
  position: fixed;
  top: 16px;
  right: 18px;
  z-index: 20;
  max-width: calc(100vw - 36px);
  padding: 7px 11px;
  overflow: hidden;
  border: 1px solid rgba(91, 70, 130, 0.12);
  border-radius: 999px;
  color: #736b80;
  font-size: 12px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 6px 16px rgba(78, 57, 112, 0.08);
  backdrop-filter: blur(8px);
}

.visitor-name-tag strong {
  color: #51475f;
  font-weight: 800;
}

.visitor-name-tag.is-error strong {
  color: #a14b62;
}

.site-shell {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 72px;
}

.hero {
  max-width: 700px;
  margin: 0 auto 38px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 76px);
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(120deg, #6655d5 15%, #e65f9e 78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  margin: 16px 0 26px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.random-button {
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(120deg, #7258da, #e664a2);
  box-shadow: 0 10px 24px rgba(111, 81, 193, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.random-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(111, 81, 193, 0.3);
}

.sample-notice {
  width: fit-content;
  margin: 18px auto 0;
  padding: 5px 11px;
  border: 1px solid rgba(91, 70, 130, 0.1);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.58);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 24px;
}

.theme-0,
.card.theme-0,
.profile.theme-0,
.detail-content.theme-0 {
  --accent: #735bd6;
  --accent-two: #ee79b5;
  --icon-start: #eee9ff;
  --icon-end: #ffeaf5;
}

.theme-1,
.card.theme-1,
.profile.theme-1,
.detail-content.theme-1 {
  --accent: #e16475;
  --accent-two: #f1a43c;
  --icon-start: #ffe9ee;
  --icon-end: #fff2d9;
}

.theme-2,
.card.theme-2,
.profile.theme-2,
.detail-content.theme-2 {
  --accent: #547dd7;
  --accent-two: #9a70dc;
  --icon-start: #e4f1ff;
  --icon-end: #f0e9ff;
}

.card,
.profile {
  --accent: #735bd6;
  --accent-two: #ee79b5;
  --icon-start: #eee9ff;
  --icon-end: #ffeaf5;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.card::before,
.profile::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--accent), var(--accent-two));
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px 24px 24px;
  border-radius: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(78, 57, 112, 0.18);
}

.list-page .card {
  padding: 32px 24px 28px;
  cursor: pointer;
}

.list-page .card .icon {
  width: 190px;
  height: 190px;
  margin-bottom: 26px;
  font-size: 76px;
}

.list-page .card .description {
  min-height: 0;
  margin: 12px 0 0;
}

.list-page .name-link::after {
  position: absolute;
  inset: 0;
  content: "";
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 124px;
  margin: 0 auto 22px;
  border: 5px solid rgba(255, 255, 255, 0.86);
  border-radius: 38%;
  font-size: 52px;
  background: linear-gradient(145deg, var(--icon-start), var(--icon-end));
  box-shadow:
    0 12px 26px color-mix(in srgb, var(--accent) 18%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, 0.9);
  transform: rotate(-3deg);
}

.card h2,
.profile h1 {
  margin: 0;
  letter-spacing: 0.02em;
}

.card h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 24px;
}

.sample-badge {
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  padding: 3px 8px;
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: 999px;
  color: color-mix(in srgb, var(--accent) 76%, #4e4658);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  background: color-mix(in srgb, var(--accent) 8%, white);
}

.card h2 a {
  color: var(--ink);
  text-decoration: none;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.card h2 a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.description {
  color: var(--muted);
  line-height: 1.8;
}

.card .description {
  min-height: 58px;
  margin: 12px 0 20px;
  font-size: 15px;
}

.stamp-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.stamp {
  --stamp-color: #7351b5;
  --stamp-bg: #f5f0ff;
  --stamp-line: #d5c6f1;
  --stamp-active: linear-gradient(120deg, #9671dc, #7353bd);
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--stamp-line);
  border-radius: 999px;
  color: var(--stamp-color);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  background: var(--stamp-bg);
  box-shadow: 0 5px 12px rgba(62, 48, 86, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.stamp[data-stamp="like"],
.feeling-tab[data-stamp="like"] {
  --stamp-color: #c93f71;
  --stamp-bg: #fff1f6;
  --stamp-line: #f5bfd1;
  --stamp-active: linear-gradient(120deg, #f06491, #df4b72);
}

.stamp[data-stamp="cheer"],
.feeling-tab[data-stamp="cheer"] {
  --stamp-color: #347b58;
  --stamp-bg: #effaf4;
  --stamp-line: #b9e1ca;
  --stamp-active: linear-gradient(120deg, #55aa79, #3e9163);
}

.stamp[data-stamp="curious"],
.feeling-tab[data-stamp="curious"] {
  --stamp-color: #7351b5;
  --stamp-bg: #f5f0ff;
  --stamp-line: #d5c6f1;
  --stamp-active: linear-gradient(120deg, #9671dc, #7353bd);
}

.stamp:hover {
  transform: translateY(-2px) rotate(-1deg);
  box-shadow: 0 8px 16px rgba(62, 48, 86, 0.13);
}

.stamp[data-pushed="yes"] {
  border-color: transparent;
  color: #fff;
  background: var(--stamp-active) !important;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--stamp-color) 24%, transparent);
}

.social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.youtube,
.x-link {
  display: block;
  padding: 12px 18px;
  border: 1px solid rgba(72, 59, 100, 0.15);
  border-radius: 14px;
  color: #4a405c;
  font-weight: 700;
  text-decoration: none;
  background: rgba(250, 249, 253, 0.9);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.card .social-links {
  margin-top: auto;
  padding-top: 22px;
}

.youtube:hover,
.x-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #fff;
}

.detail-shell {
  width: min(680px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.back {
  display: inline-flex;
  align-items: center;
  float: left;
  margin: 0 0 20px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #645b74;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.75);
  transition: transform 0.2s ease, background 0.2s ease;
}

.back:hover {
  transform: translateX(-3px);
  background: #fff;
}

.profile {
  clear: both;
  padding: 46px 42px 40px;
  border-radius: 32px;
}

.profile .icon {
  width: 154px;
  height: 154px;
  margin-bottom: 26px;
  font-size: 64px;
  border-radius: 42%;
}

.profile h1 {
  font-size: clamp(30px, 6vw, 40px);
}

.profile .description {
  margin: 16px auto 28px;
  font-size: 16px;
}

.profile .stamp-area {
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--accent) 12%, transparent);
  border-radius: 22px;
  background: color-mix(in srgb, var(--icon-start) 48%, white);
}

.profile .stamp {
  min-height: 46px;
  padding: 10px 16px;
  font-size: 15px;
}

.profile .social-links {
  margin-top: 24px;
}

.not-found {
  clear: both;
  padding: 42px 24px;
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.not-found a {
  color: #6655d5;
  font-weight: 700;
}

/* VTuber詳細：プロフィールよりも「気持ちを送る体験」を主役にする */
.detail-shell {
  width: min(980px, calc(100% - 32px));
}

.detail-content {
  --accent: #735bd6;
  --accent-two: #ee79b5;
  --icon-start: #eee9ff;
  --icon-end: #ffeaf5;
  display: grid;
  clear: both;
  gap: 24px;
}

.detail-content > * {
  min-width: 0;
}

.detail-content .profile {
  padding: 32px;
}

.profile-visual {
  display: grid;
  grid-template-columns: minmax(280px, 45fr) minmax(320px, 55fr);
  align-items: center;
  gap: 32px;
}

.profile .detail-portrait {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 410px;
  aspect-ratio: 1 / 1;
  margin: 0;
  border-radius: 28px;
  font-size: clamp(104px, 14vw, 148px);
  transform: none;
}

.profile-copy {
  text-align: left;
}

.profile-name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-kicker,
.section-kicker {
  margin: 0 0 9px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.profile-copy h1 {
  font-size: clamp(34px, 5vw, 46px);
}

.profile-copy .description {
  margin: 16px 0 26px;
  font-size: 16px;
  line-height: 1.9;
}

.profile-copy .social-links {
  margin-top: 0;
}

.support-board {
  position: relative;
  padding: 34px 38px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  text-align: left;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.support-board h2 {
  margin: 0;
  font-size: clamp(25px, 4vw, 32px);
}

.section-intro {
  margin: 10px 0 24px;
  color: var(--muted);
  line-height: 1.8;
}

.feeling-select-field {
  margin-top: 24px;
}

.feeling-select-field label {
  display: block;
  margin-bottom: 9px;
  color: #51485f;
  font-size: 15px;
  font-weight: 800;
}

.feeling-select-wrap {
  position: relative;
}

.feeling-select-wrap::after {
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--accent);
  content: "▼";
  font-size: 12px;
  pointer-events: none;
  transform: translateY(-50%);
}

#feeling-select {
  width: 100%;
  min-height: 54px;
  padding: 12px 48px 12px 17px;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, #ddd6e8);
  border-radius: 16px;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  appearance: none;
  background: #fff;
  box-shadow: 0 7px 16px rgba(72, 52, 104, 0.07);
}

.feeling-tabs {
  display: flex;
  gap: 10px;
  padding: 4px 2px 12px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.feeling-tab {
  --stamp-color: #7351b5;
  --stamp-bg: #f5f0ff;
  --stamp-line: #d5c6f1;
  --stamp-active: linear-gradient(120deg, #9671dc, #7353bd);
  position: relative;
  flex: 0 0 auto;
  min-height: 48px;
  padding: 11px 17px;
  border: 1px solid var(--stamp-line);
  border-radius: 999px;
  color: var(--stamp-color);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  background: var(--stamp-bg);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feeling-tab:hover {
  transform: translateY(-2px);
}

.feeling-tab.is-selected {
  border-color: transparent;
  color: #fff;
  background: var(--stamp-active);
  box-shadow: 0 9px 20px color-mix(in srgb, var(--stamp-color) 24%, transparent);
}

.feeling-tab[data-sent="yes"]::after {
  margin-left: 6px;
  content: "✓";
}

.feeling-explanation {
  min-height: 120px;
  margin-top: 8px;
  padding: 22px 24px;
  border: 1px solid color-mix(in srgb, var(--accent) 12%, transparent);
  border-radius: 20px;
  background: color-mix(in srgb, var(--icon-start) 50%, white);
}

.feeling-headline {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.feeling-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.send-feeling {
  width: 100%;
  min-height: 54px;
  margin-top: 16px;
  padding: 13px 22px;
  border: 0;
  border-radius: 17px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(120deg, var(--accent), var(--accent-two));
  box-shadow: 0 12px 24px color-mix(in srgb, var(--accent) 25%, transparent);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.send-feeling:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 15px 28px color-mix(in srgb, var(--accent) 32%, transparent);
}

.send-feeling:disabled {
  color: #6d6678;
  cursor: default;
  background: #ece9f1;
  box-shadow: none;
}

.send-feedback {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.firebase-error {
  margin: 8px 0 0;
  color: #a14b62;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.support-stream-heading {
  margin: 30px 0 16px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.support-stream-heading h3 {
  margin: 0;
  font-size: 20px;
}

#support-filter-label {
  margin: 0;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  background: var(--icon-start);
}

.support-log {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-log li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(250, 249, 253, 0.82);
}

.support-log li:nth-child(even) {
  margin-left: 20px;
}

.support-user {
  color: #51495e;
  font-weight: 700;
}

.support-stamp {
  flex: 0 0 auto;
  color: #6e617e;
  font-size: 14px;
  font-weight: 700;
}

.support-log .support-empty {
  justify-content: center;
  color: var(--muted);
  text-align: center;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: #665b78;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 4px;
}

.site-footer a:hover {
  color: #735bd6;
  text-decoration: underline;
}

.info-shell {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.info-back {
  display: inline-flex;
  float: left;
  margin-bottom: 20px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #645b74;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.75);
  transition: transform 0.2s ease, background 0.2s ease;
}

.info-back:hover {
  transform: translateX(-3px);
  background: #fff;
}

.info-card {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 50px 54px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  text-align: left;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.info-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, #735bd6, #ee79b5);
}

.info-kicker {
  margin: 0 0 10px;
  color: #8064c9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.info-card h1 {
  margin: 0;
  font-size: clamp(32px, 6vw, 44px);
  letter-spacing: 0.01em;
}

.info-lead {
  margin: 18px 0 34px;
  color: #595166;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.9;
}

.info-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.info-section:last-of-type {
  padding-bottom: 4px;
}

.info-section h2 {
  margin: 0 0 10px;
  font-size: 21px;
}

.info-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.concept-message {
  margin-bottom: 12px !important;
  padding: 14px 18px;
  border-radius: 16px;
  color: #5e48a8 !important;
  font-weight: 800;
  background: linear-gradient(120deg, #f2edff, #fff0f7);
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: #5c526b;
  background: #faf8ff;
}

.contact-box span {
  font-weight: 700;
}

.contact-box strong {
  padding: 6px 12px;
  border-radius: 999px;
  color: #7658bd;
  background: #eee8ff;
}

.contact-box p {
  margin: 0;
  line-height: 1.8;
}

.contact-box a {
  color: #7658bd;
  font-weight: 800;
  text-underline-offset: 3px;
}

@media (max-width: 680px) {
  .visitor-name-tag {
    top: 10px;
    right: 10px;
    max-width: calc(100vw - 20px);
    padding: 6px 9px;
    font-size: 11px;
  }

  .site-shell {
    width: min(100% - 24px, 520px);
    padding: 42px 0 52px;
  }

  .hero {
    margin-bottom: 30px;
  }

  .cards {
    gap: 18px;
  }

  .card {
    padding: 30px 18px 22px;
  }

  .list-page .card .icon {
    width: min(190px, 72vw);
    height: min(190px, 72vw);
  }

  .card:hover {
    transform: none;
  }

  .detail-shell {
    width: min(100% - 24px, 540px);
    padding: 24px 0 48px;
  }

  .profile {
    padding: 38px 18px 28px;
    border-radius: 26px;
  }

  .profile .icon {
    width: 132px;
    height: 132px;
    font-size: 56px;
  }

  .profile .stamp-area {
    padding: 14px 10px;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .info-shell {
    width: min(100% - 24px, 540px);
    padding: 24px 0 48px;
  }

  .info-card {
    padding: 38px 22px 30px;
    border-radius: 26px;
  }

  .info-card h1 {
    font-size: 28px;
  }

  .info-lead {
    margin-bottom: 28px;
    font-size: 16px;
  }

  .info-section {
    padding: 24px 0;
  }
}

@media (max-width: 390px) {
  .stamp-area {
    display: grid;
    grid-template-columns: 1fr;
  }

  .stamp {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 720px) {
  .detail-shell {
    width: min(100% - 24px, 560px);
    padding: 24px 0 48px;
  }

  .detail-content {
    gap: 18px;
  }

  .detail-content .profile {
    padding: 20px 18px 28px;
  }

  .profile-visual {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .profile .detail-portrait {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    font-size: clamp(92px, 28vw, 128px);
  }

  .profile-copy {
    text-align: center;
  }

  .profile-name-row {
    justify-content: center;
  }

  .profile-copy .description {
    margin: 13px auto 22px;
  }

  .support-board {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .feeling-tabs {
    max-width: 100%;
    gap: 6px;
  }

  .feeling-tab {
    padding: 10px 9px;
    font-size: 13px;
  }

  .feeling-explanation {
    min-height: 0;
    padding: 19px 18px;
  }

  .support-log li,
  .support-log li:nth-child(even) {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    margin-left: 0;
  }
}
