/* vd-styles.css — original stylesheet for Tesla Voordeelwijzer.
   Soft illustrated benefit-explainer. All classes vd- prefixed. */

/* ---- Design tokens ---------------------------------------------------- */
:root {
  --vd-font: "Optima", "Segoe UI", "Gill Sans Nova", sans-serif;
  --vd-bg: #f7f2e9;
  --vd-surface: #fffdf8;
  --vd-surface-2: #fbf5ea;
  --vd-ink: #2c2b33;
  --vd-muted: #57545f;
  --vd-line: #e7dfcf;
  --vd-accent: #17806a;
  --vd-accent-strong: #0f6553;
  --vd-accent-soft: #dcefe7;
  --vd-accent-2: #d9683f;
  --vd-mint: #cdeadd;
  --vd-peach: #fbe0d0;
  --vd-lavender: #e6def4;
  --vd-sky: #d6e8f5;
  --vd-butter: #f7ecc9;
  --vd-illus-line: #3a3a44;
  --vd-illus-paper: #fffdf8;
  --vd-shadow: 0 10px 30px rgba(60, 45, 20, 0.10);
  --vd-shadow-sm: 0 3px 10px rgba(60, 45, 20, 0.08);
  --vd-radius: 22px;
  --vd-radius-sm: 14px;
  --vd-maxw: 1080px;
  --vd-focus: #0f6553;
}
:root[data-theme="dark"] {
  --vd-bg: #16181d;
  --vd-surface: #1e212a;
  --vd-surface-2: #242835;
  --vd-ink: #edeae2;
  --vd-muted: #b7b4c0;
  --vd-line: #343a47;
  --vd-accent: #4fc2a2;
  --vd-accent-strong: #74d5ba;
  --vd-accent-soft: #1f3a34;
  --vd-accent-2: #f0996b;
  --vd-mint: #234a41;
  --vd-peach: #4a3529;
  --vd-lavender: #322c46;
  --vd-sky: #22384a;
  --vd-butter: #45411f;
  --vd-illus-line: #d7d4c8;
  --vd-illus-paper: #2a2e39;
  --vd-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
  --vd-shadow-sm: 0 3px 12px rgba(0, 0, 0, 0.4);
  --vd-focus: #74d5ba;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --vd-bg: #16181d; --vd-surface: #1e212a; --vd-surface-2: #242835;
    --vd-ink: #edeae2; --vd-muted: #b7b4c0; --vd-line: #343a47;
    --vd-accent: #4fc2a2; --vd-accent-strong: #74d5ba; --vd-accent-soft: #1f3a34;
    --vd-accent-2: #f0996b; --vd-mint: #234a41; --vd-peach: #4a3529;
    --vd-lavender: #322c46; --vd-sky: #22384a; --vd-butter: #45411f;
    --vd-illus-line: #d7d4c8; --vd-illus-paper: #2a2e39;
    --vd-shadow: 0 12px 34px rgba(0,0,0,.45); --vd-shadow-sm: 0 3px 12px rgba(0,0,0,.4);
    --vd-focus: #74d5ba;
  }
}

/* ---- Base ------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--vd-font);
  color: var(--vd-ink);
  background: var(--vd-bg);
  line-height: 1.6;
  font-size: 1.02rem;
  overflow-x: hidden;
}
img, svg { max-width: 100%; }
a { color: var(--vd-accent-strong); text-underline-offset: 3px; }
a:hover { color: var(--vd-accent); }
h1, h2, h3, h4 { line-height: 1.2; letter-spacing: -0.01em; }
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); margin: 0 0 .5em; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 2.2em 0 .6em; }
h3 { font-size: clamp(1.12rem, 2vw, 1.35rem); margin: 1.4em 0 .5em; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--vd-focus); outline-offset: 2px; border-radius: 6px; }
.vd-visually-hidden, .vd-skip {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.vd-skip:focus {
  position: fixed; top: 12px; left: 12px; width: auto; height: auto; clip: auto;
  background: var(--vd-accent-strong); color: #fff; padding: 10px 16px;
  border-radius: 10px; z-index: 100;
}

/* ---- Layout shells ---------------------------------------------------- */
.vd-main { display: block; }
.vd-band { padding: 3rem 1.25rem; }
.vd-band__inner, .vd-shell { max-width: var(--vd-maxw); margin: 0 auto; }
.vd-band--soft { background: var(--vd-surface-2); }
.vd-band--tint { background: linear-gradient(180deg, var(--vd-accent-soft), transparent); }
.vd-prose { max-width: 46rem; margin: 0 auto; }
.vd-prose h2 + p, .vd-prose h3 + p { margin-top: .2em; }

/* ---- Topbar / nav ----------------------------------------------------- */
.vd-topbar { position: sticky; top: 0; z-index: 40; background: color-mix(in srgb, var(--vd-bg) 88%, transparent); backdrop-filter: blur(8px); border-bottom: 1px solid var(--vd-line); }
.vd-topbar__inner { max-width: var(--vd-maxw); margin: 0 auto; display: flex; align-items: center; gap: 1rem; padding: .6rem 1.25rem; }
.vd-brand { display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; text-decoration: none; color: var(--vd-ink); font-size: 1.15rem; }
.vd-brand__name { white-space: nowrap; }
.vd-logomark { flex: 0 0 auto; }
.vd-nav { margin-left: auto; }
.vd-nav ul { list-style: none; display: flex; gap: .35rem; margin: 0; padding: 0; flex-wrap: wrap; }
.vd-nav a { display: inline-block; padding: .5rem .7rem; border-radius: 10px; text-decoration: none; color: var(--vd-ink); font-size: .96rem; }
.vd-nav a:hover { background: var(--vd-accent-soft); }
.vd-nav a[aria-current="page"] { background: var(--vd-accent-soft); color: var(--vd-accent-strong); font-weight: 700; }
.vd-themetoggle { border: 1px solid var(--vd-line); background: var(--vd-surface); color: var(--vd-ink); width: 40px; height: 40px; border-radius: 12px; cursor: pointer; font-size: 1.1rem; flex: 0 0 auto; }
.vd-themetoggle:hover { background: var(--vd-accent-soft); }
.vd-navtoggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--vd-line); background: var(--vd-surface); border-radius: 12px; cursor: pointer; position: relative; }
.vd-navtoggle__bar, .vd-navtoggle__bar::before, .vd-navtoggle__bar::after { content: ""; position: absolute; left: 11px; width: 22px; height: 2.5px; background: var(--vd-ink); border-radius: 2px; transition: transform .2s; }
.vd-navtoggle__bar { top: 21px; }
.vd-navtoggle__bar::before { top: -7px; } .vd-navtoggle__bar::after { top: 7px; }

@media (max-width: 860px) {
  .vd-navtoggle { display: block; order: 3; }
  .vd-themetoggle { order: 2; margin-left: auto; }
  .vd-nav { order: 4; flex-basis: 100%; margin-left: 0; display: none; }
  .vd-nav[data-open="true"] { display: block; }
  .vd-nav ul { flex-direction: column; gap: .15rem; padding-bottom: .6rem; }
  .vd-nav a { display: block; }
}

/* ---- Lead / journey intro -------------------------------------------- */
.vd-lead { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; max-width: var(--vd-maxw); margin: 0 auto; }
.vd-lead__art { justify-self: center; }
.vd-eyebrow { display: inline-block; font-weight: 700; color: var(--vd-accent-strong); background: var(--vd-accent-soft); padding: .3rem .8rem; border-radius: 999px; font-size: .82rem; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 1rem; }
.vd-lede { font-size: 1.15rem; color: var(--vd-muted); max-width: 34rem; }
@media (max-width: 820px) { .vd-lead { grid-template-columns: 1fr; } .vd-lead__art { order: -1; } }

/* ---- Benefit tag (the referral-code unit) ----------------------------- */
.vd-benefittag {
  position: relative; background: var(--vd-mint); border: 2.5px solid var(--vd-accent);
  border-radius: var(--vd-radius); padding: 1.4rem 1.4rem 1.5rem; max-width: 26rem;
  box-shadow: var(--vd-shadow); overflow: hidden;
}
.vd-benefittag__ribbon { position: absolute; top: -30px; right: -30px; width: 90px; height: 90px; background: var(--vd-accent-2); opacity: .18; border-radius: 50%; }
.vd-benefittag__label { margin: 0 0 .5rem; font-weight: 700; color: var(--vd-accent-strong); }
.vd-benefittag__slot {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--vd-illus-paper); border: 2px dashed var(--vd-accent);
  border-radius: var(--vd-radius-sm); min-height: 64px; padding: .5rem 1rem; margin-bottom: 1rem;
}
.vd-benefittag__icon { display: inline-flex; }
.vd-benefittag__code { font-size: clamp(1.3rem, 3vw, 1.7rem); font-weight: 700; letter-spacing: .06em; color: var(--vd-ink); line-height: 1.1; word-break: break-all; text-align: center; }
.vd-benefittag__actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.vd-benefittag__actions > * { flex: 1 1 auto; }
.vd-benefittag__note { margin: .9rem 0 0; font-size: .86rem; color: var(--vd-muted); }
.vd-benefittag[data-copied="true"] .vd-benefittag__copy { background: var(--vd-accent-strong); }

/* ---- Actions / buttons ------------------------------------------------ */
.vd-action {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  font: inherit; font-weight: 700; text-decoration: none; cursor: pointer;
  padding: .72rem 1.2rem; border-radius: 999px; border: 2px solid transparent; text-align: center;
  transition: transform .08s ease, background .15s ease, color .15s ease;
}
.vd-action:active { transform: translateY(1px); }
.vd-action--solid { background: var(--vd-accent); color: #fff; }
:root[data-theme="dark"] .vd-action--solid { color: #06231c; }
.vd-action--solid:hover { background: var(--vd-accent-strong); color: #fff; }
:root[data-theme="dark"] .vd-action--solid:hover { color: #06231c; }
.vd-action--soft { background: var(--vd-illus-paper); color: var(--vd-accent-strong); border-color: var(--vd-accent); }
.vd-action--soft:hover { background: var(--vd-accent-soft); }
.vd-action--ghost { background: transparent; color: var(--vd-accent-strong); border-color: var(--vd-line); }
.vd-action--ghost:hover { border-color: var(--vd-accent); background: var(--vd-accent-soft); }
.vd-ctarow { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.4rem; }

/* ---- Verified stamp / byline ----------------------------------------- */
.vd-verified { display: inline-flex; align-items: center; gap: .45rem; font-size: .9rem; color: var(--vd-muted); background: var(--vd-surface); border: 1px solid var(--vd-line); padding: .35rem .8rem; border-radius: 999px; }
.vd-byline { display: flex; align-items: center; gap: .7rem; color: var(--vd-muted); font-size: .95rem; margin: 1.2rem 0 0; }
.vd-byline__avatar { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--vd-lavender); color: var(--vd-accent-strong); font-weight: 700; flex: 0 0 auto; }

/* ---- Breadcrumb ------------------------------------------------------- */
.vd-crumb { max-width: var(--vd-maxw); margin: 0 auto; padding: 1rem 1.25rem 0; }
.vd-crumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; font-size: .88rem; color: var(--vd-muted); }
.vd-crumb a { color: var(--vd-muted); text-decoration: none; }
.vd-crumb a:hover { color: var(--vd-accent); }
.vd-crumb__sep { opacity: .5; }

/* ---- Notes / callouts ------------------------------------------------- */
.vd-note { border-radius: var(--vd-radius-sm); padding: 1rem 1.2rem; margin: 1.4rem 0; border-left: 5px solid var(--vd-accent); background: var(--vd-surface); box-shadow: var(--vd-shadow-sm); }
.vd-note--warn { border-left-color: var(--vd-accent-2); background: var(--vd-peach); }
.vd-note--info { border-left-color: var(--vd-accent); background: var(--vd-sky); }
.vd-note--flux { border-left-color: var(--vd-accent-2); background: var(--vd-butter); }
.vd-note__title { font-weight: 700; margin: 0 0 .3rem; }
.vd-note__body > :last-child { margin-bottom: 0; }

/* ---- Chips ------------------------------------------------------------ */
.vd-chiprow { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 1.2rem 0; }
.vd-chip { background: var(--vd-lavender); color: var(--vd-ink); padding: .35rem .8rem; border-radius: 999px; font-size: .86rem; font-weight: 600; }

/* ---- Panels / grids --------------------------------------------------- */
.vd-grid { display: grid; gap: 1.2rem; }
.vd-grid--2 { grid-template-columns: repeat(2, 1fr); }
.vd-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 780px) { .vd-grid--2, .vd-grid--3 { grid-template-columns: 1fr; } }
.vd-panel { background: var(--vd-surface); border: 1px solid var(--vd-line); border-radius: var(--vd-radius); padding: 1.4rem; box-shadow: var(--vd-shadow-sm); }
.vd-panel__art { width: 96px; height: 96px; margin-bottom: .6rem; }
.vd-panel__art svg { width: 96px; height: 96px; }
.vd-panel__title { margin: 0 0 .4rem; }
.vd-panel--mint { background: var(--vd-mint); }
.vd-panel--peach { background: var(--vd-peach); }
.vd-panel--sky { background: var(--vd-sky); }
.vd-panel--butter { background: var(--vd-butter); }
.vd-panel--lav { background: var(--vd-lavender); }
.vd-panel > :last-child { margin-bottom: 0; }

/* status badges for model grid */
.vd-status { display: inline-block; font-size: .78rem; font-weight: 700; padding: .2rem .6rem; border-radius: 999px; margin-bottom: .5rem; }
.vd-status--yes { background: var(--vd-accent-soft); color: var(--vd-accent-strong); }
.vd-status--no { background: color-mix(in srgb, var(--vd-accent-2) 22%, transparent); color: var(--vd-accent-2); }

/* ---- Illustration figure --------------------------------------------- */
.vd-illus { display: block; height: auto; }
.vd-figure { text-align: center; margin: 2rem auto; max-width: 460px; }
.vd-spark { vertical-align: middle; }

/* ---- Illustrated benefit walkthrough (the visual-narrative journey) --- */
.vd-journey { max-width: 62rem; margin: 2.2rem auto 0; display: grid; gap: 1.4rem; position: relative; }
.vd-journey__step {
  position: relative; background: var(--vd-surface); border: 1px solid var(--vd-line);
  border-radius: var(--vd-radius); box-shadow: var(--vd-shadow-sm);
  padding: 1.6rem 1.6rem 1.6rem 1.7rem; display: grid; grid-template-columns: 148px 1fr;
  gap: 1.6rem; align-items: center;
}
.vd-journey__step::before {
  content: ""; position: absolute; left: 50%; bottom: -1.4rem; width: 3px; height: 1.4rem;
  transform: translateX(-50%); background: repeating-linear-gradient(var(--vd-accent) 0 4px, transparent 4px 9px);
}
.vd-journey__step:last-child::before { display: none; }
.vd-journey__step:nth-child(even) { grid-template-columns: 1fr 148px; }
.vd-journey__step:nth-child(even) .vd-journey__art { order: 2; }
.vd-journey__art { width: 148px; height: 148px; justify-self: center; }
.vd-journey__art svg { width: 148px; height: 148px; }
.vd-journey__body > :last-child { margin-bottom: 0; }
.vd-journey__num {
  display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: 50%; background: var(--vd-accent); color: #fff; font-weight: 700;
  font-size: 1rem; margin-bottom: .6rem;
}
:root[data-theme="dark"] .vd-journey__num { color: #06231c; }
.vd-journey__title { margin: 0 0 .4rem; }
@media (max-width: 720px) {
  .vd-journey__step, .vd-journey__step:nth-child(even) { grid-template-columns: 1fr; }
  .vd-journey__art, .vd-journey__step:nth-child(even) .vd-journey__art { order: -1; }
}

/* ---- FAQ -------------------------------------------------------------- */
.vd-faq { max-width: 46rem; margin: 1rem auto 0; }
.vd-faq__item { border: 1px solid var(--vd-line); border-radius: var(--vd-radius-sm); background: var(--vd-surface); margin-bottom: .7rem; overflow: hidden; }
.vd-faq__q { cursor: pointer; padding: 1rem 1.2rem; font-weight: 700; list-style: none; position: relative; padding-right: 2.6rem; }
.vd-faq__q::-webkit-details-marker { display: none; }
.vd-faq__q::after { content: "+"; position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--vd-accent); }
.vd-faq__item[open] .vd-faq__q::after { content: "–"; }
.vd-faq__a { padding: 0 1.2rem 1.1rem; color: var(--vd-muted); }
.vd-faq__a > :last-child { margin-bottom: 0; }

/* ---- Tables ----------------------------------------------------------- */
.vd-tablewrap { overflow-x: auto; margin: 1.4rem 0; border: 1px solid var(--vd-line); border-radius: var(--vd-radius-sm); }
.vd-table { width: 100%; border-collapse: collapse; min-width: 460px; }
.vd-table th, .vd-table td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--vd-line); }
.vd-table th { background: var(--vd-surface-2); font-weight: 700; }
.vd-table tr:last-child td { border-bottom: 0; }

/* ---- Sources / disclosure -------------------------------------------- */
.vd-sources { max-width: 46rem; margin: 2rem auto 0; background: var(--vd-surface-2); border-radius: var(--vd-radius-sm); padding: 1.2rem 1.4rem; }
.vd-sources__h { margin: 0 0 .5rem; font-size: 1.1rem; }
.vd-sources__note { font-size: .9rem; color: var(--vd-muted); }
.vd-sources ul { margin: .5rem 0 0; padding-left: 1.1rem; }
.vd-sources li { margin-bottom: .4rem; }
.vd-disclosure { font-size: .88rem; color: var(--vd-muted); max-width: 64rem; margin: 0 auto; }
.vd-disclosure code { background: var(--vd-surface-2); padding: .1rem .3rem; border-radius: 5px; }

/* ---- Calculator ------------------------------------------------------- */
.vd-calc { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; align-items: start; max-width: var(--vd-maxw); margin: 0 auto; }
@media (max-width: 820px) { .vd-calc { grid-template-columns: 1fr; } }
.vd-calc__form, .vd-calc__out { background: var(--vd-surface); border: 1px solid var(--vd-line); border-radius: var(--vd-radius); padding: 1.5rem; box-shadow: var(--vd-shadow-sm); }
.vd-field { margin-bottom: 1.1rem; }
.vd-field > label { display: block; font-weight: 700; margin-bottom: .4rem; }
.vd-field small { color: var(--vd-muted); font-weight: 400; }
.vd-input, .vd-select { width: 100%; font: inherit; padding: .65rem .8rem; border-radius: 12px; border: 1.5px solid var(--vd-line); background: var(--vd-surface-2); color: var(--vd-ink); }
.vd-segmented { display: inline-flex; border: 1.5px solid var(--vd-line); border-radius: 999px; overflow: hidden; }
.vd-segmented button { font: inherit; font-weight: 600; border: 0; background: var(--vd-surface-2); color: var(--vd-ink); padding: .55rem 1.1rem; cursor: pointer; }
.vd-segmented button[aria-pressed="true"] { background: var(--vd-accent); color: #fff; }
:root[data-theme="dark"] .vd-segmented button[aria-pressed="true"] { color: #06231c; }
.vd-outline { display: flex; justify-content: space-between; gap: 1rem; padding: .75rem 0; border-bottom: 1px dashed var(--vd-line); }
.vd-outline:last-of-type { border-bottom: 0; }
.vd-outline__k { color: var(--vd-muted); }
.vd-outline__v { font-weight: 700; text-align: right; }
.vd-outline__v a { font-size: .78rem; display: block; font-weight: 400; }
.vd-outline__note { display: block; font-size: .78rem; font-weight: 400; color: var(--vd-muted); }

/* ---- Blog ------------------------------------------------------------- */
.vd-postlist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; max-width: var(--vd-maxw); margin: 0 auto; }
@media (max-width: 720px) { .vd-postlist { grid-template-columns: 1fr; } }
.vd-postcard { display: flex; flex-direction: column; background: var(--vd-surface); border: 1px solid var(--vd-line); border-radius: var(--vd-radius); padding: 1.3rem; text-decoration: none; color: inherit; box-shadow: var(--vd-shadow-sm); transition: transform .1s; }
.vd-postcard:hover { transform: translateY(-3px); }
.vd-postcard__meta { font-size: .82rem; color: var(--vd-muted); margin-bottom: .4rem; }
.vd-postcard h3 { margin: 0 0 .4rem; color: var(--vd-accent-strong); }
.vd-article { max-width: 44rem; margin: 0 auto; }
.vd-article img, .vd-article figure { border-radius: var(--vd-radius-sm); }
.vd-newsphoto { margin: 1.6rem 0; }
.vd-newsphoto__img { width: 100%; height: auto; display: block; border-radius: var(--vd-radius-sm); background: var(--vd-surface-2); }
.vd-newsphoto__cap { font-size: .8rem; color: var(--vd-muted); margin-top: .5rem; }
.vd-relnav { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* ---- Footer ----------------------------------------------------------- */
.vd-footer { background: var(--vd-surface-2); border-top: 1px solid var(--vd-line); margin-top: 3rem; }
.vd-footer__inner { max-width: var(--vd-maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding: 2.6rem 1.25rem 1.6rem; }
@media (max-width: 720px) { .vd-footer__inner { grid-template-columns: 1fr; gap: 1.4rem; } }
.vd-footer__tag { color: var(--vd-muted); max-width: 22rem; }
.vd-footer__h { font-size: 1rem; margin: .4rem 0 .6rem; }
.vd-footer__col ul { list-style: none; margin: 0; padding: 0; }
.vd-footer__col li { margin-bottom: .4rem; }
.vd-footer__col a { color: var(--vd-ink); text-decoration: none; }
.vd-footer__col a:hover { color: var(--vd-accent); }
.vd-footer__legal { max-width: var(--vd-maxw); margin: 0 auto; padding: 1.4rem 1.25rem 2.2rem; border-top: 1px solid var(--vd-line); }
.vd-footer__copy { text-align: center; color: var(--vd-muted); font-size: .84rem; margin: 1rem 0 0; }

/* ---- Misc ------------------------------------------------------------- */
.vd-center { text-align: center; }
.vd-tighttop { margin-top: .3rem; }
.vd-list-clean { list-style: none; padding: 0; }
.vd-list-clean li { padding-left: 1.6rem; position: relative; margin-bottom: .6rem; }
.vd-list-clean li::before { content: "✓"; position: absolute; left: 0; color: var(--vd-accent); font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
