/* ==========================================================================
   FBZ Cookie Consent — css/fbz-cookies.css
   Ferbeatz DJ Theme · glassmorphism · #0f121f / #191d31 · #fdeb19
   v21.6.1 — premium redesign
   ========================================================================== */

/* ── 0. RESET & STACKING ───────────────────────────────────────────────── */

#fbz-cookie-banner *,
#fbz-cookie-banner *::before,
#fbz-cookie-banner *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#fbz-cookie-banner    { z-index: 9998; }
.fbz-cb-bar           { z-index: 9999; }
.fbz-cb-modal-overlay { z-index: 10001; }

/* ==========================================================================
   1. FLOATING CARD — BANNER
   ========================================================================== */

/* Wrapper: fixed centering only, transparent, doesn't block the page */
.fbz-cb-bar {
    position: fixed;
    bottom: 28px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 0 28px;
    pointer-events: none;
    transform: translateY(calc(100% + 44px));
    transition: transform 0.55s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#fbz-cookie-banner.fbz-cb--visible .fbz-cb-bar {
    transform: translateY(0);
}
#fbz-cookie-banner.fbz-cb--hiding .fbz-cb-bar {
    transform: translateY(calc(100% + 44px));
}

/* Card: glassmorphism floating panel */
.fbz-cb-card {
    pointer-events: auto;
    width: 100%;
    max-width: 1100px;

    background: rgba(13, 16, 36, 0.90);
    backdrop-filter: blur(32px) saturate(1.8);
    -webkit-backdrop-filter: blur(32px) saturate(1.8);

    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 2px solid var(--accent, #fdeb19);
    border-radius: 22px;
    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.60),
        0 8px 28px rgba(0, 0, 0, 0.35),
        0 1px 0 rgba(253, 235, 25, 0.06) inset,
        0 0 80px rgba(253, 235, 25, 0.03) inset;

    padding: 30px 38px;
    display: flex;
    align-items: center;
    gap: 44px;
}

/* Left column */
.fbz-cb-card-left {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 1;
    min-width: 0;
}

/* Equalizer mark icon */
.fbz-cb-card-mark {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(253, 235, 25, 0.07);
    border: 1px solid rgba(253, 235, 25, 0.16);
    border-radius: 12px;
}

.fbz-cb-card-copy {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
}

.fbz-cb-headline {
    display: block;
    font-family: var(--font-head, 'Nohemi', 'Montserrat', sans-serif);
    font-weight: 900;
    font-size: 1.08rem;
    color: #ffffff;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.fbz-cb-body {
    display: block;
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.50);
    line-height: 1.60;
    font-family: 'Open Sans', sans-serif;
}

/* Right column: stacked buttons */
.fbz-cb-card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    width: 228px;
}
.fbz-cb-card-actions .fbz-cb-btn {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   2. BUTTONS
   ========================================================================== */

.fbz-cb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    border-radius: 999px;
    font-family: var(--font-head, 'Nohemi', 'Montserrat', sans-serif);
    font-weight: 700;
    font-size: 0.73rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition:
        transform    0.18s ease,
        box-shadow   0.18s ease,
        background   0.18s ease,
        color        0.18s ease,
        border-color 0.18s ease;
}
.fbz-cb-btn:hover  { transform: translateY(-2px); }
.fbz-cb-btn:active { transform: translateY(0); }

/* Primary — solid yellow */
.fbz-cb-btn--primary {
    background: var(--accent, #fdeb19);
    color: #0a0d1a;
    font-weight: 800;
    box-shadow: 0 4px 22px rgba(253, 235, 25, 0.28);
}
.fbz-cb-btn--primary:hover {
    background: #ffef00;
    box-shadow: 0 8px 36px rgba(253, 235, 25, 0.50);
}

/* Outline — yellow border */
.fbz-cb-btn--outline {
    background: rgba(253, 235, 25, 0.04);
    color: rgba(253, 235, 25, 0.88);
    border: 1.5px solid rgba(253, 235, 25, 0.32);
}
.fbz-cb-btn--outline:hover {
    background: rgba(253, 235, 25, 0.09);
    border-color: rgba(253, 235, 25, 0.65);
    color: var(--accent, #fdeb19);
}

/* Ghost — minimal */
.fbz-cb-btn--ghost {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.09);
}
.fbz-cb-btn--ghost:hover {
    color: rgba(255, 255, 255, 0.82);
    border-color: rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   3. MODAL OVERLAY
   ========================================================================== */

.fbz-cb-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 20, 0.86);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.fbz-cb-modal-overlay.fbz-cb-modal--visible {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   4. MODAL
   ========================================================================== */

.fbz-cb-modal {
    background: rgba(11, 14, 30, 0.97);
    backdrop-filter: blur(40px) saturate(1.6);
    -webkit-backdrop-filter: blur(40px) saturate(1.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 2px solid var(--accent, #fdeb19);
    border-radius: 26px;
    box-shadow:
        0 60px 140px rgba(0, 0, 0, 0.75),
        0 16px 48px rgba(0, 0, 0, 0.45),
        0 1px 0 rgba(253, 235, 25, 0.05) inset;
    width: 100%;
    max-width: 700px;
    max-height: 88vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    transform: translateY(28px) scale(0.97);
    transition: transform 0.42s cubic-bezier(0.165, 0.84, 0.44, 1);

    scrollbar-width: thin;
    scrollbar-color: rgba(253, 235, 25, 0.14) transparent;
}
.fbz-cb-modal::-webkit-scrollbar { width: 3px; }
.fbz-cb-modal::-webkit-scrollbar-thumb {
    background: rgba(253, 235, 25, 0.18);
    border-radius: 2px;
}
.fbz-cb-modal-overlay.fbz-cb-modal--visible .fbz-cb-modal {
    transform: translateY(0) scale(1);
}

/* ── Modal header ── */
.fbz-cb-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 38px 44px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
    background: linear-gradient(160deg, rgba(253, 235, 25, 0.035) 0%, transparent 55%);
}

.fbz-cb-modal-brand {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.fbz-cb-brand-logo {
    font-family: var(--font-head, 'Nohemi', 'Montserrat', sans-serif);
    font-weight: 900;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 0.05em;
    line-height: 1;
}
.fbz-cb-brand-logo span { color: var(--accent, #fdeb19); }

.fbz-cb-modal-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.67rem;
    color: rgba(255, 255, 255, 0.28);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.fbz-cb-modal-close {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.36);
    cursor: pointer;
    width: 42px;
    height: 42px;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.22s;
}
.fbz-cb-modal-close:hover {
    background: rgba(253, 235, 25, 0.10);
    border-color: rgba(253, 235, 25, 0.28);
    color: var(--accent, #fdeb19);
    transform: rotate(90deg);
}

/* ── Tabs ── */
.fbz-cb-tabs {
    display: flex;
    gap: 7px;
    padding: 22px 44px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.fbz-cb-tabs::-webkit-scrollbar { display: none; }

.fbz-cb-tab {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.36);
    cursor: pointer;
    font-family: var(--font-head, 'Nohemi', 'Montserrat', sans-serif);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 24px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.fbz-cb-tab:hover {
    color: rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.13);
}
.fbz-cb-tab.active {
    background: var(--accent, #fdeb19);
    border-color: var(--accent, #fdeb19);
    color: #0a0d1a;
    font-weight: 800;
}

/* ── Tab panels ── */
.fbz-cb-tab-panel {
    display: none;
    padding: 38px 44px 44px;
    flex: 1;
}
.fbz-cb-tab-panel.active { display: block; }

.fbz-cb-modal-intro {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.46);
    line-height: 1.80;
    margin-bottom: 34px;
    font-family: 'Open Sans', sans-serif;
    max-width: 500px;
}

/* ── Category cards ── */
.fbz-cb-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 38px;
}

.fbz-cb-category {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 18px;
    padding: 22px 26px;
    transition: background 0.22s, border-color 0.22s;
}
.fbz-cb-category:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.10);
}
.fbz-cb-category[data-category="necessary"] {
    border-color: rgba(253, 235, 25, 0.13);
    background: rgba(253, 235, 25, 0.022);
}

.fbz-cb-cat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.fbz-cb-cat-name {
    font-family: var(--font-head, 'Nohemi', 'Montserrat', sans-serif);
    font-weight: 700;
    font-size: 0.82rem;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fbz-cb-cat-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.62;
    font-family: 'Open Sans', sans-serif;
}

/* "Always Active" pill */
.fbz-cb-always-on {
    display: inline-flex;
    align-items: center;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--accent, #fdeb19);
    letter-spacing: 0.10em;
    text-transform: uppercase;
    font-family: var(--font-head, 'Nohemi', 'Montserrat', sans-serif);
    background: rgba(253, 235, 25, 0.07);
    border: 1px solid rgba(253, 235, 25, 0.18);
    padding: 5px 13px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Toggle switch ── */
.fbz-cb-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
}
.fbz-cb-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.fbz-cb-toggle-slider {
    width: 48px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    position: relative;
    flex-shrink: 0;
    transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.fbz-cb-toggle-slider::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.40);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s ease;
}
/* 48 − 18 − 4 − 4 = 22px travel */
.fbz-cb-toggle input:checked + .fbz-cb-toggle-slider {
    background: var(--accent, #fdeb19);
    border-color: var(--accent, #fdeb19);
    box-shadow: 0 0 18px rgba(253, 235, 25, 0.24);
}
.fbz-cb-toggle input:checked + .fbz-cb-toggle-slider::after {
    transform: translateX(22px);
    background: #0a0d1a;
}
.fbz-cb-toggle input:focus-visible + .fbz-cb-toggle-slider {
    outline: 2px solid var(--accent, #fdeb19);
    outline-offset: 2px;
}

/* Small toggle (Details tab) — 38 − 14 − 3 − 3 = 18px travel */
.fbz-cb-toggle--sm .fbz-cb-toggle-slider { width: 38px; height: 22px; }
.fbz-cb-toggle--sm .fbz-cb-toggle-slider::after { width: 14px; height: 14px; top: 3px; left: 3px; }
.fbz-cb-toggle--sm input:checked + .fbz-cb-toggle-slider::after { transform: translateX(18px); }

/* ── Modal action buttons ── */
.fbz-cb-modal-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}
.fbz-cb-modal-actions .fbz-cb-btn {
    flex: 1;
    min-width: 130px;
}

/* Privacy link */
.fbz-cb-privacy-link { text-align: center; padding-bottom: 6px; }
.fbz-cb-privacy-link a,
.fbz-cb-privacy-link-inline {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.22);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 255, 255, 0.10);
    font-family: 'Open Sans', sans-serif;
    transition: color 0.2s, text-decoration-color 0.2s;
}
.fbz-cb-privacy-link a:hover,
.fbz-cb-privacy-link-inline:hover {
    color: rgba(255, 255, 255, 0.60);
    text-decoration-color: rgba(255, 255, 255, 0.28);
}

/* ==========================================================================
   5. DETAILS TAB
   ========================================================================== */

.fbz-cb-details-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 34px;
}

.fbz-cb-detail-group {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color 0.22s;
}
.fbz-cb-detail-group:first-child {
    border-color: rgba(253, 235, 25, 0.13);
}
.fbz-cb-detail-group[open] {
    border-color: rgba(253, 235, 25, 0.13);
}

.fbz-cb-detail-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.2s;
}
.fbz-cb-detail-group summary:hover { background: rgba(255, 255, 255, 0.04); }
.fbz-cb-detail-group summary::-webkit-details-marker { display: none; }

.fbz-cb-detail-group summary::before {
    content: '›';
    font-size: 1.4rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.18);
    margin-right: 2px;
    order: -1;
    flex-shrink: 0;
    transition: transform 0.24s, color 0.24s;
}
.fbz-cb-detail-group[open] summary::before {
    transform: rotate(90deg);
    color: rgba(253, 235, 25, 0.58);
}

.fbz-cb-det-name {
    font-family: var(--font-head, 'Nohemi', 'Montserrat', sans-serif);
    font-weight: 700;
    font-size: 0.80rem;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex: 1;
}

.fbz-cb-det-body { padding: 4px 26px 24px 44px; }
.fbz-cb-det-body p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.70;
    margin-bottom: 16px;
    font-family: 'Open Sans', sans-serif;
}

/* Cookie table */
.fbz-cb-cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.72rem;
    font-family: 'Open Sans', sans-serif;
}
.fbz-cb-cookie-table th {
    text-align: left;
    font-weight: 700;
    color: rgba(253, 235, 25, 0.52);
    padding: 5px 10px 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.63rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}
.fbz-cb-cookie-table td {
    color: rgba(255, 255, 255, 0.38);
    padding: 8px 10px 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: top;
}
.fbz-cb-cookie-table tr:last-child td { border-bottom: none; }
.fbz-cb-cookie-table td:first-child { color: rgba(255, 255, 255, 0.76); font-weight: 600; }

/* ==========================================================================
   6. ABOUT TAB
   ========================================================================== */

.fbz-cb-about-title {
    font-family: var(--font-head, 'Nohemi', 'Montserrat', sans-serif);
    font-weight: 900;
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 22px;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.fbz-cb-tab-panel[data-panel="about"] p {
    font-size: 0.90rem;
    color: rgba(255, 255, 255, 0.46);
    line-height: 1.78;
    margin-bottom: 18px;
    font-family: 'Open Sans', sans-serif;
}

.fbz-cb-about-contact a {
    color: var(--accent, #fdeb19);
    text-decoration: none;
    border-bottom: 1px solid rgba(253, 235, 25, 0.26);
    padding-bottom: 1px;
    transition: border-color 0.2s;
}
.fbz-cb-about-contact a:hover { border-color: var(--accent, #fdeb19); }

.fbz-cb-compliance-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.fbz-cb-badge {
    background: rgba(253, 235, 25, 0.05);
    border: 1px solid rgba(253, 235, 25, 0.16);
    border-radius: 999px;
    color: rgba(253, 235, 25, 0.78);
    font-family: var(--font-head, 'Nohemi', 'Montserrat', sans-serif);
    font-weight: 700;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    padding: 6px 18px;
    text-transform: uppercase;
}

/* ==========================================================================
   7. RESPONSIVE
   ========================================================================== */

/* ── Tablet 601–1024px ── */
@media (max-width: 1024px) and (min-width: 601px) {
    .fbz-cb-bar { padding: 0 20px; }
    .fbz-cb-card { padding: 24px 30px; gap: 30px; }
    .fbz-cb-card-actions {
        flex-direction: row;
        flex-wrap: wrap;
        width: auto;
        justify-content: flex-end;
        gap: 8px;
    }
    .fbz-cb-card-actions .fbz-cb-btn { width: auto; flex: 0 0 auto; }

    .fbz-cb-modal-header { padding: 30px 36px 24px; }
    .fbz-cb-tabs { padding: 18px 36px 16px; }
    .fbz-cb-tab-panel { padding: 30px 36px 36px; }
    .fbz-cb-modal-intro { max-width: none; }
}

/* ── Mobile ≤600px: bottom sheet ── */
@media (max-width: 600px) {

    .fbz-cb-bar {
        bottom: 0;
        padding: 0;
        transform: translateY(100%);
        transition: transform 0.48s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    #fbz-cookie-banner.fbz-cb--visible .fbz-cb-bar {
        transform: translateY(0);
    }
    #fbz-cookie-banner.fbz-cb--hiding .fbz-cb-bar {
        transform: translateY(100%);
    }

    .fbz-cb-card {
        max-width: none;
        border-radius: 26px 26px 0 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        padding: 30px 24px 38px;
        flex-direction: column;
        align-items: flex-start;
        gap: 26px;
    }
    .fbz-cb-card-left { align-items: flex-start; }
    .fbz-cb-card-actions { flex-direction: column; gap: 10px; width: 100%; }
    .fbz-cb-card-actions .fbz-cb-btn { height: 52px; font-size: 0.76rem; }

    /* Modal: bottom sheet */
    .fbz-cb-modal-overlay { padding: 0; align-items: flex-end; }
    .fbz-cb-modal {
        max-height: 92vh;
        border-radius: 26px 26px 0 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        max-width: 100%;
    }

    .fbz-cb-modal-header { padding: 28px 24px 22px; }
    .fbz-cb-brand-logo { font-size: 1.25rem; }
    .fbz-cb-tabs { padding: 16px 22px 14px; gap: 6px; }
    .fbz-cb-tab { padding: 9px 18px; font-size: 0.66rem; letter-spacing: 0.10em; }
    .fbz-cb-tab-panel { padding: 28px 24px 34px; }
    .fbz-cb-modal-intro { margin-bottom: 26px; max-width: none; }

    .fbz-cb-categories { gap: 10px; margin-bottom: 30px; }
    .fbz-cb-category { padding: 18px 20px; border-radius: 14px; }

    .fbz-cb-modal-actions { flex-direction: column; gap: 10px; }
    .fbz-cb-modal-actions .fbz-cb-btn {
        flex: none;
        width: 100%;
        min-width: unset;
        height: 52px;
    }

    .fbz-cb-details-list { gap: 8px; }
    .fbz-cb-detail-group { border-radius: 14px; }
    .fbz-cb-detail-group summary { padding: 18px 20px; }
    .fbz-cb-det-body { padding: 4px 20px 22px 36px; }
}

/* ==========================================================================
   8. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    .fbz-cb-bar,
    .fbz-cb-modal,
    .fbz-cb-modal-overlay,
    .fbz-cb-btn,
    .fbz-cb-toggle-slider,
    .fbz-cb-toggle-slider::after,
    .fbz-cb-detail-group summary::before,
    .fbz-cb-modal-close {
        transition: none !important;
        animation: none !important;
    }
}
