/* ============================================
   SECTION 5 — PRICING / PLANS
   Mobile-first | 1→2→4 col grid
   ============================================ */

/* ── SECTION ── */
.plans {
  position: relative;
  background: #07090F;
  padding: 52px 20px;
  overflow: hidden;
}

.plans::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 350px;
  background: radial-gradient(ellipse at center top,
    rgba(0,212,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* ── TITLE BLOCK ── */
.plans-header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.plans-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.08);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 4px;
  padding: 7px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #F5C518;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
@media (hover: hover) {
  .plans-pill:hover {
    background: rgba(245,197,24,0.15);
    border-color: rgba(245,197,24,0.55);
    box-shadow: 0 0 16px rgba(245,197,24,0.2);
  }
}

.plans-pill__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #F5C518;
  animation: pillPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pillPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(0.8); }
}

.plans-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 36px;
  text-transform: uppercase;
  color: #F0F4FF;
  line-height: 1.1;
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: 0.5px;
}

.plans-h2__cyan { color: #00D4FF; }
.plans-br { display: none; }

@media (min-width: 400px) { .plans-h2 { font-size: 32px; } }
@media (min-width: 480px) { .plans-h2 { font-size: 36px; } }

.plans-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #B8CAD8;
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
  background: #111827;
  border: 1px solid rgba(245,197,24,0.18);
  border-top: 2px solid #F5C518;
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 0 24px rgba(245,197,24,0.07), 0 4px 20px rgba(0,0,0,0.4);
}

.plans-sub strong { color: #F0F4FF; font-weight: 600; }

/* ── TRUST BAR ── */
.plans-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.plans-trust__item {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--iptv-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(245,197,24,0.05);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
@media (hover: hover) {
  .plans-trust__item:hover {
    background: rgba(245,197,24,0.12);
    border-color: rgba(245,197,24,0.55);
    color: #F5C518;
  }
}

.plans-trust__icon { color: #F5C518; font-weight: 700; font-size: 14px; }

/* Hide dividers on mobile — items are stacked */
.plans-trust__divider { display: none; }

/* ── CARDS GRID ── */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* ── SINGLE CARD ── */
.plan-card {
  position: relative;
  background: #0C1220;
  border: 1px solid #1E3A5F;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

@media (hover: hover) {
  .plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,212,255,0.18), 0 4px 16px rgba(0,0,0,0.4);
    border-color: rgba(0,212,255,0.3);
  }
  .plan-card--featured:hover {
    box-shadow: 0 0 0 1px rgba(245,197,24,0.3),
                0 16px 48px rgba(245,197,24,0.18);
    transform: translateY(-5px);
  }
}

/* Featured — gold border + glow */
.plan-card--featured {
  border-color: #F5C518;
  box-shadow: 0 0 0 1px rgba(245,197,24,0.15),
              0 8px 32px rgba(245,197,24,0.1);
}

/* Lifetime — dark gold theme */
.plan-card--lifetime {
  border-color: #F5C518;
  background: #0F1A0A;
  box-shadow: 0 0 0 1px rgba(245,197,24,0.2),
              0 8px 32px rgba(245,197,24,0.12);
}

/* ── DIAGONAL RIBBON — pseudo-element approach (works in all browsers/contexts) ── */
.plan-card--featured::after {
  content: 'Popular';
  position: absolute;
  top: 18px;
  right: -26px;
  background: #F5C518;
  color: #07090F;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 36px;
  transform: rotate(45deg);
  z-index: 10;
  white-space: nowrap;
  pointer-events: none;
  forced-color-adjust: none;
}

/* ── CARD HEADER BLOCK ── */
.plan-header {
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid #1C2A3A;
  padding: 18px 20px 16px;
  text-align: center;
}

.plan-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00D4FF;
  display: block;
  margin-bottom: 4px;
}

.plan-card--lifetime .plan-brand { color: #F5C518; }

.plan-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 52px;
  text-transform: uppercase;
  color: #F0F4FF;
  margin-bottom: 6px;
  line-height: 1;
}

.plan-per-month {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #F5C518;
  display: block;
}

/* ── OFFER BANNER ── */
.plan-offer-banner {
  display: block;
  width: 100%;
  align-self: stretch;
  flex-shrink: 0;
  background-color: #F5C518;
  color: #07090F;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  padding: 12px 16px;
  box-sizing: border-box;
  forced-color-adjust: none;
}

/* ── CARD BODY ── */
.plan-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── PRICE BLOCK ── */
.plan-price-block {
  text-align: center;
  margin-bottom: 8px;
}

.plan-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: #F5C518;
  display: block;
  letter-spacing: 1px;
}

.plan-card--lifetime .plan-price { color: #F5C518; }

.plan-duration {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #00D4FF;
  display: block;
  margin-top: 2px;
}

.plan-card--lifetime .plan-duration { color: #F5C518; }

/* ── COUNTDOWN — URGENCY BANNER ── */
.plan-countdown {
  position: relative;
  text-align: center;
  margin: 0 -20px 20px;
  padding: 14px 20px 12px;
  background: linear-gradient(135deg, #6B0D0D 0%, #B52020 50%, #E03525 100%);
  border-top: 1px solid rgba(255,100,60,0.4);
  border-bottom: 1px solid rgba(255,100,60,0.4);
  overflow: hidden;
  animation: cdGlow 2.5s ease-in-out infinite;
}

.plan-countdown::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px,
    transparent 8px,
    rgba(0,0,0,0.07) 8px,
    rgba(0,0,0,0.07) 16px
  );
  pointer-events: none;
}

@keyframes cdGlow {
  0%, 100% { box-shadow: 0 0 14px rgba(192,50,40,0.3); }
  50%       { box-shadow: 0 0 32px rgba(224,60,40,0.6); }
}

.plan-countdown__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: rgba(255,255,255,0.9);
  display: block;
  margin-bottom: 2px;
  position: relative;
}

.plan-countdown__timer {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 46px;
  letter-spacing: 6px;
  color: #fff;
  display: block;
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55), 0 0 24px rgba(255,140,80,0.2);
  position: relative;
  animation: timerBlink 2s ease-in-out infinite;
}

@keyframes timerBlink {
  0%, 82%, 100% { opacity: 1; }
  88%           { opacity: 0.7; }
}

.plan-countdown__sub {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.72);
  display: block;
  margin-top: 5px;
  position: relative;
}

.plan-card--featured .plan-countdown__timer {
  color: #FFE566;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55), 0 0 24px rgba(245,197,24,0.45);
}
.plan-card--lifetime .plan-countdown__timer {
  color: #FFE566;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55), 0 0 24px rgba(245,197,24,0.45);
}

/* ── FEATURES LIST ── */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
  width: 100%;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #D0DBE8;
  padding: 10px 6px;
  border-bottom: 1px solid rgba(28,42,58,0.8);
  line-height: 1.45;
  text-align: left;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
@media (hover: hover) {
  .plan-feature:hover {
    background: rgba(255,255,255,0.04);
    color: #F0F4FF;
  }
}

.plan-feature:last-child { border-bottom: none; }

.plan-feature span {
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-feature:last-child { border-bottom: none; }

/* Gold checkmark — premium features */
.plan-check--gold {
  width: 20px; height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(245,197,24,0.8);
  background: rgba(245,197,24,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: #F5C518;
}

/* Cyan circle checkmark — standard features */
.plan-check--cyan {
  width: 18px; height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(0,212,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #00D4FF;
}

/* ── CTA BUTTON ── */
.plan-cta {
  display: block;
  width: 100%;
  margin-bottom: 12px;
}

.plan-card--lifetime .plan-cta {
  background: linear-gradient(135deg, #F5C518 0%, #FFD700 100%);
}

/* ── SUB LINE ── */
.plan-subline {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #00D4FF;
  text-align: center;
  margin: 0;
}

.plan-card--lifetime .plan-subline { color: #F5C518; }

/* ══════════════════════════════════════════
   SMALL MOBILE — < 390px
══════════════════════════════════════════ */
@media (max-width: 389px) {
  .plans { padding: 44px 16px; }
  .plans-h2 { font-size: 26px; }
  .plans-sub { font-size: 13px; padding: 12px 14px; }
  .plan-brand { font-size: 12px; }
  .plan-name { font-size: 38px; }
  .plan-price { font-size: 52px; }
  .plan-per-month { font-size: 14px; }
  .plan-duration { font-size: 14px; }
  .plan-offer-banner { font-size: 15px; padding: 9px 14px; letter-spacing: 1px; }
  .plan-body { padding: 14px 14px 18px; }
  .plan-header { padding: 14px 16px 12px; }
  .plan-countdown { margin: 0 -14px 18px; padding: 11px 14px 9px; }
  .plan-countdown__timer { font-size: 34px; letter-spacing: 3px; }
  .plan-countdown__sub { font-size: 8px; letter-spacing: 1.5px; }
  .plan-subline { font-size: 12px; }
}

/* ══════════════════════════════════════════
   TABLET — 640px+  (2 columns)
══════════════════════════════════════════ */
@media (min-width: 640px) {
  .plans { padding: 64px 32px; }
  .plans-h2 { font-size: 38px; }
  .plans-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .plan-price { font-size: 72px; }
  .plan-brand { font-size: 12px; }
  .plan-name { font-size: 38px; }
  .plan-per-month { font-size: 15px; }
  .plan-duration { font-size: 15px; }
  .plan-offer-banner { font-size: 15px; padding: 10px 16px; }

  /* Restore horizontal trust bar on tablet+ */
  .plans-trust {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
  }
  .plans-trust__item { padding: 0 16px; font-size: 13px; }
  .plans-trust__divider {
    display: block;
    width: 1px; height: 14px;
    background: #1C2A3A;
    flex-shrink: 0;
  }
}

/* ── FEATURE TOGGLE BUTTON ── */
.plan-features-toggle {
  display: none;
  width: 100%;
  cursor: pointer;
  background: rgba(0,212,255,0.07);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 100px;
  color: #00D4FF;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  padding: 10px 14px;
  margin-top: 6px;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
  transition: background 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) {
  .plan-features-toggle:hover {
    background: rgba(0,212,255,0.14);
    border-color: rgba(0,212,255,0.4);
  }
}

/* ══════════════════════════════════════════
   MOBILE — < 640px  (conversion-critical)
══════════════════════════════════════════ */
@media (max-width: 639px) {

  /* Mobile order: Lifetime anchor → 12M hero → 24M analytical → 6M skeptic */
  .plans-grid {
    display: flex;
    flex-direction: column;
  }
  .plan-card--lifetime                    { order: 1; } /* pos 1 — price anchor €119,99 */
  .plan-card--featured                    { order: 2; } /* pos 2 — conversion zone €54,99 */
  .plans-grid > .plan-card:nth-child(3)   { order: 3; } /* pos 3 — analytical €79,99 */
  .plans-grid > .plan-card:nth-child(1)   { order: 4; } /* pos 4 — skeptic entry €29,99 */

  /* Stronger gold glow on featured card — must stand out in single-column */
  .plan-card--featured {
    box-shadow: 0 0 0 2px rgba(245,197,24,0.5),
                0 8px 40px rgba(245,197,24,0.22),
                inset 0 0 60px rgba(245,197,24,0.03);
  }

  /* Compact trust bar — 3 stacked pills take less vertical space */
  .plans-trust { gap: 6px; }
  .plans-trust__item { padding: 6px 12px; font-size: 12px; }
  .plans-trust__icon { font-size: 12px; }

  /* Plan name responsive — prevents overflow on narrow phones */
  .plan-name { font-size: clamp(34px, 9vw, 52px); }

  /* Price fits narrow screens — no overflow at 320px */
  .plan-price { font-size: clamp(52px, 14vw, 72px); }

  /* Offer banner compact on mobile */
  .plan-offer-banner { font-size: 16px; padding: 10px 14px; letter-spacing: 1px; }

  /* CTA button — reduce horizontal padding so long text fits on 320px cards */
  .plans .btn-gold {
    padding-left: 20px;
    padding-right: 20px;
    font-size: clamp(16px, 4.5vw, 21px);
    letter-spacing: 1.5px;
  }

  /* Subline — slightly smaller on mobile */
  .plan-subline { font-size: 13px; }

  /* Truncate feature list to 6 items — same 12 features × 4 cards = scroll fatigue */
  .plan-features .plan-feature:nth-child(n+7) {
    display: none;
  }
  .plan-features.expanded .plan-feature:nth-child(n+7) {
    display: flex;
  }
  .plan-features-toggle { display: block; }
}

/* ══════════════════════════════════════════
   DESKTOP — 1200px+  (4 columns)
══════════════════════════════════════════ */
@media (min-width: 1200px) {
  .plans { padding: 80px 40px; }
  .plans-h2 { font-size: 52px; }
  .plans-br { display: inline; }
  .plans-sub { font-size: 15px; padding: 16px 24px; }
  .plans-trust { flex-direction: row; flex-wrap: nowrap; gap: 0; }
  .plans-trust__item { padding: 0 18px; font-size: 13px; }
  .plans-trust__divider { display: block; width: 1px; height: 14px; background: #1C2A3A; flex-shrink: 0; }
  .plans-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1360px;
    margin: 0 auto;
  }
  .plan-price { font-size: 68px; }
  .plan-brand { font-size: 11px; }
  .plan-name { font-size: 28px; }
  .plan-per-month { font-size: 13px; }
  .plan-duration { font-size: 13px; }
  .plan-offer-banner { font-size: 13px; padding: 8px 16px; }
  .plan-feature { font-size: 12px; padding: 9px 6px; }
  .plan-header { padding: 20px 22px 18px; }
  .plan-body { padding: 22px 22px 26px; }
  .plan-subline { font-size: 13px; }
  /* CTA full width on desktop cards — restore default padding */
  .plans .btn-gold {
    padding-left: 36px;
    padding-right: 36px;
    font-size: clamp(14px, 1.2vw, 18px);
    letter-spacing: 1px;
  }
}

/* ── SKY COMPARISON STRIP ── */
.sky-strip {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  grid-template-rows: auto auto;
  gap: 14px 10px;
  background: #0C1220;
  border: 1px solid #1C2A3A;
  border-radius: 16px;
  padding: 20px 16px;
  margin: 36px auto 0;
  max-width: 680px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* Side panels */
.sky-strip__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
}
.sky-strip__side--sky {
  grid-column: 1; grid-row: 1;
  background: rgba(255,107,107,0.05);
  border: 1px solid rgba(255,107,107,0.22);
}
.sky-strip__side--us {
  grid-column: 3; grid-row: 1;
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.22);
}

/* Label — small caps above price */
.sky-strip__label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #B8CAD8;
}

/* Price — big Bebas number */
.sky-strip__side--sky .sky-strip__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: #FF6B6B;
  line-height: 1;
  letter-spacing: 0.01em;
}
.sky-strip__side--us .sky-strip__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: #00D4FF;
  line-height: 1;
  letter-spacing: 0.01em;
}
.sky-strip__price sub {
  font-size: 0.5em;
  letter-spacing: 0;
  vertical-align: baseline;
  line-height: 1;
}

/* Tag pills below price */
.sky-strip__tags {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.sky-tag, .us-tag {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.sky-tag {
  background: rgba(255,107,107,0.1);
  color: #FF9999;
  border: 1px solid rgba(255,107,107,0.2);
}
.us-tag {
  background: rgba(0,212,255,0.1);
  color: #00D4FF;
  border: 1px solid rgba(0,212,255,0.2);
}

/* VS badge */
.sky-strip__vs {
  grid-column: 2; grid-row: 1;
  align-self: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  background: #1C2A3A;
  color: #F0F4FF;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

/* Du Sparst row — full width */
.sky-strip__save {
  grid-column: 1 / -1; grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: rgba(0,212,255,0.07);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 10px;
  padding: 14px 20px;
}
.sky-strip__save-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #B8CAD8;
}
.sky-strip__save-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: #00D4FF;
  line-height: 1;
  letter-spacing: 0.02em;
}
.sky-strip__save-note {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: #B8CAD8;
}

/* Desktop: single row — fills full section width */
@media (min-width: 601px) {
  .sky-strip {
    grid-template-columns: 1fr 72px 1fr 320px;
    grid-template-rows: 1fr;
    align-items: stretch;
    max-width: none;
    width: 100%;
    padding: 36px 48px;
    gap: 0 24px;
    border-radius: 22px;
    margin: 40px 0 0;
  }
  .sky-strip__side--sky { grid-column: 1; grid-row: 1; padding: 28px 24px; }
  .sky-strip__vs        { grid-column: 2; grid-row: 1; width: 56px; height: 56px; font-size: 1.3rem; }
  .sky-strip__side--us  { grid-column: 3; grid-row: 1; padding: 28px 24px; }
  .sky-strip__save      { grid-column: 4; grid-row: 1; padding: 28px 32px; }
  .sky-strip__label     { font-size: 14px; letter-spacing: 0.18em; }
  .sky-strip__side--sky .sky-strip__price,
  .sky-strip__side--us  .sky-strip__price { font-size: 5.5rem; }
  .sky-strip__save-amount { font-size: 4rem; }
  .sky-strip__save-label  { font-size: 13px; letter-spacing: 0.18em; }
  .sky-strip__save-note   { font-size: 14px; }
  .sky-tag, .us-tag { font-size: 13px; padding: 4px 14px; }
}
