/* ===== wechat.css - 微信功能页面样式 ===== */
/* 蓝紫渐变系 · 深色背景 · 移动端优先 · max-width 420px */

:root {
  --wc-primary: #667eea;
  --wc-primary-dark: #5a6fd6;
  --wc-accent: #764ba2;
  --wc-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --wc-gradient-soft: linear-gradient(135deg, #7c8ef0 0%, #9b6bc4 100%);
  --wc-gold: #FFD700;
  --wc-cyan: #4ECDC4;
  --wc-pink: #FF6B9D;
  --wc-green: #7BC96F;
  --wc-orange: #FF8C42;

  --wc-bg: #0f0c29;
  --wc-bg-2: #1a1540;
  --wc-bg-3: #24204a;
  --wc-card: rgba(255, 255, 255, 0.08);
  --wc-card-solid: #1e1a3e;
  --wc-card-hover: rgba(255, 255, 255, 0.12);
  --wc-border: rgba(255, 255, 255, 0.1);
  --wc-text: #ffffff;
  --wc-text-dim: rgba(255, 255, 255, 0.6);
  --wc-text-muted: rgba(255, 255, 255, 0.4);

  --wc-radius: 18px;
  --wc-radius-lg: 24px;
  --wc-radius-sm: 12px;
  --wc-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --wc-shadow-card: 0 4px 20px rgba(102, 126, 234, 0.15);
}

/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  color: var(--wc-text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  max-width: 420px;
  margin: 0 auto;
  background: linear-gradient(160deg, #0f0c29 0%, #1a1540 40%, #24204a 100%);
  background-attachment: fixed;
  padding-bottom: 40px;
  position: relative;
  min-height: 100vh;
}

/* decorative background blobs */
body::before {
  content: '';
  position: fixed;
  top: -80px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(102,126,234,0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  bottom: -100px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(118,75,162,0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  color: inherit;
  background: none;
}

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

.wc-page {
  position: relative;
  z-index: 1;
  padding-top: 64px;
}

/* ===== Navigation Bar ===== */
.nav-bar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 420px;
  height: 56px;
  background: rgba(15, 12, 41, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  border-bottom: 1px solid var(--wc-border);
  padding: 0 12px;
}

.nav-back {
  position: absolute;
  left: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border-radius: 50%;
  transition: background 0.2s;
}
.nav-back:active {
  background: rgba(255,255,255,0.1);
}

.nav-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.nav-right {
  position: absolute;
  right: 12px;
  font-size: 14px;
  color: var(--wc-text-dim);
}

/* ===== Common Card ===== */
.wc-card {
  background: var(--wc-card);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius);
  padding: 20px;
  margin: 0 16px 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.wc-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== Section heading ===== */
.section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--wc-text);
  margin: 20px 20px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   MEMBER CENTER
   ============================================ */

/* Hero status card */
.member-hero {
  margin: 16px;
  border-radius: var(--wc-radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.member-hero.free {
  background: linear-gradient(135deg, #3a3550 0%, #4a4560 100%);
}

.member-hero.active {
  background: var(--wc-gradient);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

.member-hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.member-hero::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.member-hero .mh-icon {
  font-size: 40px;
  margin-bottom: 8px;
}

.member-hero .mh-label {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.member-hero .mh-level {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
}

.member-hero .mh-expire {
  font-size: 13px;
  opacity: 0.85;
}

.member-hero .mh-cta {
  margin-top: 16px;
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
  transition: all 0.2s;
}
.member-hero .mh-cta:active {
  transform: scale(0.96);
  background: rgba(255,255,255,0.3);
}

/* Plan cards */
.plans-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 16px;
}

.plan-card {
  background: var(--wc-card);
  border: 2px solid var(--wc-border);
  border-radius: var(--wc-radius);
  padding: 20px;
  position: relative;
  transition: all 0.25s;
  overflow: hidden;
}

.plan-card.featured {
  border-color: var(--wc-primary);
  background: linear-gradient(135deg, rgba(102,126,234,0.15) 0%, rgba(118,75,162,0.15) 100%);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

.plan-card:active {
  transform: scale(0.98);
}

.plan-badge {
  position: absolute;
  top: 14px;
  right: -30px;
  background: linear-gradient(135deg, #FF8C42, #FF6B35);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 36px;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(255,107,53,0.4);
}

.plan-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.plan-desc {
  font-size: 13px;
  color: var(--wc-text-dim);
  margin-bottom: 14px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.plan-price .currency {
  font-size: 16px;
  font-weight: 600;
}

.plan-price .amount {
  font-size: 36px;
  font-weight: 800;
  background: var(--wc-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.plan-card.featured .plan-price .amount {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  background-clip: text;
}

.plan-price .period {
  font-size: 13px;
  color: var(--wc-text-dim);
}

.plan-features {
  list-style: none;
  margin-bottom: 18px;
}

.plan-features li {
  font-size: 14px;
  color: var(--wc-text);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(123, 201, 111, 0.2);
  color: var(--wc-green);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.buy-btn {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--wc-gradient);
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.35);
}

.buy-btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.plan-card.featured .buy-btn {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  box-shadow: 0 4px 16px rgba(255, 165, 0, 0.4);
  color: #5a3e00;
}

/* Benefit comparison table */
.benefit-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
}

.benefit-table th,
.benefit-table td {
  padding: 12px 10px;
  text-align: center;
  border-bottom: 1px solid var(--wc-border);
}

.benefit-table th {
  font-weight: 700;
  font-size: 13px;
  color: var(--wc-text-dim);
}

.benefit-table th:first-child {
  text-align: left;
}

.benefit-table td:first-child {
  text-align: left;
  color: var(--wc-text);
  font-weight: 500;
}

.benefit-table .col-free {
  color: var(--wc-text-dim);
}

.benefit-table .col-vip {
  color: var(--wc-gold);
  font-weight: 700;
}

.benefit-table thead th {
  background: rgba(255,255,255,0.04);
}

.benefit-table .check {
  color: var(--wc-green);
  font-size: 18px;
  font-weight: 700;
}

.benefit-table .cross {
  color: var(--wc-text-muted);
  font-size: 16px;
}

.benefit-table tr:last-child td {
  border-bottom: none;
}

/* Footer notes */
.member-footer {
  padding: 20px 24px 10px;
  text-align: center;
}

.member-footer p {
  font-size: 12px;
  color: var(--wc-text-muted);
  line-height: 1.8;
}

/* ============================================
   LEARNING REPORT
   ============================================ */

/* Period tabs */
.period-tabs {
  display: flex;
  margin: 16px;
  background: var(--wc-card);
  border-radius: 14px;
  padding: 4px;
  border: 1px solid var(--wc-border);
}

.period-tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--wc-text-dim);
  border-radius: 10px;
  transition: all 0.25s;
}

.period-tab.active {
  background: var(--wc-gradient);
  color: #fff;
  box-shadow: 0 4px 12px rgba(102,126,234,0.3);
}

/* Overview gradient card */
.report-overview {
  margin: 0 16px 16px;
  border-radius: var(--wc-radius-lg);
  padding: 24px;
  background: var(--wc-gradient);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(102,126,234,0.3);
}

.report-overview::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.overview-grid {
  display: flex;
  justify-content: space-around;
  position: relative;
  z-index: 1;
}

.overview-item {
  text-align: center;
}

.overview-item .ov-num {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
}

.overview-item .ov-label {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
}

.overview-divider {
  width: 1px;
  background: rgba(255,255,255,0.25);
}

/* Three stat cards row */
.report-stats-row {
  display: flex;
  gap: 10px;
  margin: 0 16px 16px;
}

.report-stat {
  flex: 1;
  background: var(--wc-card);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius);
  padding: 16px 8px;
  text-align: center;
  transition: transform 0.2s;
}
.report-stat:active { transform: scale(0.97); }

.report-stat .rs-icon {
  font-size: 28px;
  margin-bottom: 6px;
}

.report-stat .rs-num {
  font-size: 22px;
  font-weight: 800;
}

.report-stat .rs-label {
  font-size: 12px;
  color: var(--wc-text-dim);
  margin-top: 2px;
}

/* Chart */
.chart-container {
  margin: 0 16px 16px;
  background: var(--wc-card);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius);
  padding: 20px 16px 12px;
}

.chart-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 160px;
  gap: 6px;
  padding-bottom: 4px;
}

.chart-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}

.chart-bar {
  width: 100%;
  max-width: 28px;
  background: var(--wc-gradient);
  border-radius: 8px 8px 4px 4px;
  min-height: 4px;
  transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.chart-bar.zero {
  background: rgba(255,255,255,0.1);
  min-height: 4px;
}

.chart-bar-value {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  color: var(--wc-text-dim);
  white-space: nowrap;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin-top: 8px;
}

.chart-labels span {
  flex: 1;
  text-align: center;
  font-size: 10px;
  color: var(--wc-text-muted);
}

/* Badges */
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 6px;
  background: var(--wc-card);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-sm);
  transition: transform 0.2s;
}
.badge:active { transform: scale(0.95); }

.badge .b-icon {
  font-size: 32px;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 8px rgba(255,215,0,0.4));
}

.badge .b-name {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

.badge.locked {
  opacity: 0.35;
  filter: grayscale(1);
}

.badge.locked .b-icon {
  filter: grayscale(1);
}

/* Pet growth */
.pet-growth-section {
  margin: 0 16px 16px;
  background: var(--wc-card);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius);
  padding: 20px;
}

.pet-growth-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.pet-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wc-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(102,126,234,0.3);
}

.pet-info {
  flex: 1;
}

.pet-name {
  font-size: 18px;
  font-weight: 700;
}

.pet-level {
  font-size: 13px;
  color: var(--wc-text-dim);
  margin-top: 2px;
}

.growth-bar-wrap {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  height: 14px;
  overflow: hidden;
  position: relative;
}

.growth-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--wc-cyan), var(--wc-primary));
  border-radius: 10px;
  transition: width 0.6s ease;
}

.growth-text {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--wc-text-dim);
  margin-top: 6px;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--wc-text-dim);
}
.empty-state .es-icon { font-size: 48px; margin-bottom: 12px; }
.empty-state .es-text { font-size: 14px; }

/* ============================================
   LEGAL DOCUMENTS (Privacy / Agreement)
   ============================================ */

.legal-doc {
  padding: 16px;
  position: relative;
  z-index: 1;
}

.legal-header {
  text-align: center;
  padding: 24px 16px 20px;
}

.legal-header h1 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  background: var(--wc-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-header .legal-date {
  font-size: 13px;
  color: var(--wc-text-dim);
}

.legal-section {
  background: var(--wc-card);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius);
  padding: 20px;
  margin-bottom: 14px;
  backdrop-filter: blur(10px);
}

.legal-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.legal-title .lt-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  background: var(--wc-gradient);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.legal-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--wc-text-dim);
}

.legal-body p {
  margin-bottom: 10px;
}

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

.legal-body ul {
  list-style: none;
  padding-left: 0;
}

.legal-body ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-body ul li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--wc-primary);
  font-weight: 700;
}

.legal-body strong {
  color: var(--wc-text);
  font-weight: 600;
}

.legal-contact {
  background: var(--wc-gradient);
  border-radius: var(--wc-radius);
  padding: 20px;
  text-align: center;
  margin-bottom: 14px;
}

.legal-contact .lc-label {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 6px;
}

.legal-contact .lc-email {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.legal-footer-btn {
  display: block;
  width: calc(100% - 32px);
  margin: 24px 16px 0;
  padding: 15px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--wc-gradient);
  text-align: center;
  box-shadow: 0 6px 20px rgba(102,126,234,0.35);
  transition: all 0.2s;
}

.legal-footer-btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 10px rgba(102,126,234,0.3);
}

/* ============================================
   CALLBACK / LOADING PAGE
   ============================================ */

.callback-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  padding: 40px 24px;
  text-align: center;
}

.callback-logo {
  font-size: 72px;
  margin-bottom: 24px;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.callback-text {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.callback-sub {
  font-size: 14px;
  color: var(--wc-text-dim);
  margin-bottom: 40px;
}

.loading-spinner {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(255,255,255,0.15);
  border-top-color: var(--wc-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.callback-error-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.callback-btn {
  display: inline-block;
  padding: 12px 36px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--wc-gradient);
  margin-top: 20px;
  box-shadow: 0 4px 16px rgba(102,126,234,0.35);
  transition: all 0.2s;
}

.callback-btn:active {
  transform: scale(0.96);
}

/* ============================================
   UPGRADE PROMPT DIALOG
   ============================================ */

.upgrade-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.upgrade-overlay.show {
  opacity: 1;
  visibility: visible;
}

.upgrade-dialog {
  background: linear-gradient(160deg, #1e1a3e 0%, #2a2550 100%);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius-lg);
  padding: 32px 24px 24px;
  width: 100%;
  max-width: 340px;
  text-align: center;
  position: relative;
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.upgrade-overlay.show .upgrade-dialog {
  transform: scale(1);
}

.upgrade-icon {
  font-size: 56px;
  margin-bottom: 12px;
}

.upgrade-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  background: var(--wc-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.upgrade-desc {
  font-size: 14px;
  color: var(--wc-text-dim);
  line-height: 1.7;
  margin-bottom: 24px;
}

.upgrade-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.2s;
  margin-bottom: 10px;
}

.upgrade-btn-primary {
  background: var(--wc-gradient);
  color: #fff;
  box-shadow: 0 6px 20px rgba(102,126,234,0.4);
}

.upgrade-btn-primary:active {
  transform: scale(0.97);
}

.upgrade-btn-cancel {
  background: rgba(255,255,255,0.08);
  color: var(--wc-text-dim);
  font-size: 14px;
  padding: 10px;
}

.upgrade-btn-cancel:active {
  background: rgba(255,255,255,0.15);
}

.upgrade-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--wc-text-muted);
  border-radius: 50%;
  transition: background 0.2s;
}
.upgrade-close:active {
  background: rgba(255,255,255,0.1);
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mb-8 { margin-bottom: 8px; }
.hidden { display: none !important; }
