/* =========================================================================
   Superior Point Pool Service — shared stylesheet

   Deliberately plain. This should read like a working local pool company's
   website, not a designed marketing page: square-ish corners, flat colours,
   1px borders instead of soft shadows, no hover animation, ordinary type.
   Theme colours are injected per site as :root custom properties by the build.
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --ink: #1e2a33;
  --ink-soft: #55636e;
  --line: #d6dde3;
  --bg-soft: #f2f5f7;
  --white: #fff;
  --radius: 4px;
  --maxw: 1180px;
  --font: Arial, "Helvetica Neue", Helvetica, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --success: #17794a;
  --danger: #b4331f;
}

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }

/* <picture> generates no box of its own, so the <img> inherits the parent's
   layout context (needed for the hero fill and for aspect-ratio cards). */
picture { display: contents; }

/* Icons are emitted as bare <svg viewBox> with no width/height, so they need a
   default size. Component rules below override this where it matters. */
svg { width: 1.1em; height: 1.1em; flex: none; }

a { color: var(--primary); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 .55em; font-weight: 700; color: var(--ink); }
h1 { font-size: clamp(1.75rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.4rem, 2.8vw, 1.85rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }
p  { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.4em; }
li { margin-bottom: .4em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 16px; }

.section { padding: clamp(2rem, 5vw, 3.25rem) 0; }
.section-sm { padding: 1.25rem 0; }
.section-soft { background: var(--bg-soft); }
.section-ink { background: var(--primary-dark); color: #dbe7ef; }
.section-ink h2, .section-ink h3 { color: #fff; }
.section-ink a { color: #fff; }

/* Small label above a heading. Plain text, not a designed chip. */
.eyebrow {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: .3rem;
}
.section-ink .eyebrow { color: var(--highlight); }

.lead { font-size: 1.05rem; color: var(--ink-soft); }
.center { text-align: center; }
.section-head { max-width: 700px; margin: 0 auto 1.75rem; text-align: center; }
.section-head p:last-child { margin-bottom: 0; }

/* ---------- skip link ---------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--primary); color: #fff; padding: .7rem 1rem;
}
.skip:focus { left: 0; }

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

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  font: inherit; font-weight: 700; line-height: 1.2;
  padding: .75rem 1.25rem;
  border-radius: var(--radius); border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn { white-space: nowrap; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-call { background: var(--highlight); color: #2a1d07; }
.btn-call:hover { background: #e59a1a; color: #2a1d07; }
.btn-outline { background: #fff; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; border-color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--primary-dark); }
.btn-lg { padding: .9rem 1.5rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.btn-row.center { justify-content: center; }

/* ---------- header ---------- */
/* Three rows: coverage strip, brand + phone, full-width nav bar. The nav gets
   its own row so eight menu items never have to compete with the logo. */
.topbar {
  background: var(--primary-dark); color: #cfe0ec;
  font-size: .82rem; padding: .4rem 0;
}
.topbar .wrap { display: flex; flex-wrap: wrap; gap: .2rem 1.2rem; align-items: center; justify-content: center; text-align: center; }
.topbar span { display: inline-flex; align-items: center; gap: .35rem; }
.topbar svg { width: 14px; height: 14px; }

.site-header { background: #fff; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .8rem 16px; max-width: var(--maxw); margin: 0 auto;
}

.logo { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.logo-mark { width: 46px; height: 46px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-entity { font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.logo-tag { font-size: 1.05rem; font-weight: 700; color: var(--primary); }
@media (min-width: 700px) { .logo-tag { font-size: 1.3rem; white-space: nowrap; } .logo-mark { width: 52px; height: 52px; } }

.header-right { display: flex; align-items: center; gap: .7rem; }

.header-phone { display: none; align-items: center; gap: .5rem; text-decoration: none; color: var(--ink); }
@media (min-width: 620px) { .header-phone { display: flex; } }
.header-phone svg { width: 26px; height: 26px; color: var(--accent); }
.header-phone-text { display: flex; flex-direction: column; line-height: 1.15; }
.header-phone-label { font-size: .7rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .04em; font-weight: 700; }
.header-phone-number { font-size: 1.3rem; font-weight: 700; color: var(--primary); white-space: nowrap; }
.header-phone:hover .header-phone-number { color: var(--accent); }

.header-quote { display: none; }
@media (min-width: 860px) { .header-quote { display: inline-flex; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; cursor: pointer; color: var(--primary);
}
.nav-toggle svg { width: 24px; height: 24px; }

/* Full-width nav bar. Its own row, so there is room for every item. */
.navbar { display: none; background: var(--primary); }
@media (min-width: 1000px) {
  .navbar { display: block; }
  .nav-toggle { display: none; }
  .navbar .wrap { display: flex; flex-wrap: nowrap; align-items: stretch; padding: 0 16px; }
  .navbar a {
    display: flex; align-items: center;
    color: #fff; text-decoration: none; font-weight: 700; font-size: .93rem;
    padding: .8rem .95rem; white-space: nowrap;
  }
  .navbar a:hover { background: rgba(255, 255, 255, .15); color: #fff; }
  .navbar a[aria-current="page"] { background: var(--accent); color: #fff; }
}

.has-drop { position: relative; display: flex; }
.has-drop > a::after { content: " \25be"; margin-left: .3rem; font-size: .8em; }
.drop {
  position: absolute; top: 100%; left: 0; min-width: 250px;
  background: var(--primary-dark); border-top: 2px solid var(--accent);
  padding: .2rem 0; display: none; z-index: 70;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { display: block; }
.navbar .drop a { display: block; padding: .6rem .95rem; font-size: .9rem; font-weight: 400; }

.mobile-nav { display: none; border-top: 1px solid var(--line); background: #fff; max-height: 75vh; overflow-y: auto; }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0 16px 1rem; }
.mobile-nav li { margin: 0; }
.mobile-nav a { display: block; padding: .7rem .2rem; text-decoration: none; color: var(--ink); font-weight: 700; border-bottom: 1px solid var(--line); }
.mobile-nav .sub a { padding-left: 1rem; font-weight: 400; font-size: .92rem; color: var(--ink-soft); }

/* ---------- hero ---------- */
.hero { position: relative; color: #fff; background: var(--primary-dark); }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: rgba(9, 42, 63, .82); }
.hero-inner {
  position: relative; max-width: var(--maxw); margin: 0 auto; padding: 2rem 16px;
  display: grid; gap: 2rem; align-items: start;
}
@media (min-width: 980px) { .hero-inner { grid-template-columns: 1fr 400px; padding: 2.75rem 16px; } }

.hero h1 { color: #fff; margin-bottom: .45rem; }
.hero-sub { font-size: 1.05rem; color: #d7e6f1; max-width: 34em; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .4rem .5rem; margin: 1.1rem 0 1.2rem; padding: 0; list-style: none; }
.hero-badges li {
  display: inline-flex; align-items: center; gap: .35rem; margin: 0;
  border: 1px solid rgba(255,255,255,.4);
  padding: .3rem .6rem; font-size: .85rem; font-weight: 700;
}
.hero-badges svg { width: 14px; height: 14px; color: var(--highlight); }

.offer-flag {
  display: inline-block;
  background: var(--highlight); color: #2a1d07;
  padding: .5rem .9rem; font-weight: 700; margin-bottom: .9rem;
}
.offer-flag .big { font-size: 1.05rem; }
.offer-flag .small { font-weight: 400; font-size: .92rem; }

/* ---------- coverage callout ---------- */
.coverage-call { border: 1px solid var(--line); background: var(--bg-soft); padding: .9rem 1rem; margin-top: 1.25rem; }
.coverage-call--light { border-color: rgba(255,255,255,.45); background: rgba(0,0,0,.22); }
.coverage-serving {
  margin: 0 0 .2rem; font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .09em; color: var(--accent); display: flex; align-items: center; gap: .3rem;
}
.coverage-call--light .coverage-serving { color: var(--highlight); }
.coverage-serving svg { width: 14px; height: 14px; }
.coverage-main {
  margin: 0; font-size: clamp(1.05rem, 2.6vw, 1.4rem); font-weight: 700;
  text-transform: uppercase; letter-spacing: .02em; line-height: 1.25;
}
.coverage-call--light .coverage-main { color: #fff; }
.coverage-cities { margin: .45rem 0 0; font-size: .88rem; font-weight: 700; color: var(--ink-soft); line-height: 1.7; }
.coverage-call--light .coverage-cities { color: #cfe0ec; }

.cta-serving {
  margin: 0 0 .2rem; font-size: 1.05rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .03em; color: var(--highlight);
}

/* ---------- quote form ---------- */
.quote-card { background: #fff; color: var(--ink); border: 1px solid var(--line); border-top: 4px solid var(--accent); padding: 1.25rem; }
.quote-card h2 { font-size: 1.25rem; margin-bottom: .2rem; }
.quote-card .form-intro { font-size: .9rem; color: var(--ink-soft); margin-bottom: .9rem; }

.field { margin-bottom: .7rem; }
.field label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: .25rem; }
.field .req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem;
  padding: .6rem .65rem; border: 1px solid #b9c4cd; border-radius: var(--radius);
  background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field textarea { min-height: 80px; resize: vertical; }
.field-row { display: grid; gap: 0 .7rem; }
@media (min-width: 520px) { .field-row { grid-template-columns: 1fr 1fr; } }

.consent { display: flex; gap: .5rem; align-items: flex-start; margin: .9rem 0; }
.consent input { margin-top: .2rem; width: 17px; height: 17px; flex: none; }
.consent label { font-size: .76rem; line-height: 1.45; color: var(--ink-soft); }
.form-footnote { font-size: .76rem; color: var(--ink-soft); margin: .7rem 0 0; line-height: 1.45; }

/* honeypot — hidden from humans, visible to bots */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.alert { padding: .8rem 1rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: .92rem; }
.alert-ok { background: #e6f6ee; border: 1px solid #b6e0cb; color: #10553a; }
.alert-err { background: #fdecea; border: 1px solid #f0bdb5; color: #8f2718; }

/* ---------- offer band ---------- */
.offer-band { background: var(--accent); color: #fff; text-align: center; padding: 2rem 0; }
.offer-band h2 { color: #fff; margin-bottom: .2rem; }
.offer-band .eyebrow { color: #fff; }
.offer-price { font-size: clamp(2.4rem, 7vw, 3.4rem); font-weight: 700; line-height: 1; }
.offer-price sup { font-size: .45em; top: -.55em; }
.offer-price .per { font-size: .3em; font-weight: 700; }
.offer-band .fineprint { font-size: .82rem; max-width: 46em; margin: .9rem auto 0; }
.offer-strike { text-decoration: line-through; }

/* ---------- pricing page ---------- */
.price-hero { border: 1px solid var(--line); border-top: 4px solid var(--accent); padding: 1.75rem 1.25rem; text-align: center; max-width: 780px; margin: 0 auto; }
.price-hero .eyebrow { color: var(--ink-soft); font-size: .95rem; }
.price-main { font-size: clamp(3rem, 10vw, 4.5rem); font-weight: 700; line-height: 1; color: var(--primary); }
.price-main sup { font-size: .4em; top: -.6em; }
.price-main .per { font-size: .26em; font-weight: 700; color: var(--ink-soft); margin-left: .2em; }
.price-sub { font-size: 1.05rem; margin-top: .5rem; }
.price-promo { background: #fff8e8; border: 1px solid var(--highlight); padding: 1rem 1.1rem; margin-top: 1.25rem; text-align: left; }
.promo-kicker { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #8a5f06; margin: 0 0 .3rem; display: flex; align-items: center; gap: .35rem; }
.promo-line { font-size: 1.25rem; margin: 0 0 .35rem; }
.promo-detail { font-size: .92rem; color: var(--ink-soft); margin: 0; }
.price-fineprint { font-size: .82rem; color: var(--ink-soft); margin: 1.1rem 0 0; }

/* ---------- grids & cards ---------- */
.grid { display: grid; gap: 1.1rem; }
.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
@media (min-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card { background: #fff; border: 1px solid var(--line); padding: 1.15rem; }
.card h3 { margin-bottom: .4rem; }
.card p:last-child { margin-bottom: 0; }
a.card { text-decoration: none; color: inherit; display: block; }
a.card:hover { border-color: var(--accent); }
a.card:hover h3 { color: var(--accent); }
.card-icon { color: var(--accent); margin-bottom: .5rem; }
.card-icon svg { width: 30px; height: 30px; }
.card-more { display: inline-block; margin-top: .7rem; font-weight: 700; color: var(--accent); font-size: .9rem; }

.media-card { padding: 0; }
.media-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.media-card .media-body { padding: 1rem 1.1rem 1.2rem; }

/* ---------- checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.checklist li { display: flex; gap: .55rem; align-items: flex-start; margin: 0; }
.checklist svg { width: 19px; height: 19px; color: var(--accent); margin-top: 3px; }
.section-ink .checklist svg { color: var(--highlight); }

/* ---------- split ---------- */
.split { display: grid; gap: 1.75rem; align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split.reverse .split-media { order: 2; } }
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 1px solid var(--line); }

/* ---------- steps ---------- */
.steps { display: grid; gap: 1.3rem; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { border: 1px solid var(--line); padding: 1.15rem; }
.step-n {
  width: 34px; height: 34px; background: var(--accent); color: #fff;
  display: grid; place-items: center; font-weight: 700; margin-bottom: .6rem;
}

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); margin-bottom: .5rem; background: #fff; }
.faq summary { cursor: pointer; list-style: none; padding: .85rem 2.5rem .85rem 1rem; font-weight: 700; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 1rem; top: .75rem; font-size: 1.25rem; color: var(--accent); line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq .faq-body { padding: 0 1rem 1rem; color: var(--ink-soft); }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--primary); color: #fff; text-align: center; padding: 2.25rem 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d7e6f1; max-width: 44em; margin-left: auto; margin-right: auto; }
.cta-phone { display: inline-block; font-size: clamp(1.6rem, 5vw, 2.3rem); font-weight: 700; color: #fff; text-decoration: none; margin-top: .3rem; }
.cta-phone:hover { color: var(--highlight); }

/* ---------- areas ---------- */
.area-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; }
@media (min-width: 560px) { .area-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 880px) { .area-list { grid-template-columns: repeat(3, 1fr); } }
.area-list a {
  display: flex; align-items: center; gap: .45rem;
  padding: .55rem .7rem; border: 1px solid var(--line);
  background: #fff; text-decoration: none; color: var(--ink); font-weight: 700; font-size: .92rem;
}
.area-list a:hover { border-color: var(--accent); color: var(--accent); }
.area-list svg { width: 15px; height: 15px; color: var(--accent); }

.zip-cloud { display: flex; flex-wrap: wrap; gap: .3rem; padding: 0; margin: .8rem 0 0; list-style: none; }
.zip-cloud li {
  margin: 0; font-size: .85rem; font-family: inherit;
  background: #fff; border: 1px solid var(--line); padding: .22rem .45rem; color: var(--ink-soft);
}
.section-ink .zip-cloud li { background: transparent; border-color: rgba(255,255,255,.35); color: #dbe7ef; }

/* ---------- tables ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 1.25rem; border: 1px solid var(--line); }
table { border-collapse: collapse; width: 100%; min-width: 500px; font-size: .93rem; background: #fff; }
th, td { text-align: left; padding: .65rem .8rem; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { background: var(--bg-soft); font-size: .85rem; }
tbody tr:last-child td { border-bottom: 0; }

/* ---------- article ---------- */
.article-head { background: var(--bg-soft); padding: 1.5rem 0 1.25rem; border-bottom: 1px solid var(--line); }
.crumbs { font-size: .82rem; color: var(--ink-soft); margin-bottom: .7rem; }
.crumbs a { color: var(--ink-soft); }
.crumbs span { margin: 0 .3rem; }
.meta { font-size: .85rem; color: var(--ink-soft); }
.prose { font-size: 1rem; }
.prose h2 { margin-top: 1.9rem; }
.prose h3 { margin-top: 1.5rem; }
.prose img { margin: 1.4rem 0; border: 1px solid var(--line); }
.prose > p:first-of-type { font-size: 1.08rem; }

.post-list { display: grid; gap: 1.1rem; }
@media (min-width: 700px) { .post-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .post-list { grid-template-columns: repeat(3, 1fr); } }

.callout { border-left: 4px solid var(--accent); background: var(--bg-soft); padding: 1rem 1.1rem; margin: 1.5rem 0; }
.callout p:last-child { margin-bottom: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--primary-dark); color: #b9d2e3; padding: 2rem 0 0; font-size: .92rem; }
.footer-grid { display: grid; gap: 1.5rem; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; } }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: .6rem; }
.site-footer a { color: #b9d2e3; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .4rem; }
.site-footer li svg { display: inline-block; vertical-align: -.18em; margin-right: .3rem; }
.footer-logo { display: flex; align-items: center; gap: .6rem; margin-bottom: .8rem; }
.footer-logo .logo-entity { color: #8fb4ca; }
.footer-logo .logo-tag { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.18); margin-top: 1.75rem; padding: 1rem 0 5rem;
  font-size: .82rem; display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; justify-content: space-between;
}
@media (min-width: 1000px) { .footer-bottom { padding-bottom: 1rem; } }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: .25rem 1rem; }

/* ---------- sticky mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(0,0,0,.2);
  border-top: 1px solid rgba(0,0,0,.2);
}
@media (min-width: 1000px) { .callbar { display: none; } }
.callbar a { display: flex; align-items: center; justify-content: center; gap: .4rem; padding: .85rem .4rem; font-weight: 700; text-decoration: none; font-size: .98rem; }
.callbar svg { width: 18px; height: 18px; }
.callbar .cb-call { background: var(--highlight); color: #2a1d07; }
.callbar .cb-quote { background: var(--accent); color: #fff; }

/* ---------- misc ---------- */
.trustrow { display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; justify-content: center; align-items: center; color: var(--ink-soft); font-size: .88rem; font-weight: 700; }
.trustrow span { display: inline-flex; align-items: center; gap: .35rem; }
.trustrow svg { width: 16px; height: 16px; color: var(--accent); }

@media print {
  .site-header, .callbar, .cta-band, .site-footer, .topbar { display: none !important; }
  body { font-size: 12pt; }
}

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