/* Typo */

/* saira-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Saira';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/saira-v23-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* saira-500 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Saira';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/saira-v23-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* saira-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Saira';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/saira-v23-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* saira-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Saira';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/saira-v23-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* saira-condensed-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Saira Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/saira-condensed-v12-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* saira-condensed-500 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Saira Condensed';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/saira-condensed-v12-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* saira-condensed-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Saira Condensed';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/saira-condensed-v12-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* saira-condensed-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Saira Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/saira-condensed-v12-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* saira-condensed-800 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Saira Condensed';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/saira-condensed-v12-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Design-Tokens */

:root {
    --color-brand: #F2C200;
    --color-text: #111111;
    --color-text-secondary: #56534C;
    --color-muted: #9A978F;
    --color-dark-surface: #3A3A36;
    --color-surface-1: #F6F5F1;
    --color-surface-2: #F4F3EF;
    --color-border: #E6E4DE;
    --color-border-strong: #ECEAE4;
    --color-on-dark: #cfcdc7;
    --color-on-dark-muted: #8a877f;
    --color-on-dark-dim: #6b6862;
    --color-border-on-dark: #2c2c28;

    --container: 1440px;
    --pad: 32px;
    --radius: 2px;
    --ease: cubic-bezier(.2, .6, .2, 1);
    --duration-fast: 150ms;
    --duration-slow: 250ms;

    --space-4: 4px;
    --space-8: 8px;
    --space-12: 12px;
    --space-16: 16px;
    --space-24: 24px;
    --space-32: 32px;
    --space-48: 48px;
    --space-64: 64px;
    --space-96: 96px;
}

/* Seitenrand mobil kleiner (Breakpoint deckungsgleich mit dem Export, s. dortige @media (max-width:1180px)) */
@media (max-width: 1180px) {
    :root {
        --pad: 16px;
    }
}

/* Lebensphasen-Akzentfarben — Zuordnung läuft über den Alias, nicht über das Backend */

[data-lebensphase="kinder"]      { --lp-accent: #5B7FB0; }
[data-lebensphase="jugendliche"] { --lp-accent: #6E7C8C; }
[data-lebensphase="erwachsene"]  { --lp-accent: #B06A4F; }
[data-lebensphase="senioren"]    { --lp-accent: #7A6E9C; }

/* Basis-Reset */

*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Saira', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

/* Sticky Footer: <body> ist per Twig-Layout (tvm.html.twig, body_content-Block) direkt
   Elternelement von header/main/footer — kein Contao-Wrapper dazwischen (am gerenderten
   Markup verifiziert, 2026-08-28). <main> fehlt komplett, solange dem "main"-Slot kein
   Modul zugewiesen ist — Contaos {% slot %} unterdrückt den ganzen Block bei leerem Inhalt
   (s. CLAUDE.md). margin-top:auto auf footer trägt den Sticky-Footer deshalb schon allein;
   main{flex:1 0 auto} greift zusätzlich, sobald Auftrag 04+ echten Seiteninhalt liefert. */
main { flex: 1 0 auto; }
footer { margin-top: auto; }

img, picture, svg { max-width: 100%; display: block; }

/* Full-Bleed-Grid: jedes Standard-Contao-Element landet automatisch in der
   Inhaltsspalte, .is-full bricht bewusst aus (Ausnahme, keine Vorgabe). */

.mod_article {
    display: grid;
    grid-template-columns: 1fr min(var(--container), 100% - 2 * var(--pad)) 1fr;
}
.mod_article > * { grid-column: 2; }
.mod_article > .is-full { grid-column: 1 / -1; }
.mod_article > * + * { margin-top: var(--space-32); }

/* Grundtypografie */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Saira Condensed', sans-serif;
    color: var(--color-text);
    margin: 0 0 var(--space-16);
}

h1, .h1 { font-size: clamp(26px, 3.19vw, 46px); font-weight: 800; line-height: 1.0;  text-transform: uppercase; letter-spacing: .005em; }
h2, .h2 { font-size: clamp(24px, 2.36vw, 34px); font-weight: 800; line-height: 1.05; text-transform: uppercase; letter-spacing: .005em; }
h3, .h3 { font-size: 24px; font-weight: 700; line-height: 1.1; }
h4, .h4 { font-size: 20px; font-weight: 700; line-height: 1.15; }
h5, .h5 { font-size: 18px; font-weight: 600; line-height: 1.2; }
h6, .h6 { font-size: 16px; font-weight: 600; line-height: 1.3; text-transform: uppercase; letter-spacing: .04em; }

p { margin: 0 0 var(--space-16); }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 var(--space-16); padding-left: var(--space-24); }
ul li, ol li { margin-bottom: var(--space-8); }

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 var(--space-24);
}
table th {
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--color-muted);
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-text);
}
table td {
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border-strong);
    text-align: left;
}

a {
    color: var(--color-text);
    text-decoration-color: var(--color-brand);
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    transition: color var(--duration-fast) var(--ease);
}
a:hover { color: var(--color-brand); }

blockquote {
    margin: 0 0 var(--space-24);
    padding-left: var(--space-24);
    border-left: 3px solid var(--color-brand);
    font-size: 19px;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: var(--space-32) 0;
}

.ce_text {
    font-size: 16px;
    line-height: 1.6;
}

/* Typo-Rollen ohne eigenes Tag-Äquivalent (Display/Body-L/Caption) */

.text-display {
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(56px, 6vw, 72px);
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: .005em;
    margin: 0;
}

.text-lead {
    font-size: 19px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 var(--space-16);
}

.text-caption {
    font-family: 'Saira Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* Kopfbereich: Topbar + Kopfzeile (Schritt 4) */

.site-header { position: sticky; top: 0; z-index: 40; }

.topbar {
    background: var(--color-text);
    color: var(--color-on-dark);
}
.topbar__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13.5px;
}
.topbar__claim {
    margin: 0;
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--color-on-dark-muted);
}
.topbar__links {
    display: flex;
    align-items: center;
    gap: var(--space-24);
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 13px;
    white-space: nowrap;
}
.topbar__link {
    display: flex;
    align-items: center;
    gap: 7px;
    color: inherit;
}
.topbar__link .icon {
    width: 15px;
    height: 15px;
    color: var(--color-brand);
}
.topbar__cta {
    font-family: inherit;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 13px;
    background: var(--color-brand);
    color: var(--color-text);
    border: none;
    padding: 7px var(--space-16);
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
}
.topbar__cta .icon { width: 14px; height: 14px; }

@media (max-width: 1180px) {
    .topbar { display: none; }
}

.header-row {
    position: relative;
    background: #fff;
    border-bottom: 2px solid var(--color-text);
}
.header-row__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
    height: 84px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
@media (max-width: 1180px) {
    .header-row__inner { height: 66px; }
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-text);
    text-decoration: none;
}
.brand__mark { height: 48px; width: auto; display: block; }
@media (max-width: 1180px) {
    .brand__mark { height: 38px; }
}
.brand__text { display: flex; flex-direction: column; }
.brand__name {
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 700;
    font-size: 21px;
    line-height: 1;
    letter-spacing: .01em;
    text-transform: uppercase;
}
.brand__underline {
    height: 3px;
    width: 60px;
    background: var(--color-brand);
    margin-top: 6px;
}

/* Hauptnavigation (Schritt 5) */

.nav-burger {
    display: none;
    align-items: center;
    gap: 9px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--color-text);
    padding: 0;
}
@media (max-width: 1180px) {
    .nav-burger { display: flex; }
}
.nav-burger .icon { width: 24px; height: 24px; }

.nav-row { display: flex; }
@media (max-width: 1180px) {
    .nav-row { display: none; }
}

.nav-row__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    gap: 2px;
}
.nav-row__item {
    position: relative;
    display: flex;
    align-items: stretch;
    /* Überschreibt die globale ul/ol-li-Regel aus der Grundtypografie (für redaktionelle
       Listen gedacht, nicht für UI-Navigation) — sonst bleibt .nav-row__link 8px kürzer
       als header-row__inner und erreicht die Trennlinie nie (gefunden 2026-08-28). */
    margin: 0;
}
.nav-row__link {
    display: flex;
    align-items: center;
    padding: 0 var(--space-16);
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    font-size: 15.5px;
    color: var(--color-dark-surface);
    text-decoration: none;
    white-space: nowrap;
}
.nav-row__link:hover { color: var(--color-text); }
.nav-row__link--active {
    background: var(--color-brand);
    color: var(--color-text);
    font-weight: 700;
    /* .header-row zeichnet seine 2px-Trennlinie als eigene border-bottom-Box — die gelbe
       Fläche hier sitzt eine Ebene tiefer und kann sie nur überdecken, wenn sie exakt um
       deren Breite über den eigenen Rahmen hinausreicht (kein bloßes Aneinanderstoßen). */
    margin-bottom: -2px;
    padding-bottom: 2px;
}
.nav-row__toggle {
    display: flex;
    align-items: center;
    padding: 0 var(--space-8) 0 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-muted);
}
.nav-row__toggle .icon { width: 14px; height: 14px; transition: transform var(--duration-fast) var(--ease); }
.nav-row__toggle[aria-expanded="true"] .icon { transform: rotate(180deg); }

/* Megamenü-Panel ("Training") */

.megamenu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-top: 3px solid var(--color-brand);
    box-shadow: 0 30px 60px -18px rgba(0, 0, 0, .34);
}
.megamenu[hidden] { display: none; }
.megamenu__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: grid;
    grid-template-columns: repeat(4, 1fr) 300px;
}
.megamenu__column {
    padding: 26px var(--space-24) 30px;
    border-right: 1px solid var(--color-border-strong);
}
.megamenu__column-head {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--lp-accent, var(--color-text));
    padding-bottom: 11px;
    border-bottom: 1px solid var(--color-border);
}
.megamenu__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--lp-accent, var(--color-text));
    flex: none;
}
.megamenu__riegen {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: var(--space-12);
}
.megamenu__riege {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    font-size: 15px;
    color: var(--color-dark-surface);
    padding: 7px var(--space-8);
    margin: 0 calc(var(--space-8) * -1);
    border-radius: var(--radius);
    text-decoration: none;
}
.megamenu__riege:hover { background: var(--color-surface-1); color: var(--color-text); }
.megamenu__riege .icon { width: 16px; height: 16px; color: var(--color-muted); flex: none; }
.megamenu__overview {
    display: inline-flex;
    align-items: center;
    gap: var(--space-8);
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--color-text);
    border-bottom: 2px solid var(--color-brand);
    padding-bottom: 2px;
    margin-top: var(--space-16);
    text-decoration: none;
}
.megamenu__cross {
    background: var(--color-text);
    color: #fff;
    padding: 26px var(--space-24) 30px;
}
.megamenu__cross-title {
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 1.05;
    text-transform: uppercase;
}
.megamenu__cross-text {
    font-size: 14px;
    line-height: 1.55;
    color: var(--color-muted);
    margin: 10px 0 var(--space-24);
}
.megamenu__cross-cta,
.megamenu__cross-secondary {
    width: 100%;
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 700;
    font-size: 15.5px;
    letter-spacing: .07em;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
}
.megamenu__cross-cta {
    background: var(--color-brand);
    color: var(--color-text);
    border: none;
    padding: 13px var(--space-16) 13px 18px;
}
.megamenu__cross-cta .icon { width: 17px; height: 17px; }
.megamenu__cross-secondary {
    background: transparent;
    color: #fff;
    border: 1.5px solid var(--color-dark-surface);
    padding: 12px 18px;
    margin-top: var(--space-8);
    justify-content: center;
}

/* Klapp-Menü für Unterseiten (generisch, jeder Hauptpunkt mit echten Kind-Seiten) */

.subpages-panel {
    /* Verankert am auslösenden Nav-Item (.nav-row__item, position:relative): linke Kante
       des Panels auf linker Kante des Triggers, wächst nach rechts (Live-Korrektur
       2026-08-28 — der Export selbst positioniert das Panel fix am Kopf-Wrapper statt am
       Trigger, das wirkte hier aber optisch falsch, deshalb bewusste Abweichung). */
    position: absolute;
    top: 100%;
    left: 0;
    width: 340px;
    background: #fff;
    border-top: 3px solid var(--color-brand);
    box-shadow: 0 30px 60px -18px rgba(0, 0, 0, .34);
    padding: var(--space-12);
}
.subpages-panel[hidden] { display: none; }
.subpages-panel__tile {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 13px 14px;
    border-radius: var(--radius);
    text-decoration: none;
}
.subpages-panel__tile:hover { background: var(--color-surface-1); }
.subpages-panel__tile .icon { width: 19px; height: 19px; color: var(--color-muted); flex: none; margin-top: 2px; }
.subpages-panel__title {
    display: block;
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--color-text);
}
.subpages-panel__desc {
    display: block;
    font-size: 13.5px;
    color: var(--color-text-secondary);
    margin-top: 2px;
}

/* Mobiles Panel */

.mobile-panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    border-top: 3px solid var(--color-brand);
    background: #fff;
    box-shadow: 0 24px 40px -18px rgba(0, 0, 0, .3);
    padding: var(--space-8) var(--space-16) var(--space-16);
    max-height: calc(100vh - 66px);
    overflow-y: auto;
}
.mobile-panel[hidden] { display: none; }
@media (max-width: 1180px) {
    .mobile-panel:not([hidden]) { display: block; }
}
.mobile-panel__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-12);
    padding: 15px 4px;
    border-bottom: 1px solid var(--color-border-strong);
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 700;
    font-size: 19px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--color-text);
    text-decoration: none;
}
.mobile-panel__link .icon { width: 17px; height: 17px; color: var(--color-muted); }

/* Footer (Schritt 6) */

.site-footer {
    background: var(--color-text);
    color: var(--color-on-dark);
}
.site-footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 52px var(--pad) 26px;
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: var(--space-32) 36px;
}
@media (max-width: 1180px) {
    .site-footer__grid { grid-template-columns: 1fr; }
}

.site-footer__logo { height: 48px; width: auto; filter: invert(1); margin-bottom: var(--space-16); }
.site-footer__claim {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--color-on-dark-muted);
    max-width: 260px;
    margin: 0;
}

.site-footer__col-title {
    font-family: 'Saira Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--color-brand);
    margin-bottom: var(--space-16);
}
.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 11px;
    font-size: 14.5px;
}
.site-footer__links a { color: inherit; text-decoration: none; }

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-12);
    border-top: 1px solid var(--color-border-on-dark);
    margin-top: var(--space-32);
    padding-top: var(--space-16);
    font-size: 13px;
    color: var(--color-on-dark-dim);
}
.site-footer__legal { display: flex; gap: 22px; }
.site-footer__legal a { color: inherit; text-decoration: none; }

/* Sticky Navigation + Back-to-Top (Schritt 7) */

@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}

.header-row { transition: box-shadow var(--duration-slow) var(--ease); }
.site-header--scrolled .header-row {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.back-to-top {
    position: fixed;
    right: var(--space-24);
    bottom: var(--space-24);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-brand);
    color: var(--color-text);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
    text-decoration: none;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease), visibility var(--duration-slow);
}
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top .icon { width: 22px; height: 22px; }

@media (prefers-reduced-motion: reduce) {
    .back-to-top { transition: opacity var(--duration-fast) linear; transform: none; }
}

/* Utilities */

.invisible {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}