﻿:root {
  --bg-1: #f9efe3;
  --bg-2: #e4f3ee;
  --ink: #1e2a28;
  --muted: #55635e;
  --accent: #c44e2b;
  --accent-2: #1f6b63;
  --card: #fffaf2;
  --border: #e2d7c7;
  --shadow: 0 18px 45px rgba(30, 42, 40, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  scroll-padding-top: var(--app-bar-offset, 92px);
}

html {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 520px at 12% 10%, #ffe8cb 0%, transparent 60%),
    radial-gradient(700px 420px at 90% 0%, #d9f1ea 0%, transparent 60%),
    linear-gradient(140deg, var(--bg-1), var(--bg-2));
  min-height: 100vh;
  overflow-y: hidden;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
  overscroll-behavior-y: auto;
  position: relative;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.45;
  z-index: 0;
}

.orb--one {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #f1b36f, transparent 70%);
  top: -120px;
  left: -60px;
}

.orb--two {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #6db9a6, transparent 70%);
  bottom: -180px;
  right: -140px;
}

@media (max-width: 700px) {
  .orb {
    display: none;
  }
}

.app-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  overflow-x: hidden;
}

.app-bar {
  position: relative;
  z-index: 20;
  padding: calc(16px + env(safe-area-inset-top)) 6vw 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  backdrop-filter: blur(12px);
  background: rgba(255, 250, 242, 0.82);
  border-bottom: 1px solid rgba(226, 215, 199, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.app-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  background: #fffaf2;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(30, 42, 40, 0.1);
  text-decoration: none;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.support-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-btn--ghost {
  background: transparent;
  box-shadow: none;
  border-color: transparent;
}

.brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--accent);
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.brand-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.brand-subtitle {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
}

.drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(86vw, 320px);
  height: 100%;
  background: #fffaf2;
  border-right: 1px solid var(--border);
  box-shadow: 18px 0 40px rgba(30, 42, 40, 0.16);
  padding: calc(20px + env(safe-area-inset-top)) 20px 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 31;
}

.drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.drawer-links {
  display: grid;
  gap: 8px;
}

.drawer-links .nav-link {
  text-decoration: none;
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 500;
  background: #f7e9dc;
  border: none;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.drawer-links .nav-link:hover,
.drawer-links .nav-link:focus-visible {
  background: #f0d9c5;
}

.drawer-links .nav-link.is-active {
  background: #efcdb2;
  color: #1b2624;
}

.drawer-meta {
  margin-top: auto;
  font-size: 13px;
  color: var(--muted);
}

.drawer-scrim {
  position: absolute;
  inset: 0;
  background: rgba(25, 28, 26, 0.35);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 30;
}

.drawer.is-open {
  pointer-events: auto;
}

.drawer.is-open .drawer-scrim {
  opacity: 1;
}

.app-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--app-bar-offset, 92px) + 16px) 6vw 50px;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  width: 100%;
}

.page {
  display: none;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}

.page.is-active {
  display: block;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 32px;
  padding: 28px;
  background: rgba(255, 250, 242, 0.9);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  max-width: 100%;
  min-width: 0;
}

.hero-text h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 3vw, 3.5rem);
  margin: 12px 0;
}

.hero-text,
.hero-card {
  min-width: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-2);
  font-size: 12px;
  margin: 0;
}

.hero-lede {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 520px;
}

.hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}

.meta-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.meta-value {
  font-size: 24px;
  font-weight: 600;
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  animation: floatIn 0.9s ease both;
}

.hero-card-title {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  margin: 0;
  color: var(--accent-2);
}

.hero-card-body {
  margin: 12px 0 20px;
  color: var(--muted);
  line-height: 1.6;
}

.pulse-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pulse-bar span {
  padding: 10px 0;
  background: #f3e1d3;
  text-align: center;
  border-radius: 12px;
  font-weight: 600;
}

.player {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  background: rgba(255, 250, 242, 0.85);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin: 22px 0;
  max-width: 100%;
  min-width: 0;
}

.player-left h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  margin: 10px 0 12px;
}

.player-lede {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 18px;
  max-width: 480px;
}

.player-select label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 8px;
}

.player-select select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 14px;
  background: #fff;
}

.player-countin label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin: 16px 0 8px;
}

.player-countin select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 14px;
  background: #fff;
}

.countin-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.settings {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.settings-panel {
  display: grid;
  gap: 18px;
  background: rgba(255, 250, 242, 0.9);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.settings-panel .control input,
.settings-panel .control select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 14px;
  background: #fff;
}

.settings-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.settings-sound-control .countin-note {
  margin-top: 10px;
}

.player-buttons {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  display: inline-block;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(30, 42, 40, 0.18);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.player-right {
  display: grid;
  gap: 18px;
  justify-items: center;
  align-items: center;
  min-width: 0;
}

.tempo-big {
  width: 280px;
  max-width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 250, 242, 0.95);
  box-shadow: var(--shadow);
  padding: 14px 16px;
  text-align: center;
}

.tempo-big-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.tempo-big-main {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.tempo-big-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
  color: var(--accent-2);
}

.tempo-big-unit {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.tempo-wheel {
  position: relative;
  width: 280px;
  max-width: 100%;
  display: grid;
  place-items: center;
}

.tempo-dial {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fffaf2, #f2dcc6);
  border: 6px solid #f0d7c4;
  box-shadow: inset 0 0 18px rgba(30, 42, 40, 0.08);
  position: relative;
  display: grid;
  place-items: center;
  cursor: pointer;
  touch-action: none;
}

.tempo-dial:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 6px;
}

.tempo-dial.is-active {
  box-shadow:
    inset 0 0 18px rgba(30, 42, 40, 0.08),
    0 0 0 3px rgba(31, 107, 99, 0.2);
}

.tempo-indicator {
  position: absolute;
  width: 4px;
  height: 84px;
  background: var(--accent);
  border-radius: 999px;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) rotate(var(--rotation, -40deg));
  transform-origin: 50% 84px;
  box-shadow: 0 8px 16px rgba(30, 42, 40, 0.2);
}

.tempo-center {
  text-align: center;
}

.tempo-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.tempo-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--accent-2);
}

.tempo-slider-wrap {
  width: 280px;
  max-width: 100%;
  display: grid;
  gap: 8px;
}

.tempo-slider-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-align: center;
}

#tempo-range {
  width: 100%;
  height: 10px;
  accent-color: var(--accent);
}

.tempo-stepper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 250, 242, 0.9);
  width: 220px;
  justify-content: center;
}

.tempo-or {
  margin: 2px 0 0;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.tempo-input {
  display: grid;
  gap: 12px;
  width: 220px;
  justify-items: center;
  margin: 0 auto;
  text-align: center;
}

.tempo-input label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-align: center;
}

.tempo-input input {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 14px;
  background: #fff;
  text-align: center;
  width: 100%;
}

.step-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fffaf2;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.step-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.beat-display {
  text-align: center;
  max-width: 320px;
}

.countdown-visual {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--accent-2);
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.countdown-visual.is-visible {
  opacity: 1;
}

.beat-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
}

.beat-dots {
  margin-top: 14px;
  display: grid;
  gap: 8px;
  justify-items: start;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.beat-row {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: nowrap;
}

.beat-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e8d9cb;
  margin: 0 auto;
  border: 3px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.beat-dot.is-accent {
  background: #f2c09a;
}

.beat-dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
  border-color: #fff;
}

.beat-hint {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.atlas {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.section-header h2 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  background: rgba(255, 250, 242, 0.9);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  max-width: 100%;
  min-width: 0;
}

.control label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 8px;
}

.control input,
.control select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 14px;
  background: #fff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
  max-width: 100%;
  min-width: 0;
}

.card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  animation: fadeUp 0.7s ease both;
  animation-delay: var(--delay, 0ms);
}

.card:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

.card.is-selected {
  border-color: var(--accent);
  box-shadow: 0 20px 45px rgba(196, 78, 43, 0.25);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(196, 78, 43, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover::after {
  opacity: 1;
}

.card h3 {
  margin: 6px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
}

.card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f2dfd1;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

.structure {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
  gap: 8px;
}

.structure span {
  display: grid;
  place-items: center;
  padding: 10px 0;
  border-radius: 10px;
  background: #efe6da;
  font-weight: 600;
}

.legend {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: center;
  background: rgba(255, 250, 242, 0.92);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  max-width: 100%;
  min-width: 0;
}

.legend h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin-bottom: 12px;
}

.legend-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.legend-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid var(--border);
}

.site-footer {
  padding: 40px 6vw 60px;
  color: var(--muted);
  text-align: center;
}

.about-socials {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.social-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fffaf2;
  color: #0a66c2;
  box-shadow: 0 10px 24px rgba(30, 42, 40, 0.12);
  text-decoration: none;
}

.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(30, 42, 40, 0.18);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.legal {
  background: rgba(255, 250, 242, 0.92);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  max-width: 100%;
}

.legal h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin: 0 0 12px;
}

.legal p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.legal p:last-child {
  margin-bottom: 0;
}

.feedback-actions {
  margin-top: 16px;
}

.support-page {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.support-card {
  background: rgba(255, 250, 242, 0.92);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.support-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
}

.support-reasons {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.support-reasons span {
  background: #f3e1d3;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #5b4638;
  text-align: center;
}

.support-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.support-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.support-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feedback-link-wrap {
  overflow-wrap: anywhere;
}


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

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 800px) {
  .app-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-meta {
    flex-direction: column;
    gap: 12px;
  }

  .player {
    padding: 22px;
  }

  .hero,
  .legend {
    padding: 22px;
  }
}

@media (max-width: 900px) {
  .hero,
  .player {
    grid-template-columns: 1fr;
  }
}

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

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

  .beat-display {
    max-width: 100%;
    width: 100%;
  }

  .beat-dots {
    width: 100%;
    justify-items: center;
  }

  .beat-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .beat-dot {
    width: 22px;
    height: 22px;
    border-width: 2px;
  }
}

/* Keep scrolling enabled while hiding scrollbar visuals. */
html,
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}


/* Force-hide all scrollbars while preserving scroll behavior. */
* {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

*::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
  background: transparent;
}

#count-in-status {
  font-size: 16px;
  font-weight: 600;
}

