/* =====================================================================
   HEADS UP PUBLIC DEMONSTRATION RELEASE
   =====================================================================
   The original visual system and all merged public-ready rules remain in
   place. The final mobile patch appears at the end of the live CSS rules and
   fixes current-route contrast, account placement, drawer spacing, and the
   fixed quick dock without changing desktop behavior.

   A line-by-line maintenance index follows the live CSS. It documents every
   nonblank line without placing comments inside multi-line values.
   ===================================================================== */

/* =====================================================================
   HEADS UP WEBSITE — STYLE.CSS MAINTAINER READING GUIDE
   =====================================================================

   PURPOSE
   -------
   This is now the single combined stylesheet. It contains:
   1. The complete original visual system and responsive layout.
   2. The public-ready refinements that previously lived in
      public-ready.css.

   CASCADE ORDER
   -------------
   The original stylesheet appears first. The merged public-ready rules
   remain at the end, exactly where a separately loaded override stylesheet
   would have applied them. This preserves the current working appearance.

   SAFE EDITING RULES
   ------------------
   - Edit brand values in :root before changing individual components.
   - Keep focus-visible rules for keyboard accessibility.
   - Keep [hidden] behavior and mobile navigation state rules.
   - Keep protected/approved portal selectors because JavaScript toggles
     those classes based on authentication and approval state.
   - Keep responsive and reduced-motion sections at the end of their
     corresponding blocks.
   - Avoid moving the merged public-ready section above the original CSS;
     its position is part of the cascade and therefore part of the behavior.

   HEADS UP BRAND COLORS
   ---------------------
   Green:  #4c872b
   Red:    #ef2021
   Yellow: #edb429
   Teal:   #4d94a6
   Blue:   #004aad

   FILE MAP
   --------
   - Root variables and global reset
   - Ambient background and layout utilities
   - Header, navigation, mobile menu, and hero
   - About, Programs, Updates, Gallery, Stories, Resources, Team, FAQ
   - Contact, footer, dialogs, portal, responsive rules
   - Merged public-ready navigation, copy, privacy, protected-state,
     calendar, and continuous-background refinements
   ===================================================================== */
/* =============================================================
   HEADS UP AFTERSCHOOL PROGRAM
   style.css

   DESIGN GOALS
   -------------------------------------------------------------
   1. Warm, homey, trustworthy visual identity.
   2. Professional hierarchy without feeling corporate.
   3. High-priority information is easy to scan and reach.
   4. Mobile touch targets remain large and accessible.
   5. Motion stays subtle and respects reduced-motion settings.
   6. Logo colors guide the navy, gold, blue, cream, and teal palette.

   QUICK EDITING NOTES
   -------------------------------------------------------------
   - Change global colors in :root.
   - Change hero/gallery/team images in the IMAGE PATHS section.
   - Change breakpoints only if the navigation no longer fits.
   - Keep focus styles for accessibility.
============================================================= */


/* =============================================================
   01. ROOT VARIABLES
============================================================= */

:root {

    /* Brand colors */

    --navy-950: #041b3d;
    --navy-900: #082b63;
    --navy-850: #0a3476;
    --navy-800: #0f3f8c;

    --blue-700: #1757aa;
    --blue-600: #2b6dc1;
    --blue-500: #4c86cf;
    --blue-200: #bfd7f2;
    --blue-100: #e6f0fb;
    --blue-050: #f4f8fd;

    --gold-600: #e69800;
    --gold-500: #ffb703;
    --gold-400: #ffc83d;
    --gold-300: #ffd971;
    --gold-100: #fff2bd;
    --gold-050: #fff9e9;

    --teal-700: #087d78;
    --teal-600: #0d9488;
    --teal-300: #65d3c8;
    --teal-100: #d9f6f1;

    --coral-600: #d65c4a;
    --coral-500: #eb705b;
    --coral-100: #fde4df;

    --cream-100: #fffdf7;
    --cream-200: #fff9eb;
    --cream-300: #f9f0dc;

    --white: #ffffff;

    --ink-950: #132033;
    --ink-900: #1e293b;
    --ink-800: #2f3b4d;
    --ink-700: #475569;
    --ink-600: #64748b;
    --ink-500: #7b8798;
    --ink-300: #c9d2de;
    --ink-200: #dfe5ec;
    --ink-100: #eef2f6;


    /* Functional colors */

    --success-600: #14804a;
    --success-500: #22a35a;

    --warning-600: #a25d00;

    --danger-700: #9d2430;
    --danger-600: #bf3340;
    --danger-500: #d44854;
    --danger-100: #ffe5e8;


    /* Main surfaces */

    --page-background: #f4f8fd;

    --surface:
        rgba(255, 255, 255, 0.94);

    --surface-solid:
        #ffffff;

    --surface-soft:
        rgba(255, 253, 247, 0.82);

    --surface-blue:
        rgba(230, 240, 251, 0.82);

    --surface-dark:
        rgba(4, 27, 61, 0.94);


    /* Borders */

    --border-soft:
        rgba(8, 43, 99, 0.09);

    --border-medium:
        rgba(8, 43, 99, 0.16);

    --border-gold:
        rgba(255, 183, 3, 0.42);


    /* Shadows */

    --shadow-xs:
        0 4px 12px rgba(4, 27, 61, 0.05);

    --shadow-sm:
        0 8px 22px rgba(4, 27, 61, 0.07);

    --shadow-md:
        0 18px 48px rgba(4, 27, 61, 0.10);

    --shadow-lg:
        0 28px 80px rgba(4, 27, 61, 0.15);

    --shadow-gold:
        0 16px 40px rgba(255, 183, 3, 0.20);

    --shadow-blue:
        0 18px 55px rgba(15, 63, 140, 0.20);


    /* Typography */

    --font-heading:
        "Poppins", sans-serif;

    --font-body:
        "Nunito", sans-serif;


    /* Layout */

    --content-width:
        1240px;

    --content-width-wide:
        1450px;

    --page-gutter:
        clamp(1.1rem, 4vw, 3.25rem);

    --section-space:
        clamp(5rem, 9vw, 8.5rem);

    --header-radius:
        1.1rem;


    /* Motion */

    --ease-standard:
        cubic-bezier(0.2, 0.7, 0.2, 1);

    --ease-spring:
        cubic-bezier(0.2, 0.9, 0.2, 1.15);

    --transition-fast:
        160ms var(--ease-standard);

    --transition-medium:
        320ms var(--ease-standard);

    --transition-slow:
        650ms var(--ease-standard);


    /* Header offset values */

    --emergency-bar-height:
        2.7rem;

    --main-header-height:
        5.65rem;

    --sticky-offset:
        calc(
            var(--emergency-bar-height)
            + var(--main-header-height)
            + 1.1rem
        );

}


/* =============================================================
   02. RESET AND GLOBAL BASE
============================================================= */

*,
*::before,
*::after {

    box-sizing:
        border-box;

}


html {

    scroll-behavior:
        smooth;

    scroll-padding-top:
        var(--sticky-offset);

    color-scheme:
        light;

}


body {

    margin:
        0;

    min-width:
        320px;

    overflow-x:
        hidden;

    font-family:
        var(--font-body);

    font-size:
        1rem;

    line-height:
        1.65;

    color:
        var(--ink-900);

    background:
        radial-gradient(
            circle at 4% 8%,
            rgba(255, 183, 3, 0.13),
            transparent 24rem
        ),
        radial-gradient(
            circle at 96% 18%,
            rgba(76, 134, 207, 0.13),
            transparent 28rem
        ),
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #f4f8fd 36%,
            #fffaf0 68%,
            #f5f9ff 100%
        );

    text-rendering:
        optimizeLegibility;

    -webkit-font-smoothing:
        antialiased;

}


body.nav-is-open,
body.modal-is-open {

    overflow:
        hidden;

}


main,
header,
footer,
section,
nav,
div,
article,
aside {

    min-width:
        0;

}


img,
picture,
svg,
video,
canvas {

    display:
        block;

    max-width:
        100%;

}


svg {

    width:
        1.25em;

    height:
        1.25em;

    fill:
        none;

    stroke:
        currentColor;

    stroke-width:
        1.8;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;

}


button,
input,
select,
textarea {

    font:
        inherit;

}


button,
a {

    -webkit-tap-highlight-color:
        transparent;

}


button {

    color:
        inherit;

}


a {

    color:
        inherit;

}


h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
blockquote {

    margin-top:
        0;

}


h1,
h2,
h3,
h4,
h5,
h6 {

    font-family:
        var(--font-heading);

    color:
        var(--navy-950);

    line-height:
        1.15;

    letter-spacing:
        -0.025em;

}


h1 {

    font-size:
        clamp(2.85rem, 6vw, 5.75rem);

}


h2 {

    font-size:
        clamp(2.15rem, 4vw, 3.55rem);

}


h3 {

    font-size:
        clamp(1.25rem, 2vw, 1.6rem);

}


p {

    color:
        var(--ink-700);

}


::selection {

    color:
        var(--navy-950);

    background:
        var(--gold-300);

}


:focus-visible {

    outline:
        3px solid var(--gold-500);

    outline-offset:
        4px;

    border-radius:
        0.35rem;

}


[hidden] {

    display:
        none !important;

}


.sr-only {

    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;

}


.svg-sprite {

    position:
        absolute;

    width:
        0;

    height:
        0;

    overflow:
        hidden;

    pointer-events:
        none;

}


.skip-link {

    position:
        fixed;

    top:
        0.65rem;

    left:
        0.65rem;

    z-index:
        5000;

    transform:
        translateY(-180%);

    padding:
        0.8rem 1.1rem;

    border-radius:
        0.65rem;

    color:
        var(--white);

    background:
        var(--navy-950);

    box-shadow:
        var(--shadow-md);

    font-weight:
        800;

    text-decoration:
        none;

    transition:
        transform var(--transition-fast);

}


.skip-link:focus {

    transform:
        translateY(0);

}


/* =============================================================
   03. AMBIENT BACKGROUND AND SLOW NEON MOTION
============================================================= */

.ambient-background {

    position:
        fixed;

    inset:
        0;

    z-index:
        -10;

    overflow:
        hidden;

    pointer-events:
        none;

}


.ambient-orb {

    position:
        absolute;

    display:
        block;

    border-radius:
        50%;

    filter:
        blur(90px);

    opacity:
        0.25;

    will-change:
        transform;

}


.ambient-orb--gold {

    top:
        -12rem;

    left:
        -10rem;

    width:
        38rem;

    height:
        38rem;

    background:
        radial-gradient(
            circle,
            rgba(255, 183, 3, 0.92),
            rgba(255, 183, 3, 0)
        );

    animation:
        ambientDriftGold
        38s
        ease-in-out
        infinite
        alternate;

}


.ambient-orb--blue {

    top:
        22%;

    right:
        -16rem;

    width:
        48rem;

    height:
        48rem;

    background:
        radial-gradient(
            circle,
            rgba(43, 109, 193, 0.82),
            rgba(43, 109, 193, 0)
        );

    animation:
        ambientDriftBlue
        46s
        ease-in-out
        infinite
        alternate;

}


.ambient-orb--teal {

    bottom:
        -14rem;

    left:
        22%;

    width:
        42rem;

    height:
        42rem;

    background:
        radial-gradient(
            circle,
            rgba(13, 148, 136, 0.58),
            rgba(13, 148, 136, 0)
        );

    animation:
        ambientDriftTeal
        42s
        ease-in-out
        infinite
        alternate;

}


.ambient-grid {

    position:
        absolute;

    inset:
        0;

    opacity:
        0.2;

    background-image:
        linear-gradient(
            rgba(8, 43, 99, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(8, 43, 99, 0.045) 1px,
            transparent 1px
        );

    background-size:
        72px 72px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 12%,
            black 82%,
            transparent
        );

}


@keyframes ambientDriftGold {

    0% {

        transform:
            translate3d(0, 0, 0)
            scale(0.96);

    }

    50% {

        transform:
            translate3d(12vw, 8vh, 0)
            scale(1.08);

    }

    100% {

        transform:
            translate3d(5vw, 24vh, 0)
            scale(1.02);

    }

}


@keyframes ambientDriftBlue {

    0% {

        transform:
            translate3d(0, 0, 0)
            scale(1);

    }

    50% {

        transform:
            translate3d(-15vw, 11vh, 0)
            scale(0.93);

    }

    100% {

        transform:
            translate3d(-7vw, -10vh, 0)
            scale(1.08);

    }

}


@keyframes ambientDriftTeal {

    0% {

        transform:
            translate3d(0, 0, 0)
            scale(1);

    }

    50% {

        transform:
            translate3d(16vw, -11vh, 0)
            scale(1.09);

    }

    100% {

        transform:
            translate3d(-6vw, -18vh, 0)
            scale(0.95);

    }

}


/* =============================================================
   04. SHARED LAYOUT UTILITIES
============================================================= */

.section-shell {

    width:
        min(
            var(--content-width),
            calc(100% - (var(--page-gutter) * 2))
        );

    margin-inline:
        auto;

}


.section-shell--wide {

    width:
        min(
            var(--content-width-wide),
            calc(100% - (var(--page-gutter) * 2))
        );

}


.section-spacing {

    position:
        relative;

    padding-block:
        var(--section-space);

    scroll-margin-top:
        var(--sticky-offset);

}


.anchor-target {

    position:
        relative;

    height:
        0;

    scroll-margin-top:
        var(--sticky-offset);

}


.section-heading {

    margin-bottom:
        clamp(2.5rem, 6vw, 4.75rem);

}


.section-heading--center {

    max-width:
        56rem;

    margin-inline:
        auto;

    text-align:
        center;

}


.section-heading--split {

    display:
        grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(18rem, 0.72fr);

    align-items:
        end;

    gap:
        clamp(2rem, 5vw, 5rem);

}


.section-heading--split > p {

    margin-bottom:
        0.4rem;

    font-size:
        1.06rem;

}


.section-heading h2 {

    max-width:
        18ch;

    margin-bottom:
        0;

}


.section-heading--center h2 {

    max-width:
        21ch;

    margin-inline:
        auto;

}


.section-heading--center > p:last-child {

    max-width:
        48rem;

    margin:
        1.25rem auto 0;

    font-size:
        1.08rem;

}


.section-tag {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        0.5rem;

    margin-bottom:
        0.9rem;

    color:
        var(--blue-700);

    font-family:
        var(--font-heading);

    font-size:
        0.82rem;

    font-weight:
        800;

    letter-spacing:
        0.12em;

    text-transform:
        uppercase;

}


.section-tag::before {

    content:
        "";

    width:
        1.65rem;

    height:
        0.2rem;

    border-radius:
        999px;

    background:
        linear-gradient(
            90deg,
            var(--gold-500),
            var(--gold-300)
        );

    box-shadow:
        0 0 18px rgba(255, 183, 3, 0.4);

}


.card-kicker,
.resource-card__eyebrow {

    color:
        var(--blue-700);

    font-family:
        var(--font-heading);

    font-size:
        0.78rem;

    font-weight:
        800;

    letter-spacing:
        0.11em;

    text-transform:
        uppercase;

}


.reveal {

    opacity:
        0;

    transform:
        translateY(2rem);

    transition:
        opacity 700ms var(--ease-standard),
        transform 700ms var(--ease-standard);

}


.reveal--delay {

    transition-delay:
        140ms;

}


.reveal.is-visible {

    opacity:
        1;

    transform:
        translateY(0);

}


/* =============================================================
   05. STICKY HEADER AND EMERGENCY BAR
============================================================= */

.site-header-shell {

    position:
        sticky;

    top:
        0;

    z-index:
        2000;

    isolation:
        isolate;

}


.emergency-bar {

    min-height:
        var(--emergency-bar-height);

    color:
        var(--white);

    background:
        linear-gradient(
            90deg,
            rgba(122, 22, 33, 0.98),
            rgba(157, 36, 48, 0.98) 48%,
            rgba(128, 27, 39, 0.98)
        );

    border-bottom:
        1px solid rgba(255, 255, 255, 0.14);

    box-shadow:
        0 5px 20px rgba(80, 13, 23, 0.18);

}


.emergency-bar__inner {

    width:
        min(
            var(--content-width-wide),
            calc(100% - (var(--page-gutter) * 2))
        );

    min-height:
        var(--emergency-bar-height);

    margin-inline:
        auto;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        1.25rem;

    font-size:
        0.89rem;

}


.emergency-bar__primary,
.emergency-bar__secondary,
.emergency-bar a {

    display:
        flex;

    align-items:
        center;

    gap:
        0.55rem;

}


.emergency-bar__primary strong {

    color:
        var(--white);

    font-family:
        var(--font-heading);

    font-size:
        0.86rem;

    letter-spacing:
        0.02em;

}


.emergency-bar a {

    color:
        var(--white);

    font-weight:
        800;

    text-decoration:
        none;

}


.emergency-bar a:hover {

    text-decoration:
        underline;

    text-underline-offset:
        0.22rem;

}


.emergency-bar svg {

    width:
        1rem;

    height:
        1rem;

}


.emergency-phone {

    padding:
        0.24rem 0.65rem;

    border:
        1px solid rgba(255, 255, 255, 0.22);

    border-radius:
        999px;

    background:
        rgba(255, 255, 255, 0.09);

}


.emergency-contact-link {

    padding-left:
        0.9rem;

    border-left:
        1px solid rgba(255, 255, 255, 0.26);

}


.emergency-pulse {

    position:
        relative;

    display:
        inline-flex;

    flex:
        0 0 auto;

    width:
        0.64rem;

    height:
        0.64rem;

    border-radius:
        50%;

    background:
        #fff3a4;

    box-shadow:
        0 0 0 0 rgba(255, 243, 164, 0.56);

    animation:
        emergencyPulse
        2.6s
        ease-out
        infinite;

}


@keyframes emergencyPulse {

    0% {

        box-shadow:
            0 0 0 0
            rgba(255, 243, 164, 0.55);

    }

    70% {

        box-shadow:
            0 0 0 0.58rem
            rgba(255, 243, 164, 0);

    }

    100% {

        box-shadow:
            0 0 0 0
            rgba(255, 243, 164, 0);

    }

}


/* =============================================================
   06. MAIN HEADER, LOGO, AND DESKTOP NAVIGATION
============================================================= */

.main-header {

    position:
        relative;

    min-height:
        var(--main-header-height);

    color:
        var(--white);

    background:
        linear-gradient(
            100deg,
            rgba(4, 27, 61, 0.97),
            rgba(8, 43, 99, 0.96) 48%,
            rgba(15, 63, 140, 0.95)
        );

    border-bottom:
        1px solid rgba(255, 255, 255, 0.13);

    box-shadow:
        0 12px 35px rgba(4, 27, 61, 0.18);

    backdrop-filter:
        blur(16px);

    transition:
        box-shadow var(--transition-medium),
        background var(--transition-medium);

}


.main-header.is-scrolled {

    background:
        linear-gradient(
            100deg,
            rgba(4, 27, 61, 0.985),
            rgba(8, 43, 99, 0.98) 52%,
            rgba(13, 55, 121, 0.98)
        );

    box-shadow:
        0 15px 45px rgba(4, 27, 61, 0.28);

}


.header-container {

    width:
        min(
            var(--content-width-wide),
            calc(100% - (var(--page-gutter) * 2))
        );

    min-height:
        var(--main-header-height);

    margin-inline:
        auto;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        clamp(1.2rem, 3vw, 3rem);

}


.logo-wrapper,
.footer-logo-link {

    display:
        inline-flex;

    align-items:
        center;

    flex:
        0 0 auto;

    gap:
        0.8rem;

    color:
        var(--white);

    text-decoration:
        none;

}


.logo-frame {

    position:
        relative;

    display:
        grid;

    place-items:
        center;

    width:
        4.15rem;

    height:
        4.15rem;

    flex:
        0 0 4.15rem;

    padding:
        0.34rem;

    border:
        1px solid rgba(255, 217, 113, 0.72);

    border-radius:
        1rem;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(255, 249, 235, 0.96)
        );

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.18),
        0 0 0 0.22rem rgba(255, 183, 3, 0.08);

    overflow:
        hidden;

    transition:
        transform var(--transition-medium),
        box-shadow var(--transition-medium);

}


.logo-frame::after {

    content:
        "";

    position:
        absolute;

    inset:
        -1px;

    border-radius:
        inherit;

    background:
        linear-gradient(
            120deg,
            transparent 20%,
            rgba(255, 255, 255, 0.72),
            transparent 75%
        );

    transform:
        translateX(-140%);

    transition:
        transform 700ms var(--ease-standard);

    pointer-events:
        none;

}


.logo-wrapper:hover .logo-frame {

    transform:
        translateY(-2px)
        rotate(-1deg);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.22),
        0 0 0 0.24rem rgba(255, 183, 3, 0.16),
        0 0 28px rgba(255, 183, 3, 0.16);

}


.logo-wrapper:hover .logo-frame::after {

    transform:
        translateX(140%);

}


.logo-image,
.logo-frame img {

    width:
        100%;

    height:
        100%;

    object-fit:
        contain;

}


.logo-text-wrapper,
.footer-logo-link > span:last-child {

    display:
        flex;

    flex-direction:
        column;

    line-height:
        1.08;

}


.logo-text-wrapper strong,
.footer-logo-link strong {

    color:
        var(--white);

    font-family:
        var(--font-heading);

    font-size:
        1.08rem;

    font-weight:
        800;

    letter-spacing:
        -0.01em;

}


.logo-text-wrapper small,
.footer-logo-link small {

    margin-top:
        0.28rem;

    color:
        rgba(255, 255, 255, 0.7);

    font-size:
        0.77rem;

    font-weight:
        700;

    letter-spacing:
        0.04em;

}


.desktop-nav {

    flex:
        1 1 auto;

    display:
        flex;

    align-items:
        center;

    justify-content:
        flex-end;

    gap:
        clamp(0.55rem, 1.15vw, 1.35rem);

    min-width:
        0;

}


.nav-link,
.nav-dropdown__button {

    position:
        relative;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        2.85rem;

    padding:
        0.72rem 0.32rem;

    border:
        0;

    color:
        rgba(255, 255, 255, 0.82);

    background:
        transparent;

    font-family:
        var(--font-heading);

    font-size:
        clamp(0.78rem, 0.85vw, 0.91rem);

    font-weight:
        700;

    letter-spacing:
        -0.01em;

    text-decoration:
        none;

    white-space:
        nowrap;

    cursor:
        pointer;

    transition:
        color var(--transition-fast),
        transform var(--transition-fast);

}


.nav-link::after,
.nav-dropdown__button::after {

    content:
        "";

    position:
        absolute;

    left:
        50%;

    bottom:
        0.35rem;

    width:
        0;

    height:
        0.16rem;

    border-radius:
        999px;

    background:
        linear-gradient(
            90deg,
            var(--gold-500),
            var(--gold-300)
        );

    box-shadow:
        0 0 13px rgba(255, 183, 3, 0.42);

    transform:
        translateX(-50%);

    transition:
        width var(--transition-medium);

}


.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active,
.nav-dropdown__button:hover,
.nav-dropdown__button[aria-expanded="true"] {

    color:
        var(--white);

}


.nav-link:hover::after,
.nav-link.is-active::after,
.nav-dropdown__button:hover::after,
.nav-dropdown__button[aria-expanded="true"]::after {

    width:
        calc(100% - 0.6rem);

}


.nav-link--highlight {

    color:
        var(--gold-300);

}


.nav-contact-button {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        2.7rem;

    padding:
        0.7rem 1.05rem;

    border:
        1px solid rgba(255, 217, 113, 0.74);

    border-radius:
        999px;

    color:
        var(--navy-950);

    background:
        linear-gradient(
            135deg,
            var(--gold-300),
            var(--gold-500)
        );

    box-shadow:
        0 8px 24px rgba(255, 183, 3, 0.16);

    font-family:
        var(--font-heading);

    font-size:
        0.84rem;

    font-weight:
        800;

    text-decoration:
        none;

    white-space:
        nowrap;

    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-medium),
        filter var(--transition-fast);

}


.nav-contact-button:hover {

    transform:
        translateY(-2px);

    filter:
        brightness(1.03);

    box-shadow:
        0 12px 30px rgba(255, 183, 3, 0.25);

}


.nav-dropdown {

    position:
        relative;

}


.nav-dropdown__button {

    gap:
        0.2rem;

}


.nav-dropdown__button svg {

    width:
        1rem;

    height:
        1rem;

    transition:
        transform var(--transition-fast);

}


.nav-dropdown__button[aria-expanded="true"] svg {

    transform:
        rotate(180deg);

}


.nav-dropdown__menu {

    position:
        absolute;

    top:
        calc(100% + 0.55rem);

    right:
        -1rem;

    width:
        13rem;

    padding:
        0.55rem;

    border:
        1px solid rgba(255, 255, 255, 0.15);

    border-radius:
        1rem;

    background:
        rgba(4, 27, 61, 0.98);

    box-shadow:
        var(--shadow-lg);

    opacity:
        0;

    visibility:
        hidden;

    transform:
        translateY(-0.55rem)
        scale(0.98);

    transform-origin:
        top right;

    transition:
        opacity var(--transition-fast),
        visibility var(--transition-fast),
        transform var(--transition-medium);

}


.nav-dropdown__menu.is-open {

    opacity:
        1;

    visibility:
        visible;

    transform:
        translateY(0)
        scale(1);

}


.nav-dropdown__menu a {

    display:
        block;

    padding:
        0.72rem 0.85rem;

    border-radius:
        0.68rem;

    color:
        rgba(255, 255, 255, 0.84);

    font-family:
        var(--font-heading);

    font-size:
        0.88rem;

    font-weight:
        700;

    text-decoration:
        none;

    transition:
        color var(--transition-fast),
        background var(--transition-fast),
        transform var(--transition-fast);

}


.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {

    color:
        var(--white);

    background:
        rgba(255, 255, 255, 0.09);

    transform:
        translateX(0.2rem);

}


.mobile-menu-btn {

    display:
        none;

    width:
        3rem;

    height:
        3rem;

    border:
        1px solid rgba(255, 255, 255, 0.18);

    border-radius:
        0.8rem;

    background:
        rgba(255, 255, 255, 0.07);

    cursor:
        pointer;

}


.mobile-menu-btn span {

    display:
        block;

    width:
        1.35rem;

    height:
        0.14rem;

    margin:
        0.24rem auto;

    border-radius:
        999px;

    background:
        var(--white);

    transition:
        transform var(--transition-medium),
        opacity var(--transition-fast);

}


.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {

    transform:
        translateY(0.38rem)
        rotate(45deg);

}


.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {

    opacity:
        0;

}


.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {

    transform:
        translateY(-0.38rem)
        rotate(-45deg);

}


/* =============================================================
   07. MOBILE NAVIGATION DEFAULT
============================================================= */

.mobile-nav,
.mobile-nav-backdrop {

    display:
        none;

}


/* =============================================================
   08. HERO SECTION
============================================================= */

.hero-section {

    position:
        relative;

    min-height:
        min(
            58rem,
            calc(
                100svh
                - var(--emergency-bar-height)
                - var(--main-header-height)
            )
        );

    display:
        grid;

    align-items:
        center;

    padding:
        clamp(4.5rem, 8vw, 7rem)
        var(--page-gutter)
        clamp(6.5rem, 10vw, 9rem);

    overflow:
        clip;

    scroll-margin-top:
        var(--sticky-offset);

    background:
        radial-gradient(
            circle at 82% 24%,
            rgba(255, 217, 113, 0.23),
            transparent 20rem
        ),
        radial-gradient(
            circle at 20% 88%,
            rgba(101, 211, 200, 0.12),
            transparent 24rem
        ),
        linear-gradient(
            135deg,
            rgba(255, 253, 247, 0.82),
            rgba(244, 248, 253, 0.78)
        );

}


.hero-pattern {

    position:
        absolute;

    inset:
        0;

    pointer-events:
        none;

    background:
        radial-gradient(
            circle at center,
            rgba(8, 43, 99, 0.065) 1.4px,
            transparent 1.4px
        );

    background-size:
        28px 28px;

    mask-image:
        linear-gradient(
            100deg,
            black,
            transparent 72%
        );

    opacity:
        0.58;

}


.hero-container {

    position:
        relative;

    z-index:
        1;

    width:
        min(var(--content-width-wide), 100%);

    margin-inline:
        auto;

    display:
        grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(30rem, 0.92fr);

    align-items:
        center;

    gap:
        clamp(3rem, 7vw, 7rem);

}


.hero-eyebrow {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        0.6rem;

    margin-bottom:
        1.15rem;

    color:
        var(--blue-700);

    font-family:
        var(--font-heading);

    font-size:
        0.83rem;

    font-weight:
        800;

    letter-spacing:
        0.11em;

    text-transform:
        uppercase;

}


.eyebrow-dot {

    width:
        0.58rem;

    height:
        0.58rem;

    border-radius:
        50%;

    background:
        var(--gold-500);

    box-shadow:
        0 0 0 0.35rem rgba(255, 183, 3, 0.12),
        0 0 24px rgba(255, 183, 3, 0.32);

}


.hero-title {

    max-width:
        12.5ch;

    margin-bottom:
        1.4rem;

    color:
        var(--navy-950);

    font-weight:
        800;

    letter-spacing:
        -0.055em;

}


.rotating-word-wrap {

    position:
        relative;

    display:
        inline-block;

    min-width:
        4.7ch;

    color:
        transparent;

    background:
        linear-gradient(
            120deg,
            var(--blue-700),
            var(--teal-600) 48%,
            var(--gold-600)
        );

    background-size:
        200% 200%;

    background-clip:
        text;

    -webkit-background-clip:
        text;

    animation:
        wordGradient
        10s
        ease-in-out
        infinite;

}


.rotating-word {

    display:
        inline-block;

    transition:
        opacity 250ms ease,
        transform 250ms ease;

}


.rotating-word.is-changing {

    opacity:
        0;

    transform:
        translateY(0.25em);

}


.rotating-word-wrap::after {

    content:
        "";

    position:
        absolute;

    right:
        -0.12em;

    bottom:
        0.04em;

    left:
        0;

    height:
        0.13em;

    border-radius:
        999px;

    background:
        linear-gradient(
            90deg,
            var(--gold-500),
            var(--teal-300)
        );

    opacity:
        0.85;

    transform:
        scaleX(0.82);

    transform-origin:
        left;

    animation:
        wordUnderline
        4.8s
        ease-in-out
        infinite;

}


@keyframes wordGradient {

    0%,
    100% {

        background-position:
            0% 50%;

    }

    50% {

        background-position:
            100% 50%;

    }

}


@keyframes wordUnderline {

    0%,
    100% {

        transform:
            scaleX(0.74);

        opacity:
            0.55;

    }

    50% {

        transform:
            scaleX(1);

        opacity:
            1;

    }

}


.hero-description {

    max-width:
        43rem;

    margin-bottom:
        0;

    color:
        var(--ink-700);

    font-size:
        clamp(1.05rem, 1.6vw, 1.22rem);

    line-height:
        1.82;

}


.hero-buttons {

    display:
        flex;

    flex-wrap:
        wrap;

    align-items:
        center;

    gap:
        0.85rem;

    margin-top:
        2rem;

}


.button {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        0.55rem;

    min-height:
        3.35rem;

    padding:
        0.86rem 1.3rem;

    border:
        1px solid transparent;

    border-radius:
        0.95rem;

    font-family:
        var(--font-heading);

    font-size:
        0.92rem;

    font-weight:
        800;

    line-height:
        1;

    text-decoration:
        none;

    cursor:
        pointer;

    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-medium),
        border-color var(--transition-fast),
        color var(--transition-fast),
        background var(--transition-fast);

}


.button svg {

    width:
        1.05rem;

    height:
        1.05rem;

}


.button--primary {

    color:
        var(--white);

    background:
        linear-gradient(
            135deg,
            var(--blue-700),
            var(--navy-900)
        );

    box-shadow:
        var(--shadow-blue);

}


.button--primary:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 22px 52px rgba(15, 63, 140, 0.28),
        0 0 28px rgba(76, 134, 207, 0.12);

}


.button--secondary {

    color:
        var(--navy-900);

    background:
        rgba(255, 255, 255, 0.7);

    border-color:
        var(--border-medium);

    box-shadow:
        var(--shadow-xs);

}


.button--secondary:hover {

    transform:
        translateY(-2px);

    border-color:
        rgba(8, 43, 99, 0.28);

    background:
        var(--white);

    box-shadow:
        var(--shadow-sm);

}


.button--text {

    min-height:
        auto;

    padding:
        0.75rem 0.4rem;

    color:
        var(--blue-700);

    background:
        transparent;

}


.button--text:hover {

    color:
        var(--navy-900);

    transform:
        translateX(0.18rem);

}


.button--small {

    min-height:
        2.85rem;

    padding:
        0.72rem 1rem;

    font-size:
        0.84rem;

}


.hero-quick-stats {

    display:
        grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        0.85rem;

    margin-top:
        2.35rem;

}


.quick-stat-card {

    display:
        flex;

    align-items:
        center;

    gap:
        0.72rem;

    min-height:
        5.8rem;

    padding:
        0.86rem;

    border:
        1px solid rgba(255, 255, 255, 0.78);

    border-radius:
        1rem;

    color:
        inherit;

    background:
        rgba(255, 255, 255, 0.69);

    box-shadow:
        var(--shadow-sm);

    backdrop-filter:
        blur(12px);

    text-decoration:
        none;

    transition:
        transform var(--transition-medium),
        box-shadow var(--transition-medium),
        border-color var(--transition-fast),
        background var(--transition-fast);

}


.quick-stat-card:hover {

    transform:
        translateY(-4px);

    border-color:
        var(--border-gold);

    background:
        rgba(255, 255, 255, 0.9);

    box-shadow:
        var(--shadow-md);

}


.quick-stat-card__icon {

    display:
        grid;

    place-items:
        center;

    width:
        2.65rem;

    height:
        2.65rem;

    flex:
        0 0 2.65rem;

    border-radius:
        0.78rem;

    color:
        var(--blue-700);

    background:
        linear-gradient(
            145deg,
            var(--blue-100),
            var(--cream-100)
        );

}


.quick-stat-card__icon svg {

    width:
        1.25rem;

    height:
        1.25rem;

}


.quick-stat-card > span:last-child {

    display:
        flex;

    flex-direction:
        column;

}


.quick-stat-card strong {

    color:
        var(--navy-950);

    font-family:
        var(--font-heading);

    font-size:
        0.9rem;

}


.quick-stat-card small {

    margin-top:
        0.18rem;

    color:
        var(--ink-600);

    font-size:
        0.74rem;

    line-height:
        1.3;

}


/* =============================================================
   09. HERO COMMUNITY PUZZLE
============================================================= */

.hero-right {

    perspective:
        1200px;

}


.community-puzzle {

    position:
        relative;

    width:
        min(100%, 38rem);

    min-height:
        37rem;

    margin-inline:
        auto;

    transform-style:
        preserve-3d;

}


.community-puzzle__glow {

    position:
        absolute;

    inset:
        11% 8% 8%;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 217, 113, 0.26),
            rgba(76, 134, 207, 0.14) 45%,
            transparent 72%
        );

    filter:
        blur(18px);

    animation:
        puzzleGlow
        8s
        ease-in-out
        infinite
        alternate;

}


@keyframes puzzleGlow {

    0% {

        transform:
            scale(0.96);

        opacity:
            0.65;

    }

    100% {

        transform:
            scale(1.06);

        opacity:
            1;

    }

}


.hero-photo-card {

    position:
        absolute;

    top:
        50%;

    left:
        50%;

    width:
        min(25rem, 76%);

    aspect-ratio:
        0.86;

    padding:
        0.68rem;

    border:
        1px solid rgba(255, 255, 255, 0.8);

    border-radius:
        46% 46% 2.1rem 2.1rem;

    background:
        rgba(255, 255, 255, 0.68);

    box-shadow:
        var(--shadow-lg),
        0 0 0 0.45rem rgba(255, 255, 255, 0.35),
        0 0 65px rgba(76, 134, 207, 0.15);

    backdrop-filter:
        blur(15px);

    transform:
        translate(-50%, -50%);

    overflow:
        hidden;

    animation:
        heroPhotoFloat
        8s
        ease-in-out
        infinite;

}


@keyframes heroPhotoFloat {

    0%,
    100% {

        transform:
            translate(-50%, -50%)
            translateY(0)
            rotate(-0.35deg);

    }

    50% {

        transform:
            translate(-50%, -50%)
            translateY(-0.65rem)
            rotate(0.35deg);

    }

}


.hero-photo-card__image {

    width:
        100%;

    height:
        calc(100% - 3.3rem);

    border-radius:
        44% 44% 1.35rem 1.35rem;

    background:
        linear-gradient(
            180deg,
            rgba(4, 27, 61, 0.04),
            rgba(4, 27, 61, 0.28)
        ),
        linear-gradient(
            135deg,
            rgba(255, 183, 3, 0.35),
            rgba(15, 63, 140, 0.22)
        ),
        url("images/hero-community.jpg")
        center / cover
        no-repeat;

}


.hero-photo-card__caption {

    height:
        3.3rem;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        0.65rem;

    color:
        var(--navy-900);

    font-family:
        var(--font-heading);

    font-size:
        0.78rem;

    font-weight:
        800;

}


.live-dot {

    display:
        inline-flex;

    width:
        0.65rem;

    height:
        0.65rem;

    flex:
        0 0 auto;

    border-radius:
        50%;

    background:
        var(--success-500);

    box-shadow:
        0 0 0 0 rgba(34, 163, 90, 0.42);

    animation:
        livePulse
        2.4s
        ease-out
        infinite;

}


@keyframes livePulse {

    0% {

        box-shadow:
            0 0 0 0
            rgba(34, 163, 90, 0.44);

    }

    70% {

        box-shadow:
            0 0 0 0.55rem
            rgba(34, 163, 90, 0);

    }

    100% {

        box-shadow:
            0 0 0 0
            rgba(34, 163, 90, 0);

    }

}


.puzzle-piece {

    position:
        absolute;

    z-index:
        3;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        0.48rem;

    width:
        7.4rem;

    min-height:
        3.55rem;

    padding:
        0.72rem 0.9rem;

    border:
        1px solid rgba(255, 255, 255, 0.78);

    border-radius:
        1rem;

    color:
        var(--navy-950);

    background:
        rgba(255, 255, 255, 0.88);

    box-shadow:
        var(--shadow-md);

    backdrop-filter:
        blur(13px);

    font-family:
        var(--font-heading);

    font-size:
        0.88rem;

    font-weight:
        800;

    text-decoration:
        none;

    transition:
        transform var(--transition-medium),
        box-shadow var(--transition-medium),
        border-color var(--transition-fast);

}


.puzzle-piece::before,
.puzzle-piece::after {

    content:
        "";

    position:
        absolute;

    width:
        1rem;

    height:
        1rem;

    border-radius:
        50%;

    background:
        inherit;

    border:
        inherit;

}


.puzzle-piece::before {

    top:
        50%;

    left:
        -0.53rem;

    transform:
        translateY(-50%);

}


.puzzle-piece::after {

    top:
        -0.53rem;

    left:
        50%;

    transform:
        translateX(-50%);

}


.puzzle-piece svg {

    width:
        1.2rem;

    height:
        1.2rem;

}


.puzzle-piece:hover {

    z-index:
        5;

    border-color:
        var(--border-gold);

    box-shadow:
        var(--shadow-lg),
        0 0 28px rgba(255, 183, 3, 0.15);

}


.puzzle-piece--learn {

    top:
        4%;

    left:
        8%;

    color:
        var(--blue-700);

    animation:
        puzzleLearn
        9s
        ease-in-out
        infinite;

}


.puzzle-piece--explore {

    top:
        14%;

    right:
        1%;

    color:
        var(--teal-700);

    animation:
        puzzleExplore
        10.5s
        ease-in-out
        infinite;

}


.puzzle-piece--belong {

    bottom:
        10%;

    left:
        1%;

    color:
        var(--coral-600);

    animation:
        puzzleBelong
        11s
        ease-in-out
        infinite;

}


.puzzle-piece--grow {

    right:
        3%;

    bottom:
        4%;

    color:
        var(--warning-600);

    animation:
        puzzleGrow
        9.8s
        ease-in-out
        infinite;

}


@keyframes puzzleLearn {

    0%,
    100% {

        transform:
            translate(0, 0)
            rotate(-3deg);

    }

    50% {

        transform:
            translate(0.5rem, 0.7rem)
            rotate(1deg);

    }

}


@keyframes puzzleExplore {

    0%,
    100% {

        transform:
            translate(0, 0)
            rotate(2deg);

    }

    50% {

        transform:
            translate(-0.55rem, 0.75rem)
            rotate(-1deg);

    }

}


@keyframes puzzleBelong {

    0%,
    100% {

        transform:
            translate(0, 0)
            rotate(2deg);

    }

    50% {

        transform:
            translate(0.65rem, -0.6rem)
            rotate(-1deg);

    }

}


@keyframes puzzleGrow {

    0%,
    100% {

        transform:
            translate(0, 0)
            rotate(-2deg);

    }

    50% {

        transform:
            translate(-0.6rem, -0.75rem)
            rotate(1deg);

    }

}


.scroll-indicator {

    position:
        absolute;

    left:
        50%;

    bottom:
        1.8rem;

    display:
        flex;

    align-items:
        center;

    gap:
        0.7rem;

    color:
        var(--ink-600);

    font-family:
        var(--font-heading);

    font-size:
        0.75rem;

    font-weight:
        800;

    text-decoration:
        none;

    transform:
        translateX(-50%);

}


.scroll-indicator__mouse {

    position:
        relative;

    width:
        1.35rem;

    height:
        2.05rem;

    border:
        2px solid var(--blue-500);

    border-radius:
        999px;

}


.scroll-indicator__mouse::after {

    content:
        "";

    position:
        absolute;

    top:
        0.32rem;

    left:
        50%;

    width:
        0.2rem;

    height:
        0.42rem;

    border-radius:
        999px;

    background:
        var(--gold-500);

    transform:
        translateX(-50%);

    animation:
        mouseScroll
        2s
        ease-in-out
        infinite;

}


@keyframes mouseScroll {

    0%,
    100% {

        opacity:
            0;

        transform:
            translate(-50%, 0);

    }

    30% {

        opacity:
            1;

    }

    70% {

        opacity:
            0;

        transform:
            translate(-50%, 0.72rem);

    }

}


/* =============================================================
   10. ACTIONABLE QUICK ACCESS RIBBON
============================================================= */

.action-ribbon {

    position:
        relative;

    z-index:
        4;

    width:
        min(
            var(--content-width-wide),
            calc(100% - (var(--page-gutter) * 2))
        );

    margin:
        -2.2rem auto 0;

    padding:
        0;

    border:
        1px solid rgba(255, 255, 255, 0.9);

    border-radius:
        1.3rem;

    background:
        rgba(255, 255, 255, 0.82);

    box-shadow:
        var(--shadow-lg);

    backdrop-filter:
        blur(16px);

    overflow:
        hidden;

}


.action-ribbon__inner {

    display:
        grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

}


.action-ribbon__item {

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    gap:
        0.65rem;

    min-height:
        6.1rem;

    padding:
        1rem 1.15rem;

    color:
        inherit;

    text-decoration:
        none;

    transition:
        background var(--transition-fast),
        transform var(--transition-fast);

}


.action-ribbon__item + .action-ribbon__item {

    border-left:
        1px solid var(--border-soft);

}


.action-ribbon__item:hover {

    z-index:
        2;

    background:
        linear-gradient(
            145deg,
            var(--cream-100),
            var(--blue-050)
        );

    transform:
        translateY(-2px);

}


.action-ribbon__item svg {

    width:
        1.45rem;

    height:
        1.45rem;

    flex:
        0 0 auto;

    color:
        var(--blue-700);

}


.action-ribbon__item > span {

    display:
        flex;

    flex-direction:
        column;

}


.action-ribbon__item strong {

    color:
        var(--navy-950);

    font-family:
        var(--font-heading);

    font-size:
        0.82rem;

}


.action-ribbon__item small {

    margin-top:
        0.15rem;

    color:
        var(--ink-600);

    font-size:
        0.7rem;

    line-height:
        1.25;

}


.action-ribbon__item--contact {

    background:
        linear-gradient(
            145deg,
            rgba(255, 242, 189, 0.64),
            rgba(255, 249, 233, 0.78)
        );

}


/* =============================================================
   11. ABOUT SECTION
============================================================= */

.about-section {

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255, 253, 247, 0.6) 28%,
            rgba(255, 253, 247, 0.74)
        );

}


.about-grid {

    display:
        grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        1.25rem;

}


.about-card {

    position:
        relative;

    padding:
        clamp(1.5rem, 3vw, 2.35rem);

    border:
        1px solid var(--border-soft);

    border-radius:
        1.35rem;

    background:
        rgba(255, 255, 255, 0.86);

    box-shadow:
        var(--shadow-sm);

    overflow:
        hidden;

    transition:
        transform var(--transition-medium),
        border-color var(--transition-fast),
        box-shadow var(--transition-medium),
        background var(--transition-fast);

}


.about-card::after {

    content:
        "";

    position:
        absolute;

    right:
        -3.5rem;

    bottom:
        -3.5rem;

    width:
        8rem;

    height:
        8rem;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 183, 3, 0.12),
            transparent 70%
        );

    pointer-events:
        none;

}


.about-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(255, 183, 3, 0.32);

    background:
        var(--white);

    box-shadow:
        var(--shadow-md);

}


.about-card--feature {

    grid-row:
        span 2;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

    min-height:
        31rem;

    padding:
        clamp(2rem, 5vw, 4rem);

    color:
        var(--white);

    border-color:
        rgba(255, 255, 255, 0.14);

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(255, 217, 113, 0.24),
            transparent 14rem
        ),
        linear-gradient(
            145deg,
            var(--navy-950),
            var(--navy-800)
        );

    box-shadow:
        var(--shadow-lg);

}


.about-card--feature h3,
.about-card--feature p,
.about-card--feature .card-kicker {

    color:
        var(--white);

}


.about-card--feature .card-kicker {

    opacity:
        0.72;

}


.about-card--feature h3 {

    max-width:
        12ch;

    margin:
        1rem 0 1.2rem;

    font-size:
        clamp(2rem, 4vw, 3.35rem);

}


.about-card--feature p {

    max-width:
        42rem;

    color:
        rgba(255, 255, 255, 0.78);

    font-size:
        1.05rem;

}


.about-card__icon {

    display:
        grid;

    place-items:
        center;

    width:
        3rem;

    height:
        3rem;

    margin-bottom:
        1rem;

    border-radius:
        0.9rem;

    color:
        var(--blue-700);

    background:
        linear-gradient(
            145deg,
            var(--blue-100),
            var(--cream-100)
        );

}


.about-card__icon svg {

    width:
        1.45rem;

    height:
        1.45rem;

}


.about-card h3 {

    margin-bottom:
        0.75rem;

}


.about-card p:last-child {

    margin-bottom:
        0;

}


.text-link,
.card-action {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        0.48rem;

    width:
        fit-content;

    padding:
        0;

    border:
        0;

    color:
        var(--blue-700);

    background:
        transparent;

    font-family:
        var(--font-heading);

    font-size:
        0.86rem;

    font-weight:
        800;

    text-align:
        left;

    cursor:
        pointer;

    text-decoration:
        none;

    transition:
        color var(--transition-fast),
        transform var(--transition-fast);

}


.text-link {

    margin-top:
        1rem;

    color:
        var(--gold-300);

}


.text-link:hover,
.card-action:hover {

    color:
        var(--navy-900);

    transform:
        translateX(0.22rem);

}


.about-card--feature .text-link:hover {

    color:
        var(--white);

}


.text-link svg {

    width:
        1rem;

    height:
        1rem;

}


.check-list {

    display:
        grid;

    gap:
        0.72rem;

    margin:
        1rem 0 0;

    padding:
        0;

    list-style:
        none;

}


.check-list li {

    display:
        flex;

    align-items:
        center;

    gap:
        0.6rem;

    color:
        var(--ink-700);

    font-weight:
        700;

}


.check-list svg {

    width:
        1.1rem;

    height:
        1.1rem;

    color:
        var(--success-600);

}


/* =============================================================
   12. PROGRAMS SECTION
============================================================= */

.programs-section {

    background:
        radial-gradient(
            circle at 10% 22%,
            rgba(101, 211, 200, 0.11),
            transparent 23rem
        ),
        linear-gradient(
            180deg,
            rgba(230, 240, 251, 0.54),
            rgba(244, 248, 253, 0.76)
        );

}


.program-grid {

    display:
        grid;

    /* 2026-08-17: Three requested program panels fill the desktop row. */
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        1.15rem;

}


.program-card {

    position:
        relative;

    min-height:
        24rem;

    display:
        flex;

    flex-direction:
        column;

    padding:
        1.65rem;

    border:
        1px solid rgba(255, 255, 255, 0.82);

    border-radius:
        1.3rem;

    background:
        rgba(255, 255, 255, 0.84);

    box-shadow:
        var(--shadow-sm);

    overflow:
        hidden;

    transition:
        transform var(--transition-medium),
        box-shadow var(--transition-medium),
        border-color var(--transition-fast);

}


.program-card::before {

    content:
        "";

    position:
        absolute;

    inset:
        0 0 auto;

    height:
        0.28rem;

    background:
        linear-gradient(
            90deg,
            var(--blue-600),
            var(--gold-500),
            var(--teal-600)
        );

    opacity:
        0.82;

}


.program-card::after {

    content:
        "";

    position:
        absolute;

    top:
        -2rem;

    right:
        -2rem;

    width:
        7.5rem;

    height:
        7.5rem;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 183, 3, 0.11),
            transparent 70%
        );

    transition:
        transform var(--transition-slow);

}


.program-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(255, 183, 3, 0.35);

    box-shadow:
        var(--shadow-md);

}


.program-card:hover::after {

    transform:
        scale(1.4);

}


.program-card__icon {

    display:
        grid;

    place-items:
        center;

    width:
        3.55rem;

    height:
        3.55rem;

    margin-bottom:
        1.6rem;

    border-radius:
        1.05rem;

    color:
        var(--white);

    background:
        linear-gradient(
            145deg,
            var(--blue-700),
            var(--navy-900)
        );

    box-shadow:
        var(--shadow-blue);

}


.program-card:nth-child(2) .program-card__icon {

    background:
        linear-gradient(
            145deg,
            var(--teal-600),
            var(--teal-700)
        );

}


.program-card:nth-child(3) .program-card__icon {

    background:
        linear-gradient(
            145deg,
            var(--gold-500),
            var(--gold-600)
        );

}


.program-card:nth-child(4) .program-card__icon {

    background:
        linear-gradient(
            145deg,
            var(--coral-500),
            var(--coral-600)
        );

}


.program-card__icon svg {

    width:
        1.65rem;

    height:
        1.65rem;

}


.program-card__number {

    position:
        absolute;

    top:
        1rem;

    right:
        1.1rem;

    color:
        var(--ink-300);

    font-family:
        var(--font-heading);

    font-size:
        0.82rem;

    font-weight:
        800;

}


.program-card h3 {

    margin-bottom:
        0.8rem;

}


.program-card p {

    margin-bottom:
        1.3rem;

}


.program-card .card-action {

    margin-top:
        auto;

}


.day-at-heads-up {

    margin-top:
        clamp(2rem, 5vw, 4rem);

    display:
        grid;

    grid-template-columns:
        minmax(15rem, 0.8fr)
        minmax(0, 1.8fr);

    gap:
        2rem;

    padding:
        clamp(1.6rem, 4vw, 2.6rem);

    border:
        1px solid var(--border-soft);

    border-radius:
        1.4rem;

    background:
        linear-gradient(
            145deg,
            rgba(255, 253, 247, 0.9),
            rgba(255, 255, 255, 0.9)
        );

    box-shadow:
        var(--shadow-sm);

}


.day-at-heads-up__intro h3 {

    margin-bottom:
        0.75rem;

}


.day-at-heads-up__intro p:last-child {

    margin-bottom:
        0;

}


.day-timeline {

    position:
        relative;

    display:
        grid;

    /* 2026-08-17: Homework Club now presents four child-experience steps. */
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap:
        0.85rem;

    margin:
        0;

    padding:
        0;

    list-style:
        none;

}


.day-timeline::before {

    content:
        "";

    position:
        absolute;

    top:
        1.35rem;

    right:
        8%;

    left:
        8%;

    height:
        0.18rem;

    border-radius:
        999px;

    background:
        linear-gradient(
            90deg,
            var(--blue-500),
            var(--gold-500),
            var(--teal-600)
        );

    opacity:
        0.32;

}


.day-timeline li {

    position:
        relative;

    z-index:
        1;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    text-align:
        center;

}


.day-timeline li > span {

    display:
        grid;

    place-items:
        center;

    width:
        2.7rem;

    height:
        2.7rem;

    margin-bottom:
        0.8rem;

    border:
        0.3rem solid var(--cream-100);

    border-radius:
        50%;

    color:
        var(--white);

    background:
        var(--navy-900);

    box-shadow:
        var(--shadow-sm);

    font-family:
        var(--font-heading);

    font-size:
        0.82rem;

    font-weight:
        800;

}


.day-timeline strong {

    color:
        var(--navy-950);

    font-family:
        var(--font-heading);

    font-size:
        0.8rem;

}


.day-timeline small {

    margin-top:
        0.35rem;

    color:
        var(--ink-600);

    font-size:
        0.7rem;

    line-height:
        1.35;

}


/* =============================================================
   13. COMMUNICATION HUB
============================================================= */

.communication-hub {

    background:
        radial-gradient(
            circle at 90% 12%,
            rgba(255, 183, 3, 0.16),
            transparent 24rem
        ),
        linear-gradient(
            160deg,
            var(--navy-950),
            var(--navy-900) 52%,
            #0d397b
        );

    color:
        var(--white);

    overflow:
        hidden;

}


.communication-hub::before {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size:
        50px 50px;

    pointer-events:
        none;

}


.communication-hub .section-shell {

    position:
        relative;

    z-index:
        1;

}


.communication-hub h2,
.communication-hub h3,
.communication-hub .section-tag {

    color:
        var(--white);

}


.communication-hub .section-heading--split > p,
.communication-hub .section-heading p {

    color:
        rgba(255, 255, 255, 0.72);

}


.last-updated-card {

    display:
        inline-flex;

    align-items:
        center;

    justify-self:
        end;

    gap:
        0.75rem;

    min-width:
        14rem;

    padding:
        0.85rem 1rem;

    border:
        1px solid rgba(255, 255, 255, 0.13);

    border-radius:
        1rem;

    background:
        rgba(255, 255, 255, 0.07);

    backdrop-filter:
        blur(10px);

}


.last-updated-card > span:last-child {

    display:
        flex;

    flex-direction:
        column;

}


.last-updated-card small {

    color:
        rgba(255, 255, 255, 0.6);

    font-size:
        0.7rem;

}


.last-updated-card strong {

    color:
        var(--white);

    font-family:
        var(--font-heading);

    font-size:
        0.82rem;

}


.announcement-strip {

    position:
        relative;

    display:
        grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items:
        center;

    gap:
        1rem;

    margin-bottom:
        1.4rem;

    padding:
        0.8rem 1rem;

    border:
        1px solid rgba(255, 217, 113, 0.26);

    border-radius:
        1rem;

    background:
        linear-gradient(
            90deg,
            rgba(255, 183, 3, 0.12),
            rgba(255, 255, 255, 0.06)
        );

    overflow:
        hidden;

}


.announcement-strip::before {

    content:
        "";

    position:
        absolute;

    top:
        0;

    left:
        -30%;

    width:
        22%;

    height:
        100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.15),
            transparent
        );

    animation:
        announcementShine
        7s
        ease-in-out
        infinite;

}


@keyframes announcementShine {

    0%,
    58% {

        left:
            -30%;

    }

    100% {

        left:
            120%;

    }

}


.announcement-strip__label {

    padding:
        0.35rem 0.65rem;

    border-radius:
        999px;

    color:
        var(--navy-950);

    background:
        var(--gold-300);

    font-family:
        var(--font-heading);

    font-size:
        0.7rem;

    font-weight:
        900;

    letter-spacing:
        0.08em;

    text-transform:
        uppercase;

}


.announcement-strip__viewport {

    min-width:
        0;

    overflow:
        hidden;

}


.announcement-strip__viewport p {

    margin:
        0;

    color:
        rgba(255, 255, 255, 0.86);

    font-size:
        0.88rem;

    white-space:
        nowrap;

    overflow:
        hidden;

    text-overflow:
        ellipsis;

}


.announcement-strip > a {

    color:
        var(--gold-300);

    font-family:
        var(--font-heading);

    font-size:
        0.8rem;

    font-weight:
        800;

    text-decoration:
        none;

}


.hub-tabs {

    display:
        flex;

    gap:
        0.6rem;

    width:
        fit-content;

    max-width:
        100%;

    margin-bottom:
        1.4rem;

    padding:
        0.38rem;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius:
        1rem;

    background:
        rgba(255, 255, 255, 0.06);

    overflow-x:
        auto;

    scrollbar-width:
        none;

}


.hub-tabs::-webkit-scrollbar {

    display:
        none;

}


.hub-tab {

    min-height:
        2.75rem;

    padding:
        0.68rem 1rem;

    border:
        0;

    border-radius:
        0.72rem;

    color:
        rgba(255, 255, 255, 0.67);

    background:
        transparent;

    font-family:
        var(--font-heading);

    font-size:
        0.82rem;

    font-weight:
        800;

    white-space:
        nowrap;

    cursor:
        pointer;

    transition:
        color var(--transition-fast),
        background var(--transition-fast),
        box-shadow var(--transition-fast);

}


.hub-tab:hover {

    color:
        var(--white);

    background:
        rgba(255, 255, 255, 0.06);

}


.hub-tab.is-active {

    color:
        var(--navy-950);

    background:
        linear-gradient(
            135deg,
            var(--gold-300),
            var(--gold-500)
        );

    box-shadow:
        0 8px 24px rgba(255, 183, 3, 0.2);

}


.hub-panel {

    animation:
        panelEnter
        360ms
        var(--ease-standard);

}


@keyframes panelEnter {

    from {

        opacity:
            0;

        transform:
            translateY(0.55rem);

    }

    to {

        opacity:
            1;

        transform:
            translateY(0);

    }

}


.featured-update-shell {

    margin-bottom:
        1.15rem;

}


.featured-update-card {

    position:
        relative;

    min-height:
        18rem;

    display:
        grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(15rem, 0.55fr);

    align-items:
        end;

    gap:
        2rem;

    padding:
        clamp(1.6rem, 4vw, 3rem);

    border:
        1px solid rgba(255, 255, 255, 0.15);

    border-radius:
        1.45rem;

    background:
        radial-gradient(
            circle at 86% 18%,
            rgba(255, 217, 113, 0.28),
            transparent 16rem
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.055)
        );

    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.18);

    backdrop-filter:
        blur(10px);

    overflow:
        hidden;

}


.featured-update-card::before {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    border-radius:
        inherit;

    box-shadow:
        inset 0 0 0 1px rgba(255, 183, 3, 0.10),
        inset 0 0 42px rgba(76, 134, 207, 0.06);

    pointer-events:
        none;

    animation:
        featuredBreath
        5.5s
        ease-in-out
        infinite
        alternate;

}


@keyframes featuredBreath {

    from {

        opacity:
            0.55;

    }

    to {

        opacity:
            1;

    }

}


.featured-update-card__content {

    position:
        relative;

    z-index:
        1;

}


.featured-update-card__badge {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        0.45rem;

    margin-bottom:
        1rem;

    padding:
        0.42rem 0.72rem;

    border:
        1px solid rgba(255, 217, 113, 0.35);

    border-radius:
        999px;

    color:
        var(--gold-300);

    background:
        rgba(255, 183, 3, 0.08);

    font-family:
        var(--font-heading);

    font-size:
        0.72rem;

    font-weight:
        900;

    letter-spacing:
        0.08em;

    text-transform:
        uppercase;

}


.featured-update-card h3 {

    max-width:
        18ch;

    margin-bottom:
        1rem;

    color:
        var(--white);

    font-size:
        clamp(1.8rem, 4vw, 3rem);

}


.featured-update-card p {

    max-width:
        46rem;

    margin-bottom:
        0;

    color:
        rgba(255, 255, 255, 0.76);

    font-size:
        1.02rem;

}


.featured-update-card__meta {

    position:
        relative;

    z-index:
        1;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-start;

    gap:
        0.75rem;

    padding:
        1rem;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius:
        1rem;

    background:
        rgba(4, 27, 61, 0.38);

}


.featured-update-card__meta span {

    display:
        flex;

    align-items:
        center;

    gap:
        0.5rem;

    color:
        rgba(255, 255, 255, 0.78);

    font-size:
        0.82rem;

}


.featured-update-card__meta svg {

    color:
        var(--gold-300);

}


.featured-update-card__meta button {

    margin-top:
        0.35rem;

}


.update-card-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        1rem;

}


.update-card {

    display:
        flex;

    flex-direction:
        column;

    min-height:
        15.2rem;

    padding:
        1.35rem;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius:
        1.2rem;

    background:
        rgba(255, 255, 255, 0.075);

    transition:
        transform var(--transition-medium),
        background var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-medium);

}


.update-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(255, 217, 113, 0.25);

    background:
        rgba(255, 255, 255, 0.105);

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.15);

}


.update-card__top {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        0.7rem;

    margin-bottom:
        1rem;

}


.update-card__tag {

    padding:
        0.32rem 0.55rem;

    border-radius:
        999px;

    color:
        var(--gold-300);

    background:
        rgba(255, 183, 3, 0.1);

    font-family:
        var(--font-heading);

    font-size:
        0.66rem;

    font-weight:
        900;

    letter-spacing:
        0.07em;

    text-transform:
        uppercase;

}


.update-card__date {

    color:
        rgba(255, 255, 255, 0.47);

    font-size:
        0.7rem;

}


.update-card h3 {

    margin-bottom:
        0.65rem;

    color:
        var(--white);

    font-size:
        1.1rem;

}


.update-card p {

    margin-bottom:
        1.1rem;

    color:
        rgba(255, 255, 255, 0.67);

    font-size:
        0.87rem;

}


.update-card button {

    margin-top:
        auto;

    color:
        var(--gold-300);

}


.schedule-summary,
.event-toolbar {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        1.5rem;

    margin-bottom:
        1.2rem;

}


.schedule-summary h3,
.event-toolbar h3 {

    margin-bottom:
        0;

}


.schedule-table {

    display:
        grid;

    gap:
        0.7rem;

}


.schedule-row {

    display:
        grid;

    grid-template-columns:
        8rem
        minmax(9rem, 0.75fr)
        minmax(0, 1.25fr)
        auto;

    align-items:
        center;

    gap:
        1rem;

    min-height:
        5.5rem;

    padding:
        0.85rem 1rem;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius:
        1rem;

    background:
        rgba(255, 255, 255, 0.065);

    transition:
        background var(--transition-fast),
        transform var(--transition-fast),
        border-color var(--transition-fast);

}


.schedule-row:hover {

    transform:
        translateX(0.25rem);

    border-color:
        rgba(255, 217, 113, 0.22);

    background:
        rgba(255, 255, 255, 0.09);

}


.schedule-row__day {

    display:
        flex;

    align-items:
        center;

    gap:
        0.55rem;

    color:
        var(--gold-300);

    font-family:
        var(--font-heading);

    font-size:
        0.82rem;

    font-weight:
        900;

    letter-spacing:
        0.05em;

    text-transform:
        uppercase;

}


.schedule-row__time {

    color:
        var(--white);

    font-family:
        var(--font-heading);

    font-size:
        0.87rem;

    font-weight:
        800;

}


.schedule-row__activity strong {

    display:
        block;

    color:
        var(--white);

    font-family:
        var(--font-heading);

    font-size:
        0.9rem;

}


.schedule-row__activity small {

    color:
        rgba(255, 255, 255, 0.56);

}


.schedule-row__audience {

    padding:
        0.36rem 0.58rem;

    border-radius:
        999px;

    color:
        rgba(255, 255, 255, 0.78);

    background:
        rgba(255, 255, 255, 0.08);

    font-size:
        0.7rem;

    white-space:
        nowrap;

}


.event-toolbar {

    align-items:
        flex-end;

}


.event-filter {

    display:
        flex;

    align-items:
        center;

    gap:
        0.35rem;

    padding:
        0.35rem;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius:
        0.9rem;

    background:
        rgba(255, 255, 255, 0.055);

}


.event-filter > svg {

    margin-inline:
        0.4rem 0.2rem;

    color:
        var(--gold-300);

}


.event-filter__button {

    padding:
        0.56rem 0.7rem;

    border:
        0;

    border-radius:
        0.62rem;

    color:
        rgba(255, 255, 255, 0.65);

    background:
        transparent;

    font-family:
        var(--font-heading);

    font-size:
        0.72rem;

    font-weight:
        800;

    cursor:
        pointer;

}


.event-filter__button:hover,
.event-filter__button.is-active {

    color:
        var(--navy-950);

    background:
        var(--gold-300);

}


.event-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        1rem;

}


.event-card {

    position:
        relative;

    display:
        flex;

    flex-direction:
        column;

    min-height:
        22rem;

    padding:
        1.3rem;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius:
        1.25rem;

    background:
        rgba(255, 255, 255, 0.075);

    overflow:
        hidden;

    transition:
        transform var(--transition-medium),
        background var(--transition-fast),
        border-color var(--transition-fast);

}


.event-card::before {

    content:
        "";

    position:
        absolute;

    top:
        -3rem;

    right:
        -3rem;

    width:
        8rem;

    height:
        8rem;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 183, 3, 0.2),
            transparent 70%
        );

}


.event-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(255, 217, 113, 0.26);

    background:
        rgba(255, 255, 255, 0.1);

}


.event-card__date {

    width:
        fit-content;

    min-width:
        4.5rem;

    margin-bottom:
        1.1rem;

    padding:
        0.65rem 0.75rem;

    border-radius:
        0.9rem;

    color:
        var(--navy-950);

    background:
        linear-gradient(
            145deg,
            var(--gold-300),
            var(--gold-500)
        );

    text-align:
        center;

    box-shadow:
        0 10px 25px rgba(255, 183, 3, 0.16);

}


.event-card__date strong,
.event-card__date span {

    display:
        block;

    font-family:
        var(--font-heading);

}


.event-card__date strong {

    font-size:
        1.5rem;

    line-height:
        1;

}


.event-card__date span {

    margin-top:
        0.25rem;

    font-size:
        0.67rem;

    font-weight:
        900;

    letter-spacing:
        0.08em;

    text-transform:
        uppercase;

}


.event-card__audience {

    position:
        absolute;

    top:
        1.2rem;

    right:
        1.2rem;

    padding:
        0.34rem 0.55rem;

    border-radius:
        999px;

    color:
        rgba(255, 255, 255, 0.72);

    background:
        rgba(255, 255, 255, 0.09);

    font-size:
        0.68rem;

    font-weight:
        800;

    text-transform:
        capitalize;

}


.event-card h3 {

    margin-bottom:
        0.65rem;

    color:
        var(--white);

    font-size:
        1.25rem;

}


.event-card p {

    color:
        rgba(255, 255, 255, 0.65);

    font-size:
        0.87rem;

}


.event-card__details {

    display:
        grid;

    gap:
        0.4rem;

    margin:
        auto 0 1rem;

}


.event-card__details span {

    display:
        flex;

    align-items:
        center;

    gap:
        0.45rem;

    color:
        rgba(255, 255, 255, 0.73);

    font-size:
        0.78rem;

}


.event-card__details svg {

    color:
        var(--gold-300);

}


.event-card__actions {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        0.55rem;

}


.event-card__actions button {

    flex:
        1 1 auto;

    min-height:
        2.55rem;

    padding:
        0.6rem 0.75rem;

    border:
        1px solid rgba(255, 255, 255, 0.14);

    border-radius:
        0.72rem;

    color:
        var(--white);

    background:
        rgba(255, 255, 255, 0.065);

    font-family:
        var(--font-heading);

    font-size:
        0.72rem;

    font-weight:
        800;

    cursor:
        pointer;

}


.event-card__actions button:hover {

    color:
        var(--navy-950);

    background:
        var(--gold-300);

}


.hub-help {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        1.5rem;

    margin-top:
        1.2rem;

    padding:
        1rem 1.15rem;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius:
        1rem;

    background:
        rgba(255, 255, 255, 0.055);

}


.hub-help > div {

    display:
        flex;

    flex-direction:
        column;

}


.hub-help strong {

    color:
        var(--white);

    font-family:
        var(--font-heading);

}


.hub-help span {

    color:
        rgba(255, 255, 255, 0.58);

    font-size:
        0.82rem;

}


/* =============================================================
   14. GALLERY
============================================================= */

.gallery-section {

    background:
        radial-gradient(
            circle at 10% 80%,
            rgba(255, 183, 3, 0.1),
            transparent 22rem
        ),
        linear-gradient(
            180deg,
            var(--cream-100),
            rgba(244, 248, 253, 0.82)
        );

    overflow:
        hidden;

}


.gallery-controls {

    justify-self:
        end;

    display:
        flex;

    gap:
        0.55rem;

}


.gallery-controls button {

    display:
        grid;

    place-items:
        center;

    width:
        2.85rem;

    height:
        2.85rem;

    border:
        1px solid var(--border-medium);

    border-radius:
        0.82rem;

    color:
        var(--navy-900);

    background:
        rgba(255, 255, 255, 0.82);

    box-shadow:
        var(--shadow-xs);

    cursor:
        pointer;

    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-fast);

}


.gallery-controls button:hover {

    transform:
        translateY(-2px);

    background:
        var(--white);

    box-shadow:
        var(--shadow-sm);

}


.gallery-toggle-play {

    display:
        none;

}


#galleryToggle[aria-pressed="true"] .gallery-toggle-pause {

    display:
        none;

}


#galleryToggle[aria-pressed="true"] .gallery-toggle-play {

    display:
        block;

}


.gallery-marquee {

    position:
        relative;

    width:
        100%;

    overflow:
        hidden;

    mask-image:
        linear-gradient(
            90deg,
            transparent,
            black 5%,
            black 95%,
            transparent
        );

}


.gallery-track {

    display:
        flex;

    gap:
        1rem;

    width:
        max-content;

    animation:
        galleryMarquee
        52s
        linear
        infinite;

    will-change:
        transform;

}


.gallery-marquee:hover .gallery-track,
.gallery-marquee:focus-within .gallery-track,
.gallery-track.is-paused {

    animation-play-state:
        paused;

}


@keyframes galleryMarquee {

    from {

        transform:
            translateX(0);

    }

    to {

        transform:
            translateX(calc(-50% - 0.5rem));

    }

}


.gallery-card {

    width:
        clamp(17rem, 28vw, 23rem);

    flex:
        0 0 auto;

    border:
        1px solid rgba(255, 255, 255, 0.88);

    border-radius:
        1.25rem;

    background:
        var(--white);

    box-shadow:
        var(--shadow-md);

    overflow:
        hidden;

    transition:
        transform var(--transition-medium),
        box-shadow var(--transition-medium);

}


.gallery-card:hover {

    transform:
        translateY(-6px)
        scale(1.012);

    box-shadow:
        var(--shadow-lg);

}


.gallery-photo {

    aspect-ratio:
        1.45;

    background-position:
        center;

    background-size:
        cover;

}


/* =============================================================
   IMAGE PATHS
============================================================= */

.gallery-photo--1 {

    background-image:
        linear-gradient(
            180deg,
            transparent,
            rgba(4, 27, 61, 0.18)
        ),
        linear-gradient(
            135deg,
            rgba(255, 183, 3, 0.38),
            rgba(15, 63, 140, 0.28)
        ),
        url("images/gallery-01.jpg");

}


.gallery-photo--2 {

    background-image:
        linear-gradient(
            180deg,
            transparent,
            rgba(4, 27, 61, 0.18)
        ),
        linear-gradient(
            135deg,
            rgba(76, 134, 207, 0.38),
            rgba(13, 148, 136, 0.28)
        ),
        url("images/gallery-02.jpg");

}


.gallery-photo--3 {

    background-image:
        linear-gradient(
            180deg,
            transparent,
            rgba(4, 27, 61, 0.18)
        ),
        linear-gradient(
            135deg,
            rgba(235, 112, 91, 0.36),
            rgba(255, 183, 3, 0.28)
        ),
        url("images/gallery-03.jpg");

}


.gallery-photo--4 {

    background-image:
        linear-gradient(
            180deg,
            transparent,
            rgba(4, 27, 61, 0.18)
        ),
        linear-gradient(
            135deg,
            rgba(13, 148, 136, 0.36),
            rgba(76, 134, 207, 0.28)
        ),
        url("images/gallery-04.jpg");

}


.gallery-photo--5 {

    background-image:
        linear-gradient(
            180deg,
            transparent,
            rgba(4, 27, 61, 0.18)
        ),
        linear-gradient(
            135deg,
            rgba(15, 63, 140, 0.36),
            rgba(255, 183, 3, 0.25)
        ),
        url("images/gallery-05.jpg");

}


.gallery-photo--6 {

    background-image:
        linear-gradient(
            180deg,
            transparent,
            rgba(4, 27, 61, 0.18)
        ),
        linear-gradient(
            135deg,
            rgba(13, 148, 136, 0.4),
            rgba(255, 183, 3, 0.24)
        ),
        url("images/gallery-06.jpg");

}


.gallery-photo--7 {

    background-image:
        linear-gradient(
            180deg,
            transparent,
            rgba(4, 27, 61, 0.18)
        ),
        linear-gradient(
            135deg,
            rgba(255, 183, 3, 0.34),
            rgba(235, 112, 91, 0.3)
        ),
        url("images/gallery-07.jpg");

}


.gallery-photo--8 {

    background-image:
        linear-gradient(
            180deg,
            transparent,
            rgba(4, 27, 61, 0.18)
        ),
        linear-gradient(
            135deg,
            rgba(76, 134, 207, 0.38),
            rgba(255, 183, 3, 0.24)
        ),
        url("images/gallery-08.jpg");

}


.gallery-card__caption {

    display:
        flex;

    flex-direction:
        column;

    min-height:
        5.1rem;

    justify-content:
        center;

    padding:
        0.9rem 1rem;

}


.gallery-card__caption strong {

    color:
        var(--navy-950);

    font-family:
        var(--font-heading);

    font-size:
        0.92rem;

}


.gallery-card__caption span {

    margin-top:
        0.2rem;

    color:
        var(--ink-600);

    font-size:
        0.77rem;

}


.gallery-note {

    margin:
        1.1rem 0 0;

    color:
        var(--ink-600);

    font-size:
        0.76rem;

    text-align:
        center;

}


.gallery-note code {

    padding:
        0.12rem 0.3rem;

    border-radius:
        0.28rem;

    color:
        var(--navy-900);

    background:
        var(--blue-100);

}


/* =============================================================
   15. STORIES
============================================================= */

.stories-section {

    background:
        radial-gradient(
            circle at 85% 12%,
            rgba(101, 211, 200, 0.1),
            transparent 23rem
        ),
        linear-gradient(
            180deg,
            rgba(244, 248, 253, 0.8),
            rgba(255, 255, 255, 0.66)
        );

}


.story-grid {

    display:
        grid;

    grid-template-columns:
        1.25fr
        repeat(2, minmax(0, 1fr));

    gap:
        1rem;

}


.story-card {

    position:
        relative;

    min-height:
        18rem;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        space-between;

    padding:
        clamp(1.45rem, 3vw, 2.2rem);

    border:
        1px solid var(--border-soft);

    border-radius:
        1.3rem;

    background:
        rgba(255, 255, 255, 0.88);

    box-shadow:
        var(--shadow-sm);

    overflow:
        hidden;

    transition:
        transform var(--transition-medium),
        box-shadow var(--transition-medium),
        border-color var(--transition-fast);

}


.story-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(255, 183, 3, 0.3);

    box-shadow:
        var(--shadow-md);

}


.story-card--featured {

    color:
        var(--white);

    border-color:
        rgba(255, 255, 255, 0.12);

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255, 217, 113, 0.22),
            transparent 12rem
        ),
        linear-gradient(
            145deg,
            var(--navy-950),
            var(--navy-800)
        );

}


.story-card__quote-mark {

    position:
        absolute;

    top:
        -1.1rem;

    right:
        1.2rem;

    color:
        rgba(255, 183, 3, 0.22);

    font-family:
        Georgia, serif;

    font-size:
        8rem;

    line-height:
        1;

    pointer-events:
        none;

}


.story-card blockquote {

    position:
        relative;

    z-index:
        1;

    margin-bottom:
        1.5rem;

    color:
        var(--navy-950);

    font-family:
        var(--font-heading);

    font-size:
        clamp(1.05rem, 1.7vw, 1.35rem);

    font-weight:
        700;

    line-height:
        1.55;

}


.story-card--featured blockquote {

    color:
        var(--white);

}


.story-card footer {

    color:
        var(--blue-700);

    font-family:
        var(--font-heading);

    font-size:
        0.78rem;

    font-weight:
        800;

}


.story-card--featured footer {

    color:
        var(--gold-300);

}


.story-cta {

    margin-top:
        1.25rem;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        2rem;

    padding:
        1.4rem 1.55rem;

    border:
        1px solid var(--border-soft);

    border-radius:
        1.2rem;

    background:
        linear-gradient(
            145deg,
            rgba(255, 253, 247, 0.85),
            rgba(255, 255, 255, 0.9)
        );

    box-shadow:
        var(--shadow-sm);

}


.story-cta h3 {

    max-width:
        26ch;

    margin-bottom:
        0;

}


/* =============================================================
   16. RESOURCES
============================================================= */

.resources-section {

    background:
        radial-gradient(
            circle at 8% 10%,
            rgba(255, 183, 3, 0.1),
            transparent 20rem
        ),
        linear-gradient(
            180deg,
            rgba(255, 253, 247, 0.86),
            rgba(244, 248, 253, 0.8)
        );

}


.resource-grid {

    display:
        grid;

    grid-template-columns:
        repeat(12, minmax(0, 1fr));

    gap:
        1rem;

}


.resource-card {

    position:
        relative;

    grid-column:
        span 4;

    min-height:
        20rem;

    display:
        flex;

    flex-direction:
        column;

    padding:
        1.55rem;

    border:
        1px solid var(--border-soft);

    border-radius:
        1.25rem;

    background:
        rgba(255, 255, 255, 0.88);

    box-shadow:
        var(--shadow-sm);

    overflow:
        hidden;

    transition:
        transform var(--transition-medium),
        box-shadow var(--transition-medium),
        border-color var(--transition-fast);

}


.resource-card:nth-child(4),
.resource-card:nth-child(5) {

    grid-column:
        span 6;

}


.resource-card::before {

    content:
        "";

    position:
        absolute;

    inset:
        0 auto 0 0;

    width:
        0.28rem;

    background:
        var(--blue-600);

}


.resource-card--parents::before {

    background:
        var(--coral-500);

}


.resource-card--volunteers::before {

    background:
        var(--teal-600);

}


.resource-card--research::before {

    background:
        var(--blue-600);

}


.resource-card--incoming::before {

    background:
        var(--gold-500);

}


.resource-card--community::before {

    background:
        var(--navy-800);

}


.resource-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(8, 43, 99, 0.19);

    box-shadow:
        var(--shadow-md);

}


.resource-card__icon {

    display:
        grid;

    place-items:
        center;

    width:
        3.15rem;

    height:
        3.15rem;

    margin-bottom:
        1.1rem;

    border-radius:
        0.95rem;

    color:
        var(--blue-700);

    background:
        var(--blue-100);

}


.resource-card--parents .resource-card__icon {

    color:
        var(--coral-600);

    background:
        var(--coral-100);

}


.resource-card--volunteers .resource-card__icon {

    color:
        var(--teal-700);

    background:
        var(--teal-100);

}


.resource-card--incoming .resource-card__icon {

    color:
        var(--warning-600);

    background:
        var(--gold-100);

}


.resource-card__icon svg {

    width:
        1.5rem;

    height:
        1.5rem;

}


.resource-card h3 {

    margin:
        0.6rem 0 0.75rem;

}


.resource-card p {

    margin-bottom:
        1.2rem;

}


.resource-card .card-action {

    margin-top:
        auto;

}


.transparency-panel {

    margin-top:
        1.25rem;

    display:
        grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(18rem, 0.85fr);

    align-items:
        center;

    gap:
        2rem;

    padding:
        clamp(1.5rem, 4vw, 2.3rem);

    border:
        1px solid var(--border-soft);

    border-radius:
        1.35rem;

    background:
        radial-gradient(
            circle at 95% 10%,
            rgba(255, 183, 3, 0.13),
            transparent 12rem
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.9),
            rgba(230, 240, 251, 0.78)
        );

    box-shadow:
        var(--shadow-sm);

}


.transparency-panel__content h3 {

    margin-bottom:
        0.75rem;

}


.transparency-panel__content p:last-child {

    margin-bottom:
        0;

}


.transparency-panel__actions {

    display:
        grid;

    gap:
        0.65rem;

}


/* =============================================================
   17. TEAM
============================================================= */

.team-section {

    background:
        radial-gradient(
            circle at 80% 85%,
            rgba(76, 134, 207, 0.12),
            transparent 24rem
        ),
        linear-gradient(
            180deg,
            rgba(244, 248, 253, 0.84),
            rgba(255, 253, 247, 0.76)
        );

}


.team-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        1rem;

}


.team-card {

    border:
        1px solid var(--border-soft);

    border-radius:
        1.3rem;

    background:
        rgba(255, 255, 255, 0.88);

    box-shadow:
        var(--shadow-sm);

    overflow:
        hidden;

    transition:
        transform var(--transition-medium),
        box-shadow var(--transition-medium),
        border-color var(--transition-fast);

}


.team-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(255, 183, 3, 0.3);

    box-shadow:
        var(--shadow-md);

}


.team-photo {

    aspect-ratio:
        1.45;

    background-position:
        center;

    background-size:
        cover;

}


.team-photo--leadership {

    background-image:
        linear-gradient(
            180deg,
            transparent,
            rgba(4, 27, 61, 0.2)
        ),
        linear-gradient(
            135deg,
            rgba(255, 183, 3, 0.3),
            rgba(15, 63, 140, 0.26)
        ),
        url("images/team-leadership.jpg");

}


.team-photo--research {

    background-image:
        linear-gradient(
            180deg,
            transparent,
            rgba(4, 27, 61, 0.2)
        ),
        linear-gradient(
            135deg,
            rgba(13, 148, 136, 0.3),
            rgba(15, 63, 140, 0.28)
        ),
        url("images/team-research.jpg");

}


.team-photo--volunteers {

    background-image:
        linear-gradient(
            180deg,
            transparent,
            rgba(4, 27, 61, 0.2)
        ),
        linear-gradient(
            135deg,
            rgba(235, 112, 91, 0.28),
            rgba(255, 183, 3, 0.3)
        ),
        url("images/team-volunteers.jpg");

}


.team-card__body {

    padding:
        1.35rem;

}


.team-card__body > span {

    color:
        var(--blue-700);

    font-family:
        var(--font-heading);

    font-size:
        0.72rem;

    font-weight:
        900;

    letter-spacing:
        0.08em;

    text-transform:
        uppercase;

}


.team-card__body h3 {

    margin:
        0.55rem 0 0.72rem;

}


.team-card__body p {

    margin-bottom:
        1rem;

}


/* =============================================================
   18. FAQ
============================================================= */

.faq-section {

    background:
        linear-gradient(
            160deg,
            rgba(230, 240, 251, 0.7),
            rgba(255, 253, 247, 0.82)
        );

}


.faq-shell {

    display:
        grid;

    grid-template-columns:
        minmax(16rem, 0.7fr)
        minmax(0, 1.3fr);

    gap:
        clamp(2rem, 6vw, 6rem);

    align-items:
        start;

}


.faq-shell .section-heading {

    position:
        sticky;

    top:
        calc(var(--sticky-offset) + 1rem);

    margin-bottom:
        0;

}


.faq-list {

    display:
        grid;

    gap:
        0.75rem;

}


.faq-item {

    border:
        1px solid var(--border-soft);

    border-radius:
        1rem;

    background:
        rgba(255, 255, 255, 0.9);

    box-shadow:
        var(--shadow-xs);

    overflow:
        hidden;

}


.faq-item h3 {

    margin:
        0;

}


.faq-question {

    width:
        100%;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        1rem;

    min-height:
        4.7rem;

    padding:
        1rem 1.15rem;

    border:
        0;

    color:
        var(--navy-950);

    background:
        transparent;

    font-family:
        var(--font-heading);

    font-size:
        0.95rem;

    font-weight:
        800;

    text-align:
        left;

    cursor:
        pointer;

}


.faq-question > span {

    display:
        grid;

    place-items:
        center;

    width:
        2rem;

    height:
        2rem;

    flex:
        0 0 2rem;

    border-radius:
        0.6rem;

    color:
        var(--blue-700);

    background:
        var(--blue-100);

    font-size:
        1.25rem;

    transition:
        transform var(--transition-medium),
        background var(--transition-fast);

}


.faq-question[aria-expanded="true"] > span {

    transform:
        rotate(45deg);

    background:
        var(--gold-100);

}


.faq-answer {

    padding:
        0 1.15rem 1.15rem;

}


.faq-answer p {

    margin-bottom:
        0.75rem;

}


.faq-answer a,
.faq-answer button {

    padding:
        0;

    border:
        0;

    color:
        var(--blue-700);

    background:
        transparent;

    font-family:
        var(--font-heading);

    font-size:
        0.82rem;

    font-weight:
        800;

    text-decoration:
        none;

    cursor:
        pointer;

}


/* =============================================================
   19. CONTACT
============================================================= */

.contact-section {

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(255, 183, 3, 0.14),
            transparent 22rem
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(13, 148, 136, 0.09),
            transparent 26rem
        ),
        linear-gradient(
            180deg,
            var(--cream-100),
            var(--blue-050)
        );

}


.contact-wrapper {

    display:
        grid;

    grid-template-columns:
        minmax(17rem, 0.75fr)
        minmax(0, 1.25fr);

    gap:
        1.25rem;

}


.contact-left {

    display:
        grid;

    align-content:
        start;

    gap:
        0.75rem;

}


.contact-info-card {

    display:
        flex;

    align-items:
        center;

    gap:
        0.85rem;

    min-height:
        5.2rem;

    padding:
        0.85rem 1rem;

    border:
        1px solid var(--border-soft);

    border-radius:
        1rem;

    background:
        rgba(255, 255, 255, 0.88);

    box-shadow:
        var(--shadow-xs);

}


.contact-info-card__icon {

    display:
        grid;

    place-items:
        center;

    width:
        2.8rem;

    height:
        2.8rem;

    flex:
        0 0 2.8rem;

    border-radius:
        0.82rem;

    color:
        var(--blue-700);

    background:
        var(--blue-100);

}


.contact-info-card__icon svg {

    width:
        1.3rem;

    height:
        1.3rem;

}


.contact-info-card > div {

    display:
        flex;

    flex-direction:
        column;

}


.contact-info-card small {

    color:
        var(--ink-600);

    font-size:
        0.72rem;

}


.contact-info-card a,
.contact-info-card span {

    color:
        var(--navy-950);

    font-family:
        var(--font-heading);

    font-size:
        0.86rem;

    font-weight:
        800;

    text-decoration:
        none;

}


.contact-info-card a:hover {

    color:
        var(--blue-700);

}


.contact-emergency-card {

    margin-top:
        0.2rem;

    padding:
        1.05rem;

    border:
        1px solid rgba(191, 51, 64, 0.22);

    border-radius:
        1.1rem;

    background:
        linear-gradient(
            145deg,
            rgba(255, 229, 232, 0.88),
            rgba(255, 255, 255, 0.92)
        );

    box-shadow:
        var(--shadow-sm);

}


.contact-emergency-card > div > strong {

    margin-left:
        0.45rem;

    color:
        var(--danger-700);

    font-family:
        var(--font-heading);

}


.contact-emergency-card p {

    margin:
        0.6rem 0 0.9rem;

    font-size:
        0.82rem;

}


.emergency-call-button {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        0.5rem;

    min-height:
        2.85rem;

    padding:
        0.72rem 0.9rem;

    border-radius:
        0.75rem;

    color:
        var(--white);

    background:
        linear-gradient(
            135deg,
            var(--danger-600),
            var(--danger-700)
        );

    box-shadow:
        0 10px 28px rgba(191, 51, 64, 0.2);

    font-family:
        var(--font-heading);

    font-size:
        0.8rem;

    font-weight:
        800;

    text-decoration:
        none;

}


.contact-form {

    padding:
        clamp(1.4rem, 4vw, 2.4rem);

    border:
        1px solid var(--border-soft);

    border-radius:
        1.35rem;

    background:
        rgba(255, 255, 255, 0.91);

    box-shadow:
        var(--shadow-md);

}


.form-heading {

    margin-bottom:
        1.3rem;

}


.form-heading span {

    color:
        var(--blue-700);

    font-family:
        var(--font-heading);

    font-size:
        0.76rem;

    font-weight:
        900;

    letter-spacing:
        0.08em;

    text-transform:
        uppercase;

}


.form-heading h3 {

    margin:
        0.45rem 0 0;

}


.form-row {

    display:
        grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        0.9rem;

}


.form-field {

    display:
        flex;

    flex-direction:
        column;

    gap:
        0.38rem;

    margin-bottom:
        0.9rem;

}


.form-field label {

    color:
        var(--navy-950);

    font-family:
        var(--font-heading);

    font-size:
        0.78rem;

    font-weight:
        800;

}


.form-field input,
.form-field select,
.form-field textarea,
.footer-newsletter input {

    width:
        100%;

    border:
        1px solid var(--ink-200);

    border-radius:
        0.78rem;

    color:
        var(--ink-900);

    background:
        rgba(248, 251, 255, 0.92);

    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-fast);

}


.form-field input,
.form-field select {

    min-height:
        3.2rem;

    padding:
        0.72rem 0.85rem;

}


.form-field textarea {

    min-height:
        9.5rem;

    padding:
        0.82rem 0.85rem;

    resize:
        vertical;

}


.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.footer-newsletter input:focus {

    outline:
        none;

    border-color:
        var(--blue-500);

    background:
        var(--white);

    box-shadow:
        0 0 0 0.24rem rgba(76, 134, 207, 0.13);

}


.form-field.has-error input,
.form-field.has-error textarea {

    border-color:
        var(--danger-500);

    box-shadow:
        0 0 0 0.2rem rgba(212, 72, 84, 0.1);

}


.field-error {

    min-height:
        1rem;

    color:
        var(--danger-600);

    font-size:
        0.7rem;

}


.form-actions {

    display:
        flex;

    align-items:
        center;

    gap:
        1rem;

    margin-top:
        0.4rem;

}


.form-actions p {

    max-width:
        25rem;

    margin:
        0;

    color:
        var(--ink-500);

    font-size:
        0.7rem;

    line-height:
        1.35;

}


/* =============================================================
   20. FOOTER
============================================================= */

.main-footer {

    position:
        relative;

    color:
        var(--white);

    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(255, 183, 3, 0.12),
            transparent 20rem
        ),
        linear-gradient(
            145deg,
            var(--navy-950),
            #062654 62%,
            #0a3476
        );

    overflow:
        hidden;

}


.main-footer::before {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        );

    background-size:
        48px 48px;

    pointer-events:
        none;

}


.footer-top,
.footer-bottom {

    position:
        relative;

    z-index:
        1;

}


.footer-top {

    display:
        grid;

    grid-template-columns:
        minmax(16rem, 1.5fr)
        repeat(2, minmax(8rem, 0.65fr))
        minmax(15rem, 1fr);

    gap:
        clamp(2rem, 5vw, 4rem);

    padding-block:
        clamp(4rem, 8vw, 6rem) 3rem;

}


.logo-frame--footer {

    width:
        4.35rem;

    height:
        4.35rem;

    flex-basis:
        4.35rem;

}


.footer-brand > p {

    max-width:
        28rem;

    margin:
        1.2rem 0;

    color:
        rgba(255, 255, 255, 0.67);

}


.footer-contact-row {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        0.65rem 1rem;

}


.footer-contact-row a {

    color:
        var(--gold-300);

    font-family:
        var(--font-heading);

    font-size:
        0.78rem;

    font-weight:
        800;

    text-decoration:
        none;

}


.footer-links {

    display:
        flex;

    flex-direction:
        column;

    gap:
        0.55rem;

}


.footer-links h3,
.footer-newsletter h3 {

    margin-bottom:
        0.55rem;

    color:
        var(--white);

    font-size:
        1rem;

}


.footer-links a {

    width:
        fit-content;

    color:
        rgba(255, 255, 255, 0.68);

    font-size:
        0.82rem;

    text-decoration:
        none;

    transition:
        color var(--transition-fast),
        transform var(--transition-fast);

}


.footer-links a:hover {

    color:
        var(--gold-300);

    transform:
        translateX(0.2rem);

}


.footer-newsletter p {

    color:
        rgba(255, 255, 255, 0.62);

    font-size:
        0.82rem;

}


.footer-newsletter form {

    display:
        grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap:
        0.4rem;

    padding:
        0.35rem;

    border:
        1px solid rgba(255, 255, 255, 0.13);

    border-radius:
        0.9rem;

    background:
        rgba(255, 255, 255, 0.06);

}


.footer-newsletter input {

    min-height:
        2.65rem;

    padding:
        0.6rem 0.7rem;

    border:
        0;

    color:
        var(--white);

    background:
        transparent;

}


.footer-newsletter input::placeholder {

    color:
        rgba(255, 255, 255, 0.45);

}


.footer-newsletter button {

    display:
        grid;

    place-items:
        center;

    width:
        2.65rem;

    height:
        2.65rem;

    border:
        0;

    border-radius:
        0.68rem;

    color:
        var(--navy-950);

    background:
        var(--gold-300);

    cursor:
        pointer;

}


.footer-bottom {

    min-height:
        5rem;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        1.5rem;

    padding-block:
        1.2rem;

    border-top:
        1px solid rgba(255, 255, 255, 0.1);

}


.footer-bottom p {

    margin:
        0;

    color:
        rgba(255, 255, 255, 0.58);

    font-size:
        0.74rem;

}


.footer-bottom > div {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        0.75rem;

}


.footer-bottom button {

    padding:
        0;

    border:
        0;

    color:
        rgba(255, 255, 255, 0.62);

    background:
        transparent;

    font-size:
        0.72rem;

    cursor:
        pointer;

}


.footer-bottom button:hover {

    color:
        var(--gold-300);

}


/* =============================================================
   21. FLOATING QUICK ACTIONS
============================================================= */

.floating-actions {

    position:
        fixed;

    right:
        1.25rem;

    bottom:
        5.15rem;

    z-index:
        1600;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-end;

}


.floating-actions__toggle {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        0.5rem;

    min-height:
        3.15rem;

    padding:
        0.72rem 1rem;

    border:
        1px solid rgba(255, 217, 113, 0.55);

    border-radius:
        999px;

    color:
        var(--navy-950);

    background:
        linear-gradient(
            135deg,
            var(--gold-300),
            var(--gold-500)
        );

    box-shadow:
        var(--shadow-gold);

    font-family:
        var(--font-heading);

    font-size:
        0.78rem;

    font-weight:
        900;

    cursor:
        pointer;

    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-medium);

}


.floating-actions__toggle:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 18px 42px rgba(255, 183, 3, 0.28);

}


.floating-actions__menu {

    width:
        12.5rem;

    margin-bottom:
        0.55rem;

    padding:
        0.5rem;

    border:
        1px solid var(--border-soft);

    border-radius:
        1rem;

    background:
        rgba(255, 255, 255, 0.94);

    box-shadow:
        var(--shadow-lg);

    backdrop-filter:
        blur(14px);

    animation:
        quickMenuEnter
        220ms
        var(--ease-standard);

}


@keyframes quickMenuEnter {

    from {

        opacity:
            0;

        transform:
            translateY(0.5rem)
            scale(0.97);

    }

    to {

        opacity:
            1;

        transform:
            translateY(0)
            scale(1);

    }

}


.floating-actions__menu a {

    display:
        flex;

    align-items:
        center;

    gap:
        0.6rem;

    min-height:
        2.65rem;

    padding:
        0.62rem 0.72rem;

    border-radius:
        0.68rem;

    color:
        var(--navy-950);

    font-family:
        var(--font-heading);

    font-size:
        0.78rem;

    font-weight:
        800;

    text-decoration:
        none;

}


.floating-actions__menu a:hover {

    background:
        var(--blue-050);

}


.floating-actions__menu .floating-actions__emergency {

    color:
        var(--danger-700);

    background:
        var(--danger-100);

}


.back-to-top {

    position:
        fixed;

    right:
        1.25rem;

    bottom:
        1.25rem;

    z-index:
        1500;

    display:
        grid;

    place-items:
        center;

    width:
        3.15rem;

    height:
        3.15rem;

    border:
        1px solid rgba(255, 255, 255, 0.2);

    border-radius:
        50%;

    color:
        var(--white);

    background:
        rgba(4, 27, 61, 0.92);

    box-shadow:
        var(--shadow-md);

    opacity:
        0;

    visibility:
        hidden;

    transform:
        translateY(1rem);

    cursor:
        pointer;

    transition:
        opacity var(--transition-fast),
        visibility var(--transition-fast),
        transform var(--transition-medium);

}


.back-to-top.is-visible {

    opacity:
        1;

    visibility:
        visible;

    transform:
        translateY(0);

}


.back-to-top svg {

    transform:
        rotate(-90deg);

}


/* =============================================================
   22. MODAL
============================================================= */

.modal {

    position:
        fixed;

    inset:
        0;

    z-index:
        4000;

    display:
        grid;

    place-items:
        center;

    padding:
        1rem;

}


.modal__backdrop {

    position:
        absolute;

    inset:
        0;

    background:
        rgba(4, 17, 39, 0.72);

    backdrop-filter:
        blur(10px);

    animation:
        modalFade
        220ms
        ease;

}


.modal__dialog {

    position:
        relative;

    z-index:
        1;

    width:
        min(44rem, 100%);

    max-height:
        min(
            48rem,
            calc(100svh - 2rem)
        );

    overflow-y:
        auto;

    padding:
        clamp(1.4rem, 4vw, 2.5rem);

    border:
        1px solid rgba(255, 255, 255, 0.9);

    border-radius:
        1.35rem;

    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(255, 183, 3, 0.12),
            transparent 15rem
        ),
        var(--white);

    box-shadow:
        0 34px 100px rgba(0, 0, 0, 0.32);

    animation:
        modalEnter
        300ms
        var(--ease-spring);

}


@keyframes modalFade {

    from {

        opacity:
            0;

    }

    to {

        opacity:
            1;

    }

}


@keyframes modalEnter {

    from {

        opacity:
            0;

        transform:
            translateY(1.5rem)
            scale(0.97);

    }

    to {

        opacity:
            1;

        transform:
            translateY(0)
            scale(1);

    }

}


.modal__close {

    position:
        absolute;

    top:
        1rem;

    right:
        1rem;

    display:
        grid;

    place-items:
        center;

    width:
        2.6rem;

    height:
        2.6rem;

    border:
        1px solid var(--border-soft);

    border-radius:
        0.72rem;

    color:
        var(--navy-900);

    background:
        var(--blue-050);

    cursor:
        pointer;

}


.modal__eyebrow {

    margin-bottom:
        0.6rem;

    color:
        var(--blue-700);

    font-family:
        var(--font-heading);

    font-size:
        0.76rem;

    font-weight:
        900;

    letter-spacing:
        0.09em;

    text-transform:
        uppercase;

}


.modal__dialog h2 {

    max-width:
        16ch;

    margin-bottom:
        1rem;

    padding-right:
        2.7rem;

}


.modal__body {

    color:
        var(--ink-700);

}


.modal__body h3 {

    margin:
        1.3rem 0 0.6rem;

    font-size:
        1.05rem;

}


.modal__body ul {

    padding-left:
        1.2rem;

}


.modal__body li {

    margin-bottom:
        0.45rem;

}


.modal__actions {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        0.65rem;

    margin-top:
        1.5rem;

}


.modal__actions button,
.modal__actions a {

    min-height:
        2.85rem;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        0.7rem 1rem;

    border:
        1px solid var(--border-medium);

    border-radius:
        0.75rem;

    color:
        var(--navy-900);

    background:
        var(--blue-050);

    font-family:
        var(--font-heading);

    font-size:
        0.8rem;

    font-weight:
        800;

    text-decoration:
        none;

    cursor:
        pointer;

}


.modal__actions .modal-primary-action {

    color:
        var(--white);

    border-color:
        transparent;

    background:
        linear-gradient(
            135deg,
            var(--blue-700),
            var(--navy-900)
        );

}


/* =============================================================
   23. TOAST NOTIFICATIONS
============================================================= */

.toast-region {

    position:
        fixed;

    top:
        calc(var(--sticky-offset) + 0.5rem);

    right:
        1rem;

    z-index:
        5000;

    display:
        grid;

    gap:
        0.55rem;

    width:
        min(22rem, calc(100% - 2rem));

    pointer-events:
        none;

}


.toast {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        0.7rem;

    padding:
        0.9rem 1rem;

    border:
        1px solid var(--border-soft);

    border-left:
        0.28rem solid var(--blue-600);

    border-radius:
        0.9rem;

    color:
        var(--ink-800);

    background:
        rgba(255, 255, 255, 0.96);

    box-shadow:
        var(--shadow-lg);

    backdrop-filter:
        blur(12px);

    pointer-events:
        auto;

    animation:
        toastEnter
        260ms
        var(--ease-spring);

}


.toast--success {

    border-left-color:
        var(--success-500);

}


.toast--warning {

    border-left-color:
        var(--gold-500);

}


.toast--danger {

    border-left-color:
        var(--danger-500);

}


.toast strong {

    display:
        block;

    color:
        var(--navy-950);

    font-family:
        var(--font-heading);

    font-size:
        0.82rem;

}


.toast p {

    margin:
        0.18rem 0 0;

    font-size:
        0.75rem;

}


.toast button {

    margin-left:
        auto;

    padding:
        0;

    border:
        0;

    color:
        var(--ink-500);

    background:
        transparent;

    cursor:
        pointer;

}


@keyframes toastEnter {

    from {

        opacity:
            0;

        transform:
            translateX(1rem)
            scale(0.97);

    }

    to {

        opacity:
            1;

        transform:
            translateX(0)
            scale(1);

    }

}


/* =============================================================
   24. LARGE TABLET AND SMALL DESKTOP
============================================================= */

@media (max-width: 1260px) {

    :root {

        --main-header-height:
            5.25rem;

    }


    .desktop-nav {

        display:
            none;

    }


    .mobile-menu-btn {

        display:
            block;

        flex:
            0 0 auto;

    }


    .mobile-nav {

        position:
            fixed;

        top:
            0;

        right:
            0;

        z-index:
            2100;

        display:
            flex;

        flex-direction:
            column;

        width:
            min(28rem, 92vw);

        height:
            100svh;

        padding:
            1.1rem;

        color:
            var(--ink-900);

        background:
            radial-gradient(
                circle at 100% 0%,
                rgba(255, 183, 3, 0.12),
                transparent 18rem
            ),
            rgba(255, 255, 255, 0.98);

        box-shadow:
            -20px 0 60px rgba(4, 27, 61, 0.23);

        transform:
            translateX(105%);

        transition:
            transform var(--transition-medium);

        overflow-y:
            auto;

    }


    .mobile-nav.is-open {

        transform:
            translateX(0);

    }


    .mobile-nav-backdrop {

        position:
            fixed;

        inset:
            0;

        z-index:
            2050;

        display:
            block;

        background:
            rgba(4, 17, 39, 0.58);

        backdrop-filter:
            blur(5px);

        opacity:
            0;

        visibility:
            hidden;

        transition:
            opacity var(--transition-fast),
            visibility var(--transition-fast);

    }


    .mobile-nav-backdrop.is-open {

        opacity:
            1;

        visibility:
            visible;

    }


    .mobile-nav__header {

        display:
            flex;

        align-items:
            center;

        justify-content:
            space-between;

        gap:
            1rem;

        padding:
            0.35rem 0.3rem 1rem;

        border-bottom:
            1px solid var(--border-soft);

        color:
            var(--navy-950);

        font-family:
            var(--font-heading);

        font-weight:
            800;

    }


    .mobile-nav__close {

        display:
            grid;

        place-items:
            center;

        width:
            2.7rem;

        height:
            2.7rem;

        border:
            1px solid var(--border-soft);

        border-radius:
            0.72rem;

        color:
            var(--navy-900);

        background:
            var(--blue-050);

        cursor:
            pointer;

    }


    .mobile-nav__links {

        display:
            grid;

        margin-top:
            0.75rem;

    }


    .mobile-nav__links a {

        display:
            flex;

        align-items:
            center;

        gap:
            0.8rem;

        min-height:
            3.55rem;

        padding:
            0.75rem 0.65rem;

        border-bottom:
            1px solid var(--border-soft);

        color:
            var(--navy-950);

        font-family:
            var(--font-heading);

        font-weight:
            800;

        text-decoration:
            none;

    }


    .mobile-nav__links a span {

        color:
            var(--gold-600);

        font-size:
            0.68rem;

    }


    .mobile-nav__links a:hover {

        color:
            var(--blue-700);

        background:
            var(--blue-050);

    }


    .mobile-nav__emergency {

        margin-top:
            auto;

        padding:
            1rem;

        border:
            1px solid rgba(191, 51, 64, 0.18);

        border-radius:
            1rem;

        background:
            var(--danger-100);

    }


    .mobile-nav__emergency strong {

        display:
            block;

        color:
            var(--danger-700);

        font-family:
            var(--font-heading);

        font-size:
            0.82rem;

    }


    .mobile-nav__emergency a {

        display:
            inline-block;

        margin-top:
            0.45rem;

        color:
            var(--danger-700);

        font-family:
            var(--font-heading);

        font-size:
            0.78rem;

        font-weight:
            900;

        text-decoration:
            none;

    }


    .hero-container {

        grid-template-columns:
            minmax(0, 1fr)
            minmax(26rem, 0.82fr);

        gap:
            3rem;

    }


    .action-ribbon__inner {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

    }


    .action-ribbon__item:nth-child(4),
    .action-ribbon__item:nth-child(5) {

        border-top:
            1px solid var(--border-soft);

    }


    .program-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .day-at-heads-up {

        grid-template-columns:
            1fr;

    }


    .resource-card {

        grid-column:
            span 6;

    }


    .resource-card:nth-child(5) {

        grid-column:
            span 12;

    }


    .footer-top {

        grid-template-columns:
            1.35fr
            repeat(2, 0.7fr);

    }


    .footer-newsletter {

        grid-column:
            1 / -1;

        max-width:
            34rem;

    }

}


/* =============================================================
   25. TABLET
============================================================= */

@media (max-width: 980px) {

    .hero-section {

        min-height:
            auto;

        padding-top:
            4rem;

    }


    .hero-container {

        grid-template-columns:
            1fr;

    }


    .hero-left {

        text-align:
            center;

    }


    .hero-title,
    .hero-description {

        margin-inline:
            auto;

    }


    .hero-buttons {

        justify-content:
            center;

    }


    .hero-quick-stats {

        max-width:
            47rem;

        margin-inline:
            auto;

    }


    .hero-right {

        width:
            min(38rem, 100%);

        margin-inline:
            auto;

    }


    .scroll-indicator {

        display:
            none;

    }


    .action-ribbon {

        margin-top:
            -1rem;

    }


    .action-ribbon__inner {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .action-ribbon__item:nth-child(n) {

        border-top:
            0;

        border-left:
            0;

    }


    .action-ribbon__item:nth-child(even) {

        border-left:
            1px solid var(--border-soft);

    }


    .action-ribbon__item:nth-child(n + 3) {

        border-top:
            1px solid var(--border-soft);

    }


    .action-ribbon__item:last-child {

        grid-column:
            1 / -1;

    }


    .section-heading--split {

        grid-template-columns:
            1fr;

        align-items:
            start;

        gap:
            1.1rem;

    }


    .last-updated-card,
    .gallery-controls {

        justify-self:
            start;

    }


    .about-grid {

        grid-template-columns:
            1fr;

    }


    .about-card--feature {

        grid-row:
            auto;

        min-height:
            25rem;

    }


    .day-timeline {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        row-gap:
            1.4rem;

    }


    .day-timeline::before {

        display:
            none;

    }


    .update-card-grid,
    .event-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .featured-update-card {

        grid-template-columns:
            1fr;

    }


    .schedule-row {

        grid-template-columns:
            6.5rem
            8.5rem
            minmax(0, 1fr);

    }


    .schedule-row__audience {

        grid-column:
            2 / -1;

        justify-self:
            start;

    }


    .event-toolbar {

        align-items:
            flex-start;

        flex-direction:
            column;

    }


    .story-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .story-card--featured {

        grid-column:
            1 / -1;

    }


    .resource-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .resource-card,
    .resource-card:nth-child(4),
    .resource-card:nth-child(5) {

        grid-column:
            auto;

    }


    .resource-card:last-child {

        grid-column:
            1 / -1;

    }


    .transparency-panel {

        grid-template-columns:
            1fr;

    }


    .team-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .team-card:last-child {

        grid-column:
            1 / -1;

    }


    .faq-shell {

        grid-template-columns:
            1fr;

        gap:
            2rem;

    }


    .faq-shell .section-heading {

        position:
            static;

    }


    .contact-wrapper {

        grid-template-columns:
            1fr;

    }


    .footer-top {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .footer-newsletter {

        grid-column:
            auto;

        max-width:
            none;

    }

}


/* =============================================================
   26. MOBILE
============================================================= */

@media (max-width: 720px) {

    :root {

        --page-gutter:
            1rem;

        --emergency-bar-height:
            auto;

        --main-header-height:
            4.85rem;

        --sticky-offset:
            8.5rem;

    }


    .emergency-bar__inner {

        min-height:
            3.7rem;

        justify-content:
            center;

        padding-block:
            0.4rem;

        text-align:
            center;

    }


    .emergency-bar__secondary {

        display:
            none;

    }


    .emergency-bar__primary {

        flex-wrap:
            wrap;

        justify-content:
            center;

        row-gap:
            0.25rem;

    }


    .header-container {

        min-height:
            var(--main-header-height);

    }


    .logo-frame {

        width:
            3.45rem;

        height:
            3.45rem;

        flex-basis:
            3.45rem;

        border-radius:
            0.8rem;

    }


    .logo-text-wrapper strong {

        font-size:
            0.96rem;

    }


    .logo-text-wrapper small {

        font-size:
            0.68rem;

    }


    .hero-section {

        padding-top:
            3.3rem;

        padding-bottom:
            5.5rem;

    }


    .hero-eyebrow {

        justify-content:
            center;

        font-size:
            0.71rem;

        letter-spacing:
            0.08em;

    }


    .hero-title {

        font-size:
            clamp(2.65rem, 13vw, 4.15rem);

    }


    .hero-description {

        font-size:
            1rem;

        line-height:
            1.72;

    }


    .hero-buttons {

        display:
            grid;

        grid-template-columns:
            1fr;

    }


    .button {

        width:
            100%;

    }


    .button--text {

        width:
            auto;

        justify-self:
            center;

    }


    .hero-quick-stats {

        grid-template-columns:
            1fr;

    }


    .quick-stat-card {

        min-height:
            4.8rem;

    }


    .community-puzzle {

        min-height:
            31rem;

    }


    .hero-photo-card {

        width:
            min(21rem, 72%);

    }


    .puzzle-piece {

        width:
            6.45rem;

        min-height:
            3rem;

        padding:
            0.58rem 0.65rem;

        font-size:
            0.75rem;

    }


    .puzzle-piece--learn {

        left:
            1%;

    }


    .puzzle-piece--explore {

        right:
            0;

    }


    .puzzle-piece--belong {

        left:
            0;

    }


    .puzzle-piece--grow {

        right:
            0;

    }


    .action-ribbon__inner {

        grid-template-columns:
            1fr;

    }


    .action-ribbon__item,
    .action-ribbon__item:nth-child(even),
    .action-ribbon__item:nth-child(n + 3) {

        border-top:
            1px solid var(--border-soft);

        border-left:
            0;

    }


    .action-ribbon__item:first-child {

        border-top:
            0;

    }


    .section-heading {

        margin-bottom:
            2.5rem;

    }


    .section-heading h2 {

        font-size:
            clamp(2rem, 9vw, 2.8rem);

    }


    .program-grid,
    .update-card-grid,
    .event-grid,
    .story-grid,
    .resource-grid,
    .team-grid {

        grid-template-columns:
            1fr;

    }


    .program-card {

        min-height:
            20rem;

    }


    .day-timeline {

        grid-template-columns:
            1fr;

        gap:
            0.8rem;

    }


    .day-timeline li {

        display:
            grid;

        grid-template-columns:
            2.7rem
            minmax(0, 1fr);

        grid-template-rows:
            auto auto;

        column-gap:
            0.8rem;

        text-align:
            left;

    }


    .day-timeline li > span {

        grid-row:
            1 / 3;

        margin-bottom:
            0;

    }


    .day-timeline strong,
    .day-timeline small {

        align-self:
            center;

    }


    .announcement-strip {

        grid-template-columns:
            auto
            minmax(0, 1fr);

    }


    .announcement-strip > a {

        grid-column:
            1 / -1;

        padding-left:
            0.15rem;

    }


    .announcement-strip__viewport p {

        white-space:
            normal;

    }


    .hub-tabs {

        width:
            100%;

    }


    .schedule-summary,
    .event-toolbar,
    .hub-help,
    .story-cta,
    .footer-bottom {

        align-items:
            stretch;

        flex-direction:
            column;

    }


    .schedule-row {

        grid-template-columns:
            1fr;

        gap:
            0.3rem;

        padding:
            1rem;

    }


    .schedule-row__audience {

        grid-column:
            auto;

    }


    .event-filter {

        width:
            100%;

        overflow-x:
            auto;

        scrollbar-width:
            none;

    }


    .event-filter::-webkit-scrollbar {

        display:
            none;

    }


    .resource-card,
    .resource-card:last-child {

        grid-column:
            auto;

    }


    .transparency-panel__actions .button {

        width:
            100%;

    }


    .team-card:last-child {

        grid-column:
            auto;

    }


    .form-row {

        grid-template-columns:
            1fr;

        gap:
            0;

    }


    .form-actions {

        align-items:
            stretch;

        flex-direction:
            column;

    }


    .form-actions .button {

        width:
            100%;

    }


    .footer-top {

        grid-template-columns:
            1fr;

    }


    .footer-bottom {

        text-align:
            center;

    }


    .footer-bottom > div {

        justify-content:
            center;

    }


    .floating-actions {

        right:
            0.85rem;

        bottom:
            4.8rem;

    }


    .floating-actions__toggle span {

        display:
            none;

    }


    .floating-actions__toggle {

        width:
            3.15rem;

        padding:
            0;

        justify-content:
            center;

    }


    .back-to-top {

        right:
            0.85rem;

        bottom:
            0.85rem;

    }


    .toast-region {

        top:
            8.8rem;

        right:
            0.65rem;

        width:
            calc(100% - 1.3rem);

    }

}


/* =============================================================
   27. EXTRA-SMALL MOBILE
============================================================= */

@media (max-width: 420px) {

    .logo-text-wrapper small {

        display:
            none;

    }


    .hero-title {

        font-size:
            2.55rem;

    }


    .community-puzzle {

        min-height:
            27rem;

    }


    .hero-photo-card {

        width:
            17rem;

    }


    .puzzle-piece {

        width:
            5.75rem;

        font-size:
            0.68rem;

    }


    .puzzle-piece svg {

        display:
            none;

    }


    .featured-update-card {

        padding:
            1.25rem;

    }


    .featured-update-card__meta {

        padding:
            0.8rem;

    }

}


/* =============================================================
   28. PRINT STYLES
============================================================= */

@media print {

    .ambient-background,
    .site-header-shell,
    .hero-section,
    .action-ribbon,
    .gallery-section,
    .stories-section,
    .team-section,
    .faq-section,
    .contact-section,
    .main-footer,
    .floating-actions,
    .back-to-top,
    .hub-tabs,
    .announcement-strip,
    .hub-help,
    .last-updated-card,
    .event-toolbar,
    #updatesPanel,
    #eventsPanel {

        display:
            none !important;

    }


    body {

        color:
            #000;

        background:
            #fff;

    }


    .communication-hub {

        color:
            #000;

        background:
            #fff;

    }


    #schedulePanel {

        display:
            block !important;

    }


    .schedule-row {

        break-inside:
            avoid;

        color:
            #000;

        border:
            1px solid #bbb;

        background:
            #fff;

    }


    .schedule-row__time,
    .schedule-row__activity strong,
    .schedule-row__activity small,
    .schedule-row__audience {

        color:
            #000;

    }

}


/* =============================================================
   29. REDUCED MOTION
============================================================= */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior:
            auto;

    }


    *,
    *::before,
    *::after {

        animation-duration:
            0.001ms !important;

        animation-iteration-count:
            1 !important;

        scroll-behavior:
            auto !important;

        transition-duration:
            0.001ms !important;

    }


    .reveal {

        opacity:
            1;

        transform:
            none;

    }


    .gallery-track {

        animation:
            none;

    }

}




/* =============================================================
   30. FINAL POLISH, MOBILE FIXES & SOCIAL MEDIA ADDITIONS

   This section intentionally appears last so these refinements
   override earlier declarations without deleting the original work.
============================================================= */


/* -------------------------------------------------------------
   30.1 TEXT SELECTION & HOVER VISIBILITY
------------------------------------------------------------- */

::selection {
    color: var(--navy-950);
    background: #ffd971;
    text-shadow: none;
}

::-moz-selection {
    color: var(--navy-950);
    background: #ffd971;
    text-shadow: none;
}

.communication-hub ::selection,
.main-footer ::selection,
.about-card--feature ::selection,
.story-card--featured ::selection,
.emergency-bar ::selection,
.main-header ::selection {
    color: var(--navy-950);
    background: #fff1a6;
}

.communication-hub ::-moz-selection,
.main-footer ::-moz-selection,
.about-card--feature ::-moz-selection,
.story-card--featured ::-moz-selection,
.emergency-bar ::-moz-selection,
.main-header ::-moz-selection {
    color: var(--navy-950);
    background: #fff1a6;
}

.communication-hub .card-action:hover,
.communication-hub .text-link:hover,
.about-card--feature .card-action:hover,
.about-card--feature .text-link:hover,
.story-card--featured .card-action:hover,
.story-card--featured .text-link:hover,
.main-footer .card-action:hover,
.main-footer .text-link:hover {
    color: var(--gold-100);
}

.communication-hub a:focus-visible,
.main-footer a:focus-visible,
.about-card--feature a:focus-visible,
.story-card--featured a:focus-visible {
    outline-color: var(--gold-300);
}


/* -------------------------------------------------------------
   30.2 NO-SCRIPT NOTICE
------------------------------------------------------------- */

.noscript-notice {
    position: relative;
    z-index: 5001;
    padding: .85rem var(--page-gutter);
    color: var(--navy-950);
    background: var(--gold-100);
    border-bottom: 1px solid var(--border-gold);
    font-family: var(--font-heading);
    font-size: .82rem;
    font-weight: 700;
    text-align: center;
}


/* -------------------------------------------------------------
   30.3 RICHER AMBIENT BACKGROUND
------------------------------------------------------------- */

body {
    background:
        radial-gradient(circle at 4% 8%, rgba(255, 183, 3, .20), transparent 27rem),
        radial-gradient(circle at 96% 18%, rgba(76, 134, 207, .20), transparent 31rem),
        radial-gradient(circle at 18% 72%, rgba(235, 112, 91, .10), transparent 28rem),
        radial-gradient(circle at 80% 88%, rgba(13, 148, 136, .12), transparent 30rem),
        linear-gradient(180deg, #fff9e9 0%, #edf6ff 34%, #e7f7f3 63%, #fff4dc 100%);
}

.ambient-orb--coral {
    position: absolute;
    top: 54%;
    left: -18rem;
    width: 40rem;
    height: 40rem;
    display: block;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .25;
    background: radial-gradient(circle, rgba(235, 112, 91, .58), rgba(235, 112, 91, 0));
    animation: ambientDriftCoral 50s ease-in-out infinite alternate;
}

.ambient-ribbon {
    position: absolute;
    display: block;
    width: 58rem;
    height: 12rem;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 50%;
    opacity: .22;
    pointer-events: none;
}

.ambient-ribbon--one {
    top: 14%;
    left: -12rem;
    background: linear-gradient(90deg, transparent, rgba(255,183,3,.24), rgba(76,134,207,.18), transparent);
    animation: ambientRibbonOne 42s ease-in-out infinite alternate;
}

.ambient-ribbon--two {
    right: -18rem;
    bottom: 16%;
    background: linear-gradient(90deg, transparent, rgba(13,148,136,.18), rgba(255,183,3,.18), transparent);
    animation: ambientRibbonTwo 48s ease-in-out infinite alternate;
}

.ambient-sparkles {
    position: absolute;
    inset: 0;
    opacity: .30;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(255,183,3,.52) 0 2px, transparent 3px),
        radial-gradient(circle at 82% 34%, rgba(76,134,207,.38) 0 2px, transparent 3px),
        radial-gradient(circle at 28% 78%, rgba(13,148,136,.36) 0 2px, transparent 3px),
        radial-gradient(circle at 72% 88%, rgba(235,112,91,.28) 0 2px, transparent 3px);
    background-size: 32rem 30rem, 38rem 36rem, 34rem 35rem, 40rem 39rem;
    animation: ambientSparkleShift 34s linear infinite;
}

@keyframes ambientDriftCoral {
    0% { transform: translate3d(0,0,0) scale(.95); }
    50% { transform: translate3d(18vw,-10vh,0) scale(1.08); }
    100% { transform: translate3d(7vw,14vh,0) scale(1); }
}

@keyframes ambientRibbonOne {
    0% { transform: translate3d(0,0,0) rotate(-18deg) scaleX(.96); }
    100% { transform: translate3d(18vw,12vh,0) rotate(-10deg) scaleX(1.05); }
}

@keyframes ambientRibbonTwo {
    0% { transform: translate3d(0,0,0) rotate(16deg) scaleX(1); }
    100% { transform: translate3d(-20vw,-9vh,0) rotate(8deg) scaleX(1.08); }
}

@keyframes ambientSparkleShift {
    from { transform: translate3d(0,0,0); }
    to { transform: translate3d(2.2rem,-1.8rem,0); }
}


/* -------------------------------------------------------------
   30.4 WELCOMING HERO & SECTION BACKGROUNDS
------------------------------------------------------------- */

.hero-section {
    min-height: calc(100svh - var(--emergency-bar-height) - var(--main-header-height));
    background:
        radial-gradient(circle at 86% 18%, rgba(255,217,113,.42), transparent 22rem),
        radial-gradient(circle at 12% 86%, rgba(101,211,200,.22), transparent 26rem),
        radial-gradient(circle at 54% 8%, rgba(76,134,207,.17), transparent 28rem),
        linear-gradient(135deg, rgba(255,249,235,.96) 0%, rgba(237,246,255,.94) 51%, rgba(226,248,243,.90) 100%);
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

.hero-section::before {
    top: 7%;
    left: -8rem;
    width: 18rem;
    height: 18rem;
    border: 1.2rem solid rgba(255,183,3,.08);
    box-shadow: 0 0 70px rgba(255,183,3,.08);
}

.hero-section::after {
    right: -7rem;
    bottom: 5%;
    width: 22rem;
    height: 22rem;
    border: 1rem solid rgba(13,148,136,.07);
    box-shadow: 0 0 80px rgba(13,148,136,.07);
}

.about-section,
.programs-section,
.gallery-section,
.stories-section,
.resources-section,
.team-section,
.faq-section,
.contact-section {
    isolation: isolate;
}

.about-section {
    background:
        radial-gradient(circle at 92% 8%, rgba(235,112,91,.14), transparent 22rem),
        radial-gradient(circle at 7% 82%, rgba(255,183,3,.18), transparent 25rem),
        linear-gradient(160deg, rgba(255,247,225,.96), rgba(255,253,247,.92) 48%, rgba(235,244,255,.88));
}

.programs-section {
    background:
        radial-gradient(circle at 10% 18%, rgba(101,211,200,.25), transparent 25rem),
        radial-gradient(circle at 88% 78%, rgba(76,134,207,.20), transparent 28rem),
        linear-gradient(145deg, rgba(223,245,241,.92), rgba(229,240,253,.94) 52%, rgba(255,249,233,.88));
}

.gallery-section {
    background:
        radial-gradient(circle at 9% 80%, rgba(255,183,3,.24), transparent 25rem),
        radial-gradient(circle at 87% 16%, rgba(235,112,91,.15), transparent 24rem),
        linear-gradient(155deg, rgba(255,245,216,.96), rgba(255,253,247,.92) 46%, rgba(230,240,251,.90));
}

.stories-section {
    background:
        radial-gradient(circle at 85% 12%, rgba(101,211,200,.24), transparent 25rem),
        radial-gradient(circle at 12% 78%, rgba(76,134,207,.20), transparent 26rem),
        linear-gradient(145deg, rgba(224,244,242,.90), rgba(237,244,254,.94) 48%, rgba(255,250,237,.88));
}

.resources-section {
    background:
        radial-gradient(circle at 8% 10%, rgba(255,183,3,.24), transparent 23rem),
        radial-gradient(circle at 92% 84%, rgba(76,134,207,.18), transparent 27rem),
        linear-gradient(150deg, rgba(255,246,220,.95), rgba(255,253,247,.92) 44%, rgba(230,240,251,.92));
}

.team-section {
    background:
        radial-gradient(circle at 80% 85%, rgba(76,134,207,.24), transparent 26rem),
        radial-gradient(circle at 10% 18%, rgba(13,148,136,.16), transparent 22rem),
        linear-gradient(150deg, rgba(226,241,253,.94), rgba(239,248,247,.90) 50%, rgba(255,249,233,.88));
}

.faq-section {
    background:
        radial-gradient(circle at 88% 14%, rgba(255,183,3,.18), transparent 22rem),
        radial-gradient(circle at 8% 88%, rgba(235,112,91,.12), transparent 23rem),
        linear-gradient(155deg, rgba(232,242,253,.92), rgba(255,249,233,.94) 56%, rgba(255,253,247,.92));
}

.contact-section {
    background:
        radial-gradient(circle at 15% 10%, rgba(255,183,3,.28), transparent 24rem),
        radial-gradient(circle at 90% 80%, rgba(13,148,136,.19), transparent 28rem),
        radial-gradient(circle at 65% 6%, rgba(76,134,207,.15), transparent 25rem),
        linear-gradient(145deg, rgba(255,246,220,.96), rgba(235,245,255,.94) 54%, rgba(224,247,242,.90));
}

.about-section::before,
.programs-section::before,
.gallery-section::before,
.stories-section::before,
.resources-section::before,
.team-section::before,
.faq-section::before,
.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .28;
    background-image: radial-gradient(rgba(8,43,99,.085) 1.1px, transparent 1.1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.about-section::after,
.programs-section::after,
.gallery-section::after,
.stories-section::after,
.resources-section::after,
.team-section::after,
.faq-section::after,
.contact-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(76rem, calc(100% - 2rem));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(8,43,99,.13), rgba(255,183,3,.28), rgba(8,43,99,.13), transparent);
    pointer-events: none;
}


/* -------------------------------------------------------------
   30.5 GUARANTEED MOBILE MENU BEHAVIOR
------------------------------------------------------------- */

.mobile-nav[hidden],
.mobile-nav-backdrop[hidden] {
    display: none !important;
}

@media (max-width: 1260px) {
    .mobile-nav:not([hidden]) {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 2100;
        display: flex;
        flex-direction: column;
        width: min(28rem, 92vw);
        height: calc(100svh - var(--emergency-bar-height));
        padding: 1.1rem 1.1rem calc(1.1rem + env(safe-area-inset-bottom));
        color: var(--ink-900);
        background:
            radial-gradient(circle at 100% 0%, rgba(255,183,3,.14), transparent 18rem),
            radial-gradient(circle at 0% 100%, rgba(13,148,136,.10), transparent 18rem),
            rgba(255,255,255,.985);
        box-shadow: -20px 0 60px rgba(4,27,61,.23);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition: none;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-nav-backdrop:not([hidden]) {
        position: fixed;
        inset: 0;
        z-index: 2050;
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: rgba(4,17,39,.62);
        backdrop-filter: blur(5px);
        transition: none;
    }

    .mobile-nav.is-open .mobile-nav__header,
    .mobile-nav.is-open .mobile-nav__links,
    .mobile-nav.is-open .mobile-nav__emergency {
        animation: mobileNavContentEnter 220ms var(--ease-standard) both;
    }

    .mobile-nav.is-open .mobile-nav__links { animation-delay: 35ms; }
    .mobile-nav.is-open .mobile-nav__emergency { animation-delay: 70ms; }

    @keyframes mobileNavContentEnter {
        from { opacity: 1; transform: translateY(.45rem); }
        to { opacity: 1; transform: translateY(0); }
    }
}

@media (max-width: 720px) {
    .mobile-nav:not([hidden]) {
        height: calc(100svh - 3.7rem);
    }
}


/* -------------------------------------------------------------
   30.6 FOOTER SOCIAL MEDIA
------------------------------------------------------------- */

.footer-social-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(16rem,.8fr) minmax(0,1.4fr);
    align-items: center;
    gap: clamp(1.5rem,4vw,3rem);
    margin-bottom: 2rem;
    padding: clamp(1.3rem,3vw,2rem);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,183,3,.055));
    box-shadow: 0 20px 60px rgba(0,0,0,.13);
    backdrop-filter: blur(12px);
}

.footer-social-strip__eyebrow {
    margin-bottom: .55rem;
    color: var(--gold-300);
    font-family: var(--font-heading);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-social-strip__intro h3 {
    margin-bottom: .7rem;
    color: var(--white);
    font-size: clamp(1.25rem,2vw,1.65rem);
}

.footer-social-strip__intro p:last-child {
    margin-bottom: 0;
    color: rgba(255,255,255,.64);
    font-size: .8rem;
}

.social-platform-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: .65rem;
}

.social-platform {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    align-items: center;
    gap: .7rem;
    min-height: 4.45rem;
    padding: .72rem .8rem;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: .92rem;
    color: var(--white);
    background: rgba(255,255,255,.055);
    text-decoration: none;
    overflow: hidden;
    transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-medium);
}

.social-platform::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.social-platform--facebook::before { background: linear-gradient(135deg,rgba(24,119,242,.20),transparent); }
.social-platform--instagram::before { background: linear-gradient(135deg,rgba(225,48,108,.20),rgba(255,183,3,.08)); }
.social-platform--linkedin::before { background: linear-gradient(135deg,rgba(10,102,194,.22),transparent); }
.social-platform--youtube::before { background: linear-gradient(135deg,rgba(255,0,0,.18),transparent); }
.social-platform--tiktok::before { background: linear-gradient(135deg,rgba(37,244,238,.13),rgba(254,44,85,.13)); }

.social-platform:hover {
    transform: translateY(-3px);
    border-color: rgba(255,217,113,.28);
    background: rgba(255,255,255,.085);
    box-shadow: 0 14px 36px rgba(0,0,0,.16);
}

.social-platform:hover::before { opacity: 1; }
.social-platform > * { position: relative; z-index: 1; }

.social-platform__icon {
    display: grid;
    place-items: center;
    width: 2.55rem;
    height: 2.55rem;
    border-radius: .75rem;
    color: var(--gold-300);
    background: rgba(255,255,255,.08);
}

.social-platform__icon svg { width: 1.28rem; height: 1.28rem; }

.social-platform > span:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.social-platform strong {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: .82rem;
}

.social-platform small {
    margin-top: .1rem;
    color: rgba(255,255,255,.55);
    font-size: .68rem;
}

.social-platform__arrow {
    color: rgba(255,255,255,.48);
    font-size: 1rem;
}


/* -------------------------------------------------------------
   30.7 MOBILE QUICK DOCK
------------------------------------------------------------- */

.mobile-quick-dock { display: none; }

@media (max-width: 980px) {
    .footer-social-strip { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .social-platform-grid { grid-template-columns: 1fr; }

    .mobile-quick-dock {
        position: fixed;
        right: .65rem;
        bottom: calc(.55rem + env(safe-area-inset-bottom));
        left: .65rem;
        z-index: 1450;
        display: grid;
        grid-template-columns: repeat(4,minmax(0,1fr));
        min-height: 4.15rem;
        padding: .38rem;
        border: 1px solid rgba(255,255,255,.75);
        border-radius: 1.05rem;
        background: rgba(4,27,61,.95);
        box-shadow: 0 18px 55px rgba(4,27,61,.30);
        backdrop-filter: blur(16px);
    }

    .mobile-quick-dock__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: .22rem;
        min-width: 0;
        min-height: 3.35rem;
        border-radius: .75rem;
        color: rgba(255,255,255,.72);
        font-family: var(--font-heading);
        font-size: .62rem;
        font-weight: 800;
        text-decoration: none;
        transition: color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
    }

    .mobile-quick-dock__item svg { width: 1.2rem; height: 1.2rem; }

    .mobile-quick-dock__item:hover,
    .mobile-quick-dock__item:focus-visible,
    .mobile-quick-dock__item.is-active {
        color: var(--navy-950);
        background: var(--gold-300);
        transform: translateY(-1px);
    }

    body { padding-bottom: calc(5.35rem + env(safe-area-inset-bottom)); }

    .floating-actions {
        right: .85rem;
        bottom: calc(5.35rem + env(safe-area-inset-bottom));
    }

    .back-to-top {
        right: .85rem;
        bottom: calc(5.35rem + env(safe-area-inset-bottom));
    }
}


/* -------------------------------------------------------------
   30.8 FALLBACKS & HIGH CONTRAST
------------------------------------------------------------- */

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .quick-stat-card,
    .action-ribbon,
    .floating-actions__menu,
    .footer-social-strip {
        background-color: var(--surface-solid);
    }

    .main-header,
    .mobile-quick-dock {
        background-color: var(--navy-950);
    }
}

@media (prefers-contrast: more) {
    :focus-visible { outline-width: 4px; }

    .about-card,
    .program-card,
    .story-card,
    .resource-card,
    .team-card,
    .faq-item,
    .contact-info-card,
    .contact-form {
        border-color: rgba(4,27,61,.38);
    }

    p { color: var(--ink-800); }
}




/* =============================================================
   FINAL PATCH: LOGO COLOR ALIGNMENT, CHILD-SAFE PORTAL,
   AND PAGE-LIKE NAVIGATION

   This patch keeps the existing design and sections, but adds:
   1. Official logo hex code variables.
   2. Page-like routing so visitors do not scroll through every
      section unless they choose that section.
   3. Family Portal / private schedule styles.
   4. Stronger public-safe communication styling.
   5. Better route-current link states.
============================================================= */


/* -------------------------------------------------------------
   OFFICIAL LOGO COLORS
   -------------------------------------------------------------
   Green:  #4c872b
   Red:    #ef2021
   Yellow: #edb429
   Teal:   #4d94a6
   Blue:   #004aad
------------------------------------------------------------- */

:root {

    --logo-green:
        #4c872b;

    --logo-red:
        #ef2021;

    --logo-yellow:
        #edb429;

    --logo-teal:
        #4d94a6;

    --logo-blue:
        #004aad;


    /* Logo-aligned brand mapping */

    --navy-950:
        #041735;

    --navy-900:
        #08245a;

    --navy-850:
        #073376;

    --navy-800:
        var(--logo-blue);

    --blue-700:
        var(--logo-blue);

    --blue-600:
        #1162bd;

    --blue-500:
        #347fd0;

    --gold-600:
        #c98910;

    --gold-500:
        var(--logo-yellow);

    --gold-400:
        #f4c84f;

    --gold-300:
        #f7d87a;

    --teal-700:
        #2d6f7d;

    --teal-600:
        var(--logo-teal);

    --success-600:
        var(--logo-green);

    --success-500:
        #5b9d36;

    --danger-700:
        #b91619;

    --danger-600:
        var(--logo-red);

}


/* -------------------------------------------------------------
   LOGO PRESENTATION
------------------------------------------------------------- */

.logo-frame {

    border:
        1px solid rgba(237, 180, 41, 0.82);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.99),
            rgba(255, 248, 224, 0.98)
        );

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.18),
        0 0 0 0.22rem rgba(237, 180, 41, 0.12),
        0 0 34px rgba(77, 148, 166, 0.14);

}


.logo-image,
.logo-frame img {

    object-fit:
        contain;

    object-position:
        center;

    image-rendering:
        auto;

}


/* -------------------------------------------------------------
   ROUTED PAGE MODE
   -------------------------------------------------------------
   JavaScript applies the hidden attribute to sections that do not
   belong to the current view. These classes add transitions and
   visual spacing to visible routed sections.
------------------------------------------------------------- */

body.page-routing-enabled main {

    min-height:
        60vh;

}


body.page-routing-enabled main > section.is-route-visible {

    animation:
        routeSectionEnter
        520ms
        var(--ease-standard)
        both;

}


body.page-routing-enabled main > section[hidden] {

    display:
        none !important;

}


@keyframes routeSectionEnter {

    from {

        opacity:
            0;

        transform:
            translateY(1.1rem);

    }

    to {

        opacity:
            1;

        transform:
            translateY(0);

    }

}


.nav-link.is-route-current,
.mobile-nav__links a.is-route-current,
.mobile-quick-dock__item.is-route-current {

    color:
        var(--gold-300);

}


.nav-link.is-route-current::after {

    width:
        calc(100% - 0.6rem);

}


.nav-link--portal {

    color:
        rgba(255, 255, 255, 0.92);

}


.nav-link--portal::before {

    content:
        "🔒";

    margin-right:
        0.32rem;

    font-size:
        0.85em;

}


/* -------------------------------------------------------------
   HERO PRIVACY NOTE
------------------------------------------------------------- */

.hero-privacy-note {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        0.9rem;

    max-width:
        44rem;

    margin-top:
        1.25rem;

    padding:
        1rem 1.05rem;

    border:
        1px solid rgba(237, 180, 41, 0.42);

    border-radius:
        1rem;

    color:
        var(--white);

    background:
        linear-gradient(
            135deg,
            rgba(4, 23, 53, 0.74),
            rgba(0, 74, 173, 0.40)
        );

    box-shadow:
        0 18px 45px rgba(4, 23, 53, 0.18);

    backdrop-filter:
        blur(14px);

}


.hero-privacy-note strong {

    display:
        block;

    margin-bottom:
        0.18rem;

    color:
        var(--white);

    font-family:
        var(--font-heading);

}


.hero-privacy-note span:last-child {

    color:
        rgba(255, 255, 255, 0.82);

}


.hero-privacy-note__icon {

    display:
        grid;

    place-items:
        center;

    width:
        2.35rem;

    height:
        2.35rem;

    flex:
        0 0 2.35rem;

    border-radius:
        0.8rem;

    color:
        var(--navy-950);

    background:
        linear-gradient(
            135deg,
            var(--logo-yellow),
            #f8d56d
        );

}


/* -------------------------------------------------------------
   PUBLIC-SAFE COMMUNICATION NOTICE
------------------------------------------------------------- */

.communication-privacy-notice {

    display:
        grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items:
        center;

    gap:
        clamp(1rem, 3vw, 1.75rem);

    margin-bottom:
        clamp(1.5rem, 4vw, 2.5rem);

    padding:
        clamp(1.25rem, 3vw, 1.65rem);

    border:
        1px solid rgba(77, 148, 166, 0.25);

    border-left:
        0.42rem solid var(--logo-teal);

    border-radius:
        1.35rem;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.96),
            rgba(232, 248, 246, 0.90)
        );

    box-shadow:
        0 18px 48px rgba(4, 23, 53, 0.08);

}


.communication-privacy-notice__icon {

    display:
        grid;

    place-items:
        center;

    width:
        3.2rem;

    height:
        3.2rem;

    border-radius:
        1rem;

    color:
        var(--white);

    background:
        linear-gradient(
            135deg,
            var(--logo-teal),
            var(--logo-blue)
        );

    box-shadow:
        0 12px 32px rgba(77, 148, 166, 0.22);

}


.communication-privacy-notice__eyebrow {

    margin-bottom:
        0.25rem;

    color:
        var(--logo-blue);

    font-family:
        var(--font-heading);

    font-size:
        0.78rem;

    font-weight:
        900;

    letter-spacing:
        0.1em;

    text-transform:
        uppercase;

}


.communication-privacy-notice h3 {

    margin-bottom:
        0.35rem;

    color:
        var(--navy-950);

}


.communication-privacy-notice p:last-child {

    margin-bottom:
        0;

}


/* -------------------------------------------------------------
   PRIVATE DETAIL BADGES INSIDE SCHEDULE/EVENTS
------------------------------------------------------------- */

.schedule-row__time {

    color:
        var(--logo-blue);

    font-weight:
        900;

}


.schedule-row__time::before {

    content:
        "🔒 ";

}


.event-card__details span {

    border:
        1px solid rgba(0, 74, 173, 0.10);

    border-radius:
        0.75rem;

    padding:
        0.45rem 0.58rem;

    background:
        rgba(255, 255, 255, 0.66);

}


.event-card__details span:nth-child(2)::after,
.event-card__details span:nth-child(3)::after {

    content:
        " protected";

    color:
        var(--logo-teal);

    font-size:
        0.78em;

    font-weight:
        900;

    text-transform:
        uppercase;

}


/* -------------------------------------------------------------
   FAMILY PORTAL SECTION
------------------------------------------------------------- */

.portal-section {

    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(237, 180, 41, 0.18),
            transparent 24rem
        ),
        radial-gradient(
            circle at 96% 20%,
            rgba(77, 148, 166, 0.20),
            transparent 24rem
        ),
        linear-gradient(
            135deg,
            rgba(255, 253, 247, 0.98),
            rgba(232, 242, 255, 0.88)
        );

}


.portal-grid {

    display:
        grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(20rem, 0.9fr);

    gap:
        clamp(1.25rem, 3vw, 2rem);

}


.portal-card {

    position:
        relative;

    overflow:
        hidden;

    padding:
        clamp(1.35rem, 3vw, 2rem);

    border:
        1px solid rgba(0, 74, 173, 0.12);

    border-radius:
        1.55rem;

    background:
        rgba(255, 255, 255, 0.92);

    box-shadow:
        0 20px 60px rgba(4, 23, 53, 0.10);

}


.portal-card::before {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    pointer-events:
        none;

    background:
        linear-gradient(
            135deg,
            rgba(237, 180, 41, 0.08),
            transparent 42%,
            rgba(77, 148, 166, 0.08)
        );

}


.portal-card > * {

    position:
        relative;

}


.portal-card--primary {

    color:
        var(--white);

    background:
        linear-gradient(
            135deg,
            rgba(4, 23, 53, 0.98),
            rgba(0, 74, 173, 0.94)
        );

    border-color:
        rgba(255, 255, 255, 0.14);

}


.portal-card--primary h3,
.portal-card--primary p,
.portal-card--primary li,
.portal-card--primary .card-kicker {

    color:
        var(--white);

}


.portal-card--primary p,
.portal-card--primary li {

    color:
        rgba(255, 255, 255, 0.80);

}


.portal-card--soft {

    grid-column:
        1 / -1;

    background:
        linear-gradient(
            135deg,
            rgba(255, 249, 235, 0.96),
            rgba(232, 248, 246, 0.92)
        );

}


.portal-card__icon {

    display:
        grid;

    place-items:
        center;

    width:
        3.4rem;

    height:
        3.4rem;

    margin-bottom:
        1rem;

    border-radius:
        1rem;

    color:
        var(--navy-950);

    background:
        linear-gradient(
            135deg,
            var(--logo-yellow),
            #f8dd8b
        );

    box-shadow:
        0 15px 35px rgba(237, 180, 41, 0.20);

}


.portal-checklist {

    display:
        grid;

    gap:
        0.85rem;

    padding:
        0;

    margin:
        1.2rem 0 0;

    list-style:
        none;

}


.portal-checklist li {

    display:
        grid;

    grid-template-columns:
        auto
        1fr;

    gap:
        0.65rem;

    align-items:
        start;

}


.portal-checklist svg {

    width:
        1.25rem;

    height:
        1.25rem;

    color:
        var(--logo-yellow);

}


.portal-login-form {

    display:
        grid;

    gap:
        0.8rem;

    margin-top:
        1.2rem;

}


.portal-login-form label {

    color:
        var(--navy-950);

    font-family:
        var(--font-heading);

    font-size:
        0.88rem;

    font-weight:
        900;

}


.portal-login-form input {

    width:
        100%;

    min-height:
        3rem;

    padding:
        0.85rem 1rem;

    border:
        1px solid rgba(0, 74, 173, 0.18);

    border-radius:
        0.9rem;

    color:
        var(--ink-900);

    background:
        rgba(255, 255, 255, 0.94);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.68);

}


.portal-login-form input:focus {

    border-color:
        var(--logo-blue);

    outline:
        3px solid rgba(237, 180, 41, 0.38);

}


.portal-status {

    margin-top:
        1rem;

    padding:
        0.95rem 1rem;

    border:
        1px solid rgba(0, 74, 173, 0.12);

    border-radius:
        1rem;

    color:
        var(--ink-800);

    background:
        rgba(230, 240, 251, 0.72);

    font-weight:
        800;

}


.portal-status[data-status="success"] {

    color:
        #244b16;

    background:
        rgba(76, 135, 43, 0.14);

    border-color:
        rgba(76, 135, 43, 0.26);

}


.portal-status[data-status="warning"] {

    color:
        #7a1617;

    background:
        rgba(239, 32, 33, 0.08);

    border-color:
        rgba(239, 32, 33, 0.22);

}


.portal-table {

    display:
        grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        1rem;

    margin-top:
        1rem;

}


.portal-table div {

    padding:
        1rem;

    border:
        1px solid rgba(0, 74, 173, 0.10);

    border-radius:
        1rem;

    background:
        rgba(255, 255, 255, 0.74);

}


.portal-table strong {

    display:
        block;

    margin-bottom:
        0.35rem;

    color:
        var(--navy-950);

    font-family:
        var(--font-heading);

}


.portal-table span {

    color:
        var(--ink-700);

}


/* -------------------------------------------------------------
   RESPONSIVE PORTAL AND ROUTING FIXES
------------------------------------------------------------- */

@media (max-width: 980px) {

    .communication-privacy-notice {

        grid-template-columns:
            auto
            1fr;

    }


    .communication-privacy-notice .button {

        grid-column:
            1 / -1;

        justify-self:
            start;

    }


    .portal-grid {

        grid-template-columns:
            1fr;

    }


    .portal-card--soft {

        grid-column:
            auto;

    }

}


@media (max-width: 640px) {

    .hero-privacy-note {

        align-items:
            stretch;

        flex-direction:
            column;

    }


    .communication-privacy-notice {

        grid-template-columns:
            1fr;

    }


    .communication-privacy-notice__icon {

        width:
            2.8rem;

        height:
            2.8rem;

    }


    .portal-table {

        grid-template-columns:
            1fr;

    }

}


/* -------------------------------------------------------------
   PRINT SAFETY
------------------------------------------------------------- */

@media print {

    .portal-section,
    .communication-privacy-notice {

        break-inside:
            avoid;

    }

}

/* =============================================================
   ORIGINAL-BASED WORKING REVISION
   Exact Heads Up logo palette + simpler page routing
============================================================= */

:root {
    --brand-green: #4c872b;
    --brand-red: #ef2021;
    --brand-yellow: #edb429;
    --brand-teal: #4d94a6;
    --brand-blue: #004aad;

    --navy-950: #002a63;
    --navy-900: #004aad;
    --navy-850: #0759b9;
    --navy-800: #1768c5;

    --blue-700: #004aad;
    --blue-600: #1768c5;
    --blue-500: #4d94a6;
    --blue-200: #c8e0e7;
    --blue-100: #e8f3f7;
    --blue-050: #f3f9fb;

    --gold-600: #c99417;
    --gold-500: #edb429;
    --gold-400: #f2c54f;
    --gold-300: #f6d678;
    --gold-100: #fff1bd;
    --gold-050: #fff9e6;

    --teal-700: #39798a;
    --teal-600: #4d94a6;
    --teal-300: #8fc2cf;
    --teal-100: #e2f1f4;

    --coral-600: #d91617;
    --coral-500: #ef2021;
    --coral-100: #ffe4e4;

    --success-600: #4c872b;
    --success-500: #62a43b;

    --danger-700: #bd1516;
    --danger-600: #d91617;
    --danger-500: #ef2021;

    --page-background: #f6f8ef;
    --content-width: 1180px;
    --content-width-wide: 1320px;
    --section-space: clamp(3.7rem, 7vw, 6.2rem);

    --shadow-sm: 0 7px 20px rgba(0, 42, 99, 0.07);
    --shadow-md: 0 14px 38px rgba(0, 42, 99, 0.10);
    --shadow-lg: 0 22px 60px rgba(0, 42, 99, 0.14);
}

body {
    background:
        radial-gradient(circle at 5% 5%, rgba(237, 180, 41, 0.18), transparent 24rem),
        radial-gradient(circle at 95% 15%, rgba(77, 148, 166, 0.18), transparent 27rem),
        radial-gradient(circle at 50% 100%, rgba(76, 135, 43, 0.12), transparent 30rem),
        linear-gradient(180deg, #fffaf0 0%, #f1f7fb 43%, #f2f8ed 100%);
}

.ambient-orb {
    opacity: 0.16;
}

.ambient-ribbon,
.ambient-sparkles {
    opacity: 0.22;
}

.main-header {
    background:
        linear-gradient(
            100deg,
            rgba(0, 42, 99, 0.98),
            rgba(0, 74, 173, 0.97) 58%,
            rgba(77, 148, 166, 0.96)
        );
}

.emergency-bar {
    background:
        linear-gradient(
            90deg,
            #3b6f25,
            var(--brand-green) 55%,
            #39798a
        );
}

.nav-link--highlight,
.section-tag,
.card-kicker {
    color: var(--brand-blue);
}

.nav-link::after,
.nav-dropdown__button::after,
.section-tag::before {
    background: linear-gradient(90deg, var(--brand-yellow), #f6d678);
}

.nav-contact-button,
.button--primary {
    color: #082342;
    background:
        linear-gradient(
            135deg,
            #f6d678,
            var(--brand-yellow)
        );
    border-color: rgba(237, 180, 41, 0.9);
}

.button--primary:hover {
    box-shadow: 0 14px 32px rgba(237, 180, 41, 0.28);
}

.nav-link--portal {
    color: #d9f4ff;
}

.nav-link.is-route-current,
.nav-dropdown__menu a.is-route-current,
.mobile-nav__links a.is-route-current {
    color: #ffffff;
}

.nav-link.is-route-current::after {
    width: calc(100% - 0.6rem);
}

main > section[hidden] {
    display: none !important;
}

main > section.is-route-visible {
    animation: routeFadeIn 320ms var(--ease-standard);
}

@keyframes routeFadeIn {
    from {
        opacity: 0;
        transform: translateY(0.6rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-spacing {
    min-height: auto;
}

.section-heading {
    margin-bottom: clamp(2rem, 4vw, 3.4rem);
}

.about-card,
.program-card,
.update-card,
.resource-card,
.team-card,
.faq-item,
.contact-info-card,
.portal-card,
.story-card {
    box-shadow: var(--shadow-sm);
}

.about-card:hover,
.program-card:hover,
.resource-card:hover,
.team-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.email-copy-button {
    padding: 0;
    border: 0;
    color: var(--brand-blue);
    background: transparent;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.email-copy-button:hover {
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

.form-field--honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.form-submit-status {
    min-height: 1.7rem;
    margin-top: 1rem;
    padding: 0.7rem 0.85rem;
    border-radius: 0.7rem;
    font-weight: 800;
}

.form-submit-status:empty {
    display: none;
}

.form-submit-status[data-status="success"] {
    color: #2d6419;
    background: #e8f5df;
}

.form-submit-status[data-status="warning"] {
    color: #7f5b00;
    background: #fff4cb;
}

.form-submit-status[data-status="danger"] {
    color: #9e1516;
    background: #ffe4e4;
}


/* Parents view */

.family-expect-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.family-expect-card {
    position: relative;
    padding: 1.45rem;
    border: 1px solid rgba(0, 74, 173, 0.12);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
}

.family-expect-card:nth-child(1) {
    border-top: 0.28rem solid var(--brand-blue);
}

.family-expect-card:nth-child(2) {
    border-top: 0.28rem solid var(--brand-green);
}

.family-expect-card:nth-child(3) {
    border-top: 0.28rem solid var(--brand-yellow);
}

.family-expect-card:nth-child(4) {
    border-top: 0.28rem solid var(--brand-teal);
}

.family-expect-card__number {
    display: inline-flex;
    margin-bottom: 0.8rem;
    color: var(--brand-blue);
    font-family: var(--font-heading);
    font-weight: 900;
}

.family-expect-card h3 {
    margin-bottom: 0.7rem;
}

.family-support-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
    margin-top: 1.4rem;
    padding: clamp(1.4rem, 3vw, 2.2rem);
    border: 1px solid rgba(76, 135, 43, 0.22);
    border-radius: 1.15rem;
    background:
        linear-gradient(
            135deg,
            rgba(232, 245, 223, 0.96),
            rgba(232, 243, 247, 0.96)
        );
}

.family-support-panel__actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

/* Volunteer view */

.volunteer-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(19rem, 0.8fr);
    gap: 1.25rem;
}

.volunteer-main-card,
.volunteer-info-card {
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid rgba(0, 74, 173, 0.13);
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.volunteer-main-card {
    border-top: 0.35rem solid var(--brand-green);
}

.volunteer-main-card h4 {
    margin-top: 1.5rem;
    color: var(--navy-950);
    font-family: var(--font-heading);
}

.volunteer-checklist,
.volunteer-info-card ul,
.volunteer-info-card ol,
.portal-steps {
    padding-left: 1.25rem;
}

.volunteer-checklist li,
.volunteer-info-card li,
.portal-steps li {
    margin-bottom: 0.65rem;
}

.volunteer-side-stack {
    display: grid;
    gap: 1rem;
}

.volunteer-info-card:nth-child(1) {
    border-top: 0.3rem solid var(--brand-blue);
}

.volunteer-info-card:nth-child(2) {
    border-top: 0.3rem solid var(--brand-teal);
}

.volunteer-info-card--action {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--brand-blue),
            #39798a
        );
}

.volunteer-info-card--action h3,
.volunteer-info-card--action p,
.volunteer-info-card--action .card-kicker {
    color: #ffffff;
}

/* Portal */

.portal-grid--working {
    align-items: start;
}

.portal-security-note {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 1.2rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(76, 135, 43, 0.24);
    border-radius: 0.9rem;
    background: #eef8e8;
}

.portal-security-note svg {
    flex: 0 0 auto;
    color: var(--brand-green);
}

.portal-security-note p {
    margin: 0.25rem 0 0;
}

.portal-auth-card {
    overflow: hidden;
}

.portal-auth-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
    margin-bottom: 1rem;
    padding: 0.35rem;
    border-radius: 0.85rem;
    background: #edf3f8;
}

.portal-auth-tab {
    min-height: 2.75rem;
    padding: 0.55rem;
    border: 0;
    border-radius: 0.65rem;
    color: var(--ink-700);
    background: transparent;
    font-weight: 900;
    cursor: pointer;
}

.portal-auth-tab.is-active {
    color: #ffffff;
    background: var(--brand-blue);
    box-shadow: 0 7px 18px rgba(0, 74, 173, 0.2);
}

.portal-auth-panel {
    display: grid;
    gap: 0.9rem;
}

.password-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.45rem;
}

.password-toggle {
    min-width: 4.25rem;
    border: 1px solid rgba(0, 74, 173, 0.18);
    border-radius: 0.7rem;
    color: var(--brand-blue);
    background: #edf5ff;
    font-weight: 900;
    cursor: pointer;
}

.portal-text-button {
    border: 0;
    color: var(--brand-blue);
    background: transparent;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 0.2rem;
    cursor: pointer;
}

.portal-consent {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 0.7rem;
    color: var(--ink-700);
    font-size: 0.92rem;
}

.portal-small-note {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 0.75rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.portal-status[data-status="success"] {
    color: #2d6419;
    background: #e8f5df;
}

.portal-status[data-status="warning"] {
    color: #7f5b00;
    background: #fff4cb;
}

.portal-status[data-status="danger"] {
    color: #9e1516;
    background: #ffe4e4;
}

.portal-dashboard {
    grid-column: 1 / -1;
}

.portal-dashboard__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.portal-approval-banner {
    margin: 1rem 0;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    font-weight: 800;
}

.portal-approval-banner[data-status="approved"] {
    color: #2d6419;
    background: #e8f5df;
}

.portal-approval-banner[data-status="pending"] {
    color: #7f5b00;
    background: #fff4cb;
}

.portal-approval-banner[data-status="rejected"],
.portal-approval-banner[data-status="suspended"] {
    color: #9e1516;
    background: #ffe4e4;
}

.private-content-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.private-content-card,
.private-content-empty {
    padding: 1.1rem;
    border: 1px solid rgba(0, 74, 173, 0.13);
    border-radius: 0.9rem;
    background: #ffffff;
}

.private-content-card__type {
    color: var(--brand-teal);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.private-content-card h4 {
    margin: 0.45rem 0;
    color: var(--navy-950);
    font-family: var(--font-heading);
}

.private-content-card__meta {
    font-weight: 800;
}


/* Public calendar */

.public-calendar-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 1.25rem;
    margin-top: 1.4rem;
    padding: clamp(1.3rem, 3vw, 2rem);
    border: 1px solid rgba(77, 148, 166, 0.22);
    border-radius: 1.15rem;
    background:
        linear-gradient(
            135deg,
            rgba(232, 243, 247, 0.96),
            rgba(255, 249, 230, 0.96)
        );
}

.public-calendar-frame {
    min-height: 18rem;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(0, 74, 173, 0.25);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.78);
    overflow: hidden;
}

.public-calendar-frame iframe {
    width: 100%;
    min-height: 28rem;
    border: 0;
}

.public-calendar-frame p {
    max-width: 31rem;
    margin: 0;
    padding: 1.2rem;
    text-align: center;
}

/* Keep the original layout readable and less crowded. */

.hero-container,
.contact-wrapper,
.communication-hub__inner {
    gap: clamp(1.5rem, 4vw, 3.5rem);
}

.hero-description,
.section-heading > p,
.section-heading--split > p {
    max-width: 62ch;
}

.nav-dropdown__menu {
    max-height: min(70vh, 31rem);
    overflow-y: auto;
}

@media (max-width: 980px) {
    .family-expect-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .volunteer-layout,
    .public-calendar-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .family-expect-grid,
    .private-content-list {
        grid-template-columns: 1fr;
    }

    .family-support-panel {
        grid-template-columns: 1fr;
    }

    .family-support-panel__actions {
        align-items: stretch;
    }

    .portal-auth-tabs {
        grid-template-columns: 1fr;
    }

    .portal-dashboard__header {
        flex-direction: column;
    }

    .public-calendar-frame {
        min-height: 13rem;
    }
}


/* Wide supplied Heads Up logo */
.logo-frame {
    width: 8.25rem;
    height: 4.15rem;
    flex-basis: 8.25rem;
    padding: 0.15rem;
}

.logo-text-wrapper {
    display: none;
}

.footer-logo-link .footer-logo-frame,
.footer-logo-frame {
    width: 9rem;
    min-width: 9rem;
    height: 4.5rem;
}

.footer-logo-link > span:last-child {
    display: none;
}

@media (max-width: 720px) {
    .logo-frame {
        width: 7rem;
        flex-basis: 7rem;
        height: 3.6rem;
    }
}



/* =====================================================================
   MERGED PUBLIC-READY.CSS — ORIGINAL ADD-ON PRESERVED VERBATIM
   =====================================================================
   This block was previously loaded after style.css. Keeping it at the
   end of this combined file preserves the exact cascade and behavior.
   Do not move this block above the original stylesheet.
   ===================================================================== */

/* =============================================================
   HEADS UP PUBLIC-READY ADD-ON
   -------------------------------------------------------------
   Load this AFTER style.css.

   This file intentionally leaves the existing website stylesheet
   untouched and applies only the requested public-readiness,
   navigation, brand, privacy, and portal-state improvements.
============================================================= */

:root {
    --brand-green: #4c872b;
    --brand-red: #ef2021;
    --brand-yellow: #edb429;
    --brand-teal: #4d94a6;
    --brand-blue: #004aad;
    --public-ready-navy: #062d67;
    --public-ready-ink: #223047;
    --public-ready-soft-blue: #edf5ff;
    --public-ready-soft-green: #edf7e8;
    --public-ready-soft-yellow: #fff6d8;
    --public-ready-border: rgba(0, 74, 173, 0.14);
}

/* -------------------------------------------------------------
   1. CLEANER HEADER AND NAVIGATION
------------------------------------------------------------- */

/* The large yellow Contact button is the only top contact pathway. */
.emergency-bar {
    display: none !important;
}

.site-header-shell {
    top: 0;
}

.main-header {
    background:
        linear-gradient(
            102deg,
            #062d67 0%,
            var(--brand-blue) 58%,
            var(--brand-teal) 100%
        ) !important;
}

/* The Updates link must remain readable against the blue header. */
.nav-link--highlight {
    color: rgba(255, 255, 255, 0.88) !important;
}

.nav-link--highlight:hover,
.nav-link--highlight:focus-visible {
    color: #ffffff !important;
}

/* Yellow underlines appear only during hover/focus, never permanently. */
.nav-link::after,
.nav-dropdown__button::after,
.nav-link.is-active::after,
.nav-link.is-route-current::after,
.nav-dropdown__button[aria-expanded="true"]::after {
    width: 0 !important;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-dropdown__button:hover::after,
.nav-dropdown__button:focus-visible::after {
    width: calc(100% - 0.6rem) !important;
}

.nav-link.is-route-current,
.nav-dropdown__menu a.is-route-current,
.mobile-nav__links a.is-route-current {
    color: #ffffff !important;
}

.nav-contact-button {
    min-height: 3rem;
    padding-inline: 1.25rem;
    color: #082342 !important;
    border-color: rgba(237, 180, 41, 0.95) !important;
    background: linear-gradient(135deg, #f7d876, var(--brand-yellow)) !important;
    box-shadow: 0 10px 28px rgba(237, 180, 41, 0.24) !important;
}

.nav-contact-button:hover,
.nav-contact-button:focus-visible {
    box-shadow: 0 14px 34px rgba(237, 180, 41, 0.34) !important;
}

/* Replaces the older emoji pseudo-icon with a real SVG icon. */
.nav-link--portal::before {
    content: none !important;
}

.portal-nav-link {
    display: inline-flex !important;
    align-items: center;
    gap: 0.38rem;
    max-width: min(18rem, 23vw);
}

.portal-nav-link .portal-nav-icon {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
}

.portal-nav-link .portal-nav-label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.portal-nav-link.is-unlocked {
    color: #dff7d5 !important;
}

/* Remove the separate Events destination; events remain inside Updates. */
.desktop-nav > a[href="#events"],
.mobile-nav__links > a[href="#events"],
.footer-links a[href="#events"] {
    display: none !important;
}

/* -------------------------------------------------------------
   2. SIMPLER HOME PAGE
------------------------------------------------------------- */

/* Keep only one clear hero action. */
.hero-buttons > :not(:first-child) {
    display: none !important;
}

.hero-buttons {
    gap: 0;
}

.hero-quick-stats,
.action-ribbon {
    display: none !important;
}

.hero-description {
    max-width: 64ch;
}

.hero-privacy-note {
    max-width: 47rem;
}

/* -------------------------------------------------------------
   3. BRAND CONSISTENCY
------------------------------------------------------------- */

.section-tag,
.card-kicker,
.resource-card__eyebrow,
.private-content-card__type {
    color: var(--brand-blue) !important;
}

.section-tag::before,
.nav-link::after,
.nav-dropdown__button::after {
    background: linear-gradient(90deg, var(--brand-yellow), #f8d978) !important;
}

.button--primary,
.nav-contact-button {
    background: linear-gradient(135deg, #f8d978, var(--brand-yellow)) !important;
}

.button--secondary:hover,
.card-action:hover,
.text-link:hover {
    color: var(--brand-blue);
}

/* Keep the dark Who We Are feature card readable on hover. */
.about-card--feature,
.about-card--feature:hover {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.16) !important;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(237, 180, 41, 0.26),
            transparent 14rem
        ),
        linear-gradient(
            145deg,
            #062d67,
            var(--brand-blue)
        ) !important;
}

.about-card--feature:hover .card-kicker,
.about-card--feature:hover h3,
.about-card--feature:hover p {
    color: #ffffff !important;
}

.about-card--feature:hover .text-link {
    color: #ffe6a1 !important;
}

/* The cleaned About grid contains one feature and two concise cards. */
.about-grid.is-public-ready {
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
}

.about-grid.is-public-ready .about-card--feature {
    grid-row: span 2;
}

/* -------------------------------------------------------------
   4. PUBLIC/PRIVATE ACCESS STATES
------------------------------------------------------------- */

.protected-lock-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.15rem;
    margin: 1.25rem 0;
    padding: clamp(1.25rem, 3vw, 1.8rem);
    border: 1px solid rgba(0, 74, 173, 0.16);
    border-left: 0.36rem solid var(--brand-yellow);
    border-radius: 1.15rem;
    background:
        linear-gradient(
            135deg,
            rgba(255, 246, 216, 0.97),
            rgba(237, 245, 255, 0.97)
        );
    box-shadow: 0 14px 34px rgba(6, 45, 103, 0.09);
}

.protected-lock-card__icon {
    display: grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    color: #ffffff;
    background: var(--brand-blue);
}

.protected-lock-card__icon svg {
    width: 1.65rem;
    height: 1.65rem;
}

.protected-lock-card h3 {
    margin: 0 0 0.35rem;
    color: var(--public-ready-navy);
}

.protected-lock-card p {
    margin: 0;
    color: #526178;
}

.protected-content[hidden],
.protected-lock-card[hidden],
.private-schedule-view[hidden],
.private-calendar-panel[hidden] {
    display: none !important;
}

body.portal-access-approved .protected-content {
    animation: publicReadyUnlock 420ms ease both;
}

@keyframes publicReadyUnlock {
    from {
        opacity: 0;
        transform: translateY(0.5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery is a clearly visible protected destination. */
.gallery-section .gallery-note.public-ready-gallery-note {
    margin-top: 1.15rem;
    padding: 0.9rem 1rem;
    border-radius: 0.85rem;
    color: #4f5f73;
    background: rgba(255, 255, 255, 0.82);
}

/* Lock styling for Schedule and Upcoming Events tabs. */
.hub-tab.is-private-locked::after {
    content: "  🔒";
    font-size: 0.8em;
}

.hub-tab.is-private-unlocked::after {
    content: "  ✓";
    color: var(--brand-green);
    font-size: 0.8em;
}

.private-schedule-view {
    margin-top: 1.2rem;
}

.private-schedule-grid,
.private-calendar-events {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.private-schedule-card,
.private-calendar-event {
    padding: 1.15rem;
    border: 1px solid var(--public-ready-border);
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 22px rgba(6, 45, 103, 0.07);
}

.private-schedule-card h4,
.private-calendar-event h4 {
    margin: 0.35rem 0 0.55rem;
    color: var(--public-ready-navy);
}

.private-schedule-card__type {
    color: var(--brand-teal);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.private-schedule-card__meta {
    color: #44536a;
    font-weight: 800;
}

.private-schedule-card__actions,
.private-calendar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.95rem;
}

.private-schedule-card__actions .button,
.private-calendar-actions .button {
    min-height: 2.65rem;
}

/* -------------------------------------------------------------
   5. APPROVED PRIVATE CALENDAR
------------------------------------------------------------- */

.private-calendar-panel {
    margin: 1.25rem 0;
    padding: clamp(1.25rem, 3vw, 1.9rem);
    border: 1px solid rgba(77, 148, 166, 0.24);
    border-top: 0.34rem solid var(--brand-teal);
    border-radius: 1.1rem;
    background:
        linear-gradient(
            135deg,
            rgba(237, 245, 255, 0.98),
            rgba(237, 247, 232, 0.98)
        );
}

.private-calendar-panel__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.private-calendar-panel__header h3 {
    margin: 0.2rem 0 0.35rem;
    color: var(--public-ready-navy);
}

.private-calendar-panel__header p {
    margin: 0;
    max-width: 65ch;
}

.private-calendar-empty {
    padding: 1rem;
    border-radius: 0.85rem;
    color: #526178;
    background: rgba(255, 255, 255, 0.78);
}

/* Public Google Calendar is intentionally disabled; the approved portal
   provides the protected calendar and event downloads instead. */
#publicCalendarPanel {
    display: none !important;
}

/* -------------------------------------------------------------
   6. PUBLIC-READY CONTENT CLEANUP
------------------------------------------------------------- */

.footer-newsletter,
.footer-social-strip {
    display: none !important;
}

.resource-card--incoming.is-private-resource-hidden,
.about-card.is-public-ready-hidden {
    display: none !important;
}

.transparency-panel.public-ready-commitments {
    grid-template-columns: minmax(0, 1fr) auto;
}

.public-ready-commitment-list {
    display: grid;
    gap: 0.6rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.public-ready-commitment-list li {
    position: relative;
    padding-left: 1.4rem;
}

.public-ready-commitment-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: 900;
}

/* -------------------------------------------------------------
   7. SMOOTH, CONTINUOUS PROGRAM BACKGROUND
------------------------------------------------------------- */

/*
   The earlier design gave every light section its own full background,
   which created visible horizontal breaks. The main page now carries one
   continuous Heads Up gradient while each light section stays transparent.
   Cards and content remain unchanged and readable.
*/

body {
    background:
        linear-gradient(
            180deg,
            #f5fbff 0%,
            #eef9f7 22%,
            #fff8e8 45%,
            #eef5ff 68%,
            #f1f9ec 84%,
            #fff8e8 100%
        ) !important;
}

#mainContent {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 7% 8%,
            rgba(76, 135, 43, 0.13),
            transparent 31rem
        ),
        radial-gradient(
            circle at 94% 14%,
            rgba(77, 148, 166, 0.18),
            transparent 34rem
        ),
        radial-gradient(
            circle at 12% 37%,
            rgba(237, 180, 41, 0.18),
            transparent 36rem
        ),
        radial-gradient(
            circle at 91% 58%,
            rgba(239, 32, 33, 0.075),
            transparent 33rem
        ),
        radial-gradient(
            circle at 28% 83%,
            rgba(0, 74, 173, 0.12),
            transparent 38rem
        ),
        linear-gradient(
            180deg,
            rgba(242, 250, 255, 0.98) 0%,
            rgba(239, 249, 247, 0.97) 18%,
            rgba(255, 249, 232, 0.97) 38%,
            rgba(239, 246, 255, 0.97) 61%,
            rgba(242, 250, 237, 0.97) 82%,
            rgba(255, 249, 232, 0.98) 100%
        );
}

/* Keep the light portions of the page on the continuous background. */
.hero-section,
.about-section,
.programs-section,
.gallery-section,
.stories-section,
.resources-section,
.team-section,
.faq-section,
.contact-section,
.portal-section {
    background: transparent !important;
}

/* Remove the old section-by-section divider lines. */
.about-section::after,
.programs-section::after,
.gallery-section::after,
.stories-section::after,
.resources-section::after,
.team-section::after,
.faq-section::after,
.contact-section::after {
    display: none !important;
}

/* Keep the texture extremely subtle so sections flow into one another. */
.about-section::before,
.programs-section::before,
.gallery-section::before,
.stories-section::before,
.resources-section::before,
.team-section::before,
.faq-section::before,
.contact-section::before {
    opacity: 0.11 !important;
    mask-image: linear-gradient(
        180deg,
        transparent,
        black 18%,
        black 82%,
        transparent
    ) !important;
}

/* Soft fades keep the intentionally dark Updates hub polished. */
.communication-hub {
    box-shadow:
        inset 0 4.5rem 6rem -6rem rgba(255, 255, 255, 0.38),
        inset 0 -4.5rem 6rem -6rem rgba(77, 148, 166, 0.52) !important;
}

/* -------------------------------------------------------------
   8. CALENDAR TOOLS INSIDE UPDATES
------------------------------------------------------------- */

.private-calendar-panel--updates {
    margin-top: 2rem;
    color: var(--public-ready-ink);
    border-color: rgba(237, 180, 41, 0.32);
    border-top-color: var(--brand-yellow);
    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(237, 180, 41, 0.20),
            transparent 19rem
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.98),
            rgba(237, 247, 232, 0.97) 52%,
            rgba(237, 245, 255, 0.98)
        );
    box-shadow: 0 18px 42px rgba(3, 28, 67, 0.18);
}

.communication-hub .private-calendar-panel--updates h3,
.communication-hub .private-calendar-panel--updates h4 {
    color: var(--public-ready-navy) !important;
}

.communication-hub .private-calendar-panel--updates p {
    color: #526178 !important;
}

.communication-hub .private-calendar-panel--updates .card-kicker,
.communication-hub .private-calendar-panel--updates .private-schedule-card__type {
    color: var(--brand-blue) !important;
}

/* Calendar subscription rows are represented by the dedicated calendar
   panel, so they no longer appear again as duplicate generic cards. */
#privateContentList .public-ready-calendar-card-hidden {
    display: none !important;
}

/* -------------------------------------------------------------
   9. RESPONSIVE ADJUSTMENTS
------------------------------------------------------------- */

@media (max-width: 1100px) {
    .portal-nav-link {
        max-width: 12rem;
    }
}

@media (max-width: 920px) {
    .about-grid.is-public-ready,
    .private-schedule-grid,
    .private-calendar-events {
        grid-template-columns: 1fr;
    }

    .about-grid.is-public-ready .about-card--feature {
        grid-row: auto;
        min-height: auto;
    }

    .protected-lock-card {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .protected-lock-card .button {
        grid-column: 1 / -1;
        justify-self: stretch;
    }
}

@media (max-width: 720px) {
    .protected-lock-card {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .private-calendar-panel__header {
        flex-direction: column;
    }

    .private-calendar-actions,
    .private-schedule-card__actions {
        flex-direction: column;
    }

    .private-calendar-actions .button,
    .private-schedule-card__actions .button {
        width: 100%;
        justify-content: center;
    }

    .portal-nav-link {
        max-width: none;
    }
}

/* Private schedule data comes from the protected database, not from the
   original public-safe placeholder renderer. */
.public-ready-original-private-data,
#eventsPanel .event-toolbar {
    display: none !important;
}

/* =============================================================
   FINAL PUBLIC-DEMO MOBILE NAVIGATION PATCH
   -------------------------------------------------------------
   This patch addresses three mobile-only issues:
   1. The current Home route remains readable on the white drawer.
   2. Approved account email appears directly below the drawer header.
   3. Navigation rows stay clear above the fixed quick-access dock.
============================================================= */

@media (max-width: 1260px) {

    .mobile-nav:not([hidden]) {
        height:
            100dvh;

        padding:
            0 1rem
            calc(6.2rem + env(safe-area-inset-bottom));

        background:
            radial-gradient(
                circle at 100% 0%,
                rgba(237, 180, 41, 0.13),
                transparent 18rem
            ),
            radial-gradient(
                circle at 0% 100%,
                rgba(77, 148, 166, 0.11),
                transparent 18rem
            ),
            rgba(255, 255, 255, 0.99);
    }


    .mobile-nav__header {
        position:
            sticky;

        top:
            0;

        z-index:
            5;

        min-height:
            5.9rem;

        padding:
            1rem 0.35rem;

        background:
            linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.99),
                rgba(255, 248, 227, 0.98)
            );

        border-bottom:
            1px solid rgba(0, 74, 173, 0.12);
    }


    .mobile-nav__header > span {
        color:
            var(--brand-deep, #062d67);

        font-size:
            clamp(1.2rem, 5vw, 1.55rem);
    }


    .mobile-nav__account {
        display:
            grid;

        grid-template-columns:
            auto minmax(0, 1fr);

        align-items:
            center;

        gap:
            0.75rem;

        margin:
            0.75rem 0 0.2rem;

        padding:
            0.85rem 0.9rem;

        border:
            1px solid rgba(76, 135, 43, 0.2);

        border-radius:
            0.9rem;

        background:
            linear-gradient(
                135deg,
                rgba(236, 248, 229, 0.98),
                rgba(229, 245, 248, 0.98)
            );

        box-shadow:
            0 10px 28px rgba(4, 27, 61, 0.08);
    }


    .mobile-nav__account[hidden] {
        display:
            none !important;
    }


    .mobile-nav__account-icon {
        display:
            grid;

        place-items:
            center;

        width:
            2.35rem;

        height:
            2.35rem;

        border-radius:
            0.72rem;

        color:
            #ffffff;

        background:
            linear-gradient(
                135deg,
                var(--brand-green, #4c872b),
                var(--brand-teal, #4d94a6)
            );
    }


    .mobile-nav__account-icon svg {
        width:
            1.15rem;

        height:
            1.15rem;
    }


    .mobile-nav__account-copy {
        min-width:
            0;
    }


    .mobile-nav__account-copy small,
    .mobile-nav__account-copy strong {
        display:
            block;
    }


    .mobile-nav__account-copy small {
        margin-bottom:
            0.12rem;

        color:
            var(--brand-green, #4c872b);

        font-size:
            0.68rem;

        font-weight:
            900;

        letter-spacing:
            0.08em;

        text-transform:
            uppercase;
    }


    .mobile-nav__account-copy strong {
        overflow:
            hidden;

        color:
            var(--brand-deep, #062d67);

        font-family:
            var(--font-heading);

        font-size:
            0.88rem;

        text-overflow:
            ellipsis;

        white-space:
            nowrap;
    }


    .mobile-nav__links {
        margin-top:
            0.35rem;
    }


    .mobile-nav__links a {
        display:
            grid;

        grid-template-columns:
            2.25rem minmax(0, 1fr);

        align-items:
            center;

        gap:
            0.55rem;

        min-height:
            3.45rem;

        padding:
            0.7rem 0.55rem;

        color:
            var(--brand-deep, #062d67) !important;
    }


    .mobile-nav__links a.portal-nav-link {
        grid-template-columns:
            2.25rem 1.2rem minmax(0, 1fr);
    }


    .mobile-nav__links a > span:first-child,
    .mobile-nav__links .portal-nav-number {
        color:
            #c98700 !important;

        font-size:
            0.72rem;

        font-weight:
            900;
    }


    .mobile-nav__links a.is-route-current {
        color:
            var(--brand-blue, #004aad) !important;

        background:
            linear-gradient(
                90deg,
                rgba(0, 74, 173, 0.08),
                rgba(77, 148, 166, 0.05)
            );

        box-shadow:
            inset 0.22rem 0 0
            var(--brand-yellow, #edb429);
    }


    .mobile-nav__links a.is-route-current > span:first-child,
    .mobile-nav__links a.is-route-current .portal-nav-number {
        color:
            #c98700 !important;
    }


    .mobile-nav__links .portal-nav-icon {
        width:
            1.05rem;

        height:
            1.05rem;

        color:
            var(--brand-green, #4c872b);
    }


    .mobile-nav__emergency {
        margin-top:
            0.7rem;

        padding:
            0.9rem;

        border-color:
            rgba(0, 74, 173, 0.14);

        background:
            rgba(239, 247, 255, 0.96);
    }


    .mobile-nav__emergency strong,
    .mobile-nav__emergency a {
        color:
            var(--brand-deep, #062d67);
    }

}


@media (max-width: 420px) {

    .mobile-nav:not([hidden]) {
        width:
            100vw;

        padding-inline:
            0.85rem;
    }


    .mobile-nav__links a {
        font-size:
            0.94rem;
    }

}

/*
=====================================================================
LINE BY LINE MAINTENANCE INDEX
=====================================================================
This index documents every nonblank code line above without inserting
comments into strings, selectors, or multi-line expressions that would
change behavior. Line numbers refer to this file before this index begins.

L00001: continues CSS documentation for maintainers.
L00002: continues a selector, function, animation step, or property value.
L00003: continues a selector, function, animation step, or property value.
L00004: continues a selector, function, animation step, or property value.
L00005: continues a selector, function, animation step, or property value.
L00006: continues a selector, function, animation step, or property value.
L00007: continues a selector, function, animation step, or property value.
L00009: continues a selector, function, animation step, or property value.
L00010: continues a selector, function, animation step, or property value.
L00011: continues CSS documentation for maintainers.
L00013: continues CSS documentation for maintainers.
L00014: continues a selector, function, animation step, or property value.
L00015: continues a selector, function, animation step, or property value.
L00017: continues a selector, function, animation step, or property value.
L00018: continues a selector, function, animation step, or property value.
L00019: continues a selector, function, animation step, or property value.
L00020: continues a selector, function, animation step, or property value.
L00021: continues a selector, function, animation step, or property value.
L00022: continues a selector, function, animation step, or property value.
L00024: continues a selector, function, animation step, or property value.
L00025: continues a selector, function, animation step, or property value.
L00026: continues a selector, function, animation step, or property value.
L00027: continues a selector, function, animation step, or property value.
L00028: continues a selector, function, animation step, or property value.
L00030: continues a selector, function, animation step, or property value.
L00031: continues a selector, function, animation step, or property value.
L00032: continues a selector, function, animation step, or property value.
L00033: continues a selector, function, animation step, or property value.
L00034: continues a selector, function, animation step, or property value.
L00035: continues a selector, function, animation step, or property value.
L00036: continues a selector, function, animation step, or property value.
L00037: continues a selector, function, animation step, or property value.
L00038: continues a selector, function, animation step, or property value.
L00039: completes the current CSS property value.
L00040: continues a selector, function, animation step, or property value.
L00042: continues a selector, function, animation step, or property value.
L00043: continues a selector, function, animation step, or property value.
L00044: sets or begins the Green CSS property.
L00045: sets or begins the Red CSS property.
L00046: sets or begins the Yellow CSS property.
L00047: sets or begins the Teal CSS property.
L00048: sets or begins the Blue CSS property.
L00050: continues a selector, function, animation step, or property value.
L00051: continues a selector, function, animation step, or property value.
L00052: continues a selector, function, animation step, or property value.
L00053: continues a selector, function, animation step, or property value.
L00054: continues a selector, function, animation step, or property value.
L00055: continues a selector, function, animation step, or property value.
L00056: continues a selector, function, animation step, or property value.
L00057: continues a grouped selector or multi-line CSS value.
L00058: continues a selector, function, animation step, or property value.
L00059: continues CSS documentation for maintainers.
L00060: continues CSS documentation for maintainers.
L00061: continues a selector, function, animation step, or property value.
L00062: continues a selector, function, animation step, or property value.
L00064: continues a selector, function, animation step, or property value.
L00065: continues a selector, function, animation step, or property value.
L00066: continues a selector, function, animation step, or property value.
L00067: continues a selector, function, animation step, or property value.
L00068: continues a selector, function, animation step, or property value.
L00069: continues a selector, function, animation step, or property value.
L00070: continues a selector, function, animation step, or property value.
L00071: continues a selector, function, animation step, or property value.
L00073: continues a selector, function, animation step, or property value.
L00074: continues a selector, function, animation step, or property value.
L00075: continues a selector, function, animation step, or property value.
L00076: continues a selector, function, animation step, or property value.
L00077: continues a selector, function, animation step, or property value.
L00078: continues a selector, function, animation step, or property value.
L00079: continues CSS documentation for maintainers.
L00082: continues CSS documentation for maintainers.
L00083: continues a selector, function, animation step, or property value.
L00084: continues CSS documentation for maintainers.
L00086: selects elements and opens their CSS declaration block.
L00088: continues CSS documentation for maintainers.
L00090: sets or begins the navy-950 CSS property.
L00091: sets or begins the navy-900 CSS property.
L00092: sets or begins the navy-850 CSS property.
L00093: sets or begins the navy-800 CSS property.
L00095: sets or begins the blue-700 CSS property.
L00096: sets or begins the blue-600 CSS property.
L00097: sets or begins the blue-500 CSS property.
L00098: sets or begins the blue-200 CSS property.
L00099: sets or begins the blue-100 CSS property.
L00100: sets or begins the blue-050 CSS property.
L00102: sets or begins the gold-600 CSS property.
L00103: sets or begins the gold-500 CSS property.
L00104: sets or begins the gold-400 CSS property.
L00105: sets or begins the gold-300 CSS property.
L00106: sets or begins the gold-100 CSS property.
L00107: sets or begins the gold-050 CSS property.
L00109: sets or begins the teal-700 CSS property.
L00110: sets or begins the teal-600 CSS property.
L00111: sets or begins the teal-300 CSS property.
L00112: sets or begins the teal-100 CSS property.
L00114: sets or begins the coral-600 CSS property.
L00115: sets or begins the coral-500 CSS property.
L00116: sets or begins the coral-100 CSS property.
L00118: sets or begins the cream-100 CSS property.
L00119: sets or begins the cream-200 CSS property.
L00120: sets or begins the cream-300 CSS property.
L00122: sets or begins the white CSS property.
L00124: sets or begins the ink-950 CSS property.
L00125: sets or begins the ink-900 CSS property.
L00126: sets or begins the ink-800 CSS property.
L00127: sets or begins the ink-700 CSS property.
L00128: sets or begins the ink-600 CSS property.
L00129: sets or begins the ink-500 CSS property.
L00130: sets or begins the ink-300 CSS property.
L00131: sets or begins the ink-200 CSS property.
L00132: sets or begins the ink-100 CSS property.
L00135: continues CSS documentation for maintainers.
L00137: sets or begins the success-600 CSS property.
L00138: sets or begins the success-500 CSS property.
L00140: sets or begins the warning-600 CSS property.
L00142: sets or begins the danger-700 CSS property.
L00143: sets or begins the danger-600 CSS property.
L00144: sets or begins the danger-500 CSS property.
L00145: sets or begins the danger-100 CSS property.
L00148: continues CSS documentation for maintainers.
L00150: sets or begins the page-background CSS property.
L00152: sets or begins the surface CSS property.
L00153: completes the current CSS property value.
L00155: sets or begins the surface-solid CSS property.
L00156: completes the current CSS property value.
L00158: sets or begins the surface-soft CSS property.
L00159: completes the current CSS property value.
L00161: sets or begins the surface-blue CSS property.
L00162: completes the current CSS property value.
L00164: sets or begins the surface-dark CSS property.
L00165: completes the current CSS property value.
L00168: continues CSS documentation for maintainers.
L00170: sets or begins the border-soft CSS property.
L00171: completes the current CSS property value.
L00173: sets or begins the border-medium CSS property.
L00174: completes the current CSS property value.
L00176: sets or begins the border-gold CSS property.
L00177: completes the current CSS property value.
L00180: continues CSS documentation for maintainers.
L00182: sets or begins the shadow-xs CSS property.
L00183: completes the current CSS property value.
L00185: sets or begins the shadow-sm CSS property.
L00186: completes the current CSS property value.
L00188: sets or begins the shadow-md CSS property.
L00189: completes the current CSS property value.
L00191: sets or begins the shadow-lg CSS property.
L00192: completes the current CSS property value.
L00194: sets or begins the shadow-gold CSS property.
L00195: completes the current CSS property value.
L00197: sets or begins the shadow-blue CSS property.
L00198: completes the current CSS property value.
L00201: continues CSS documentation for maintainers.
L00203: sets or begins the font-heading CSS property.
L00204: completes the current CSS property value.
L00206: sets or begins the font-body CSS property.
L00207: completes the current CSS property value.
L00210: continues CSS documentation for maintainers.
L00212: sets or begins the content-width CSS property.
L00213: completes the current CSS property value.
L00215: sets or begins the content-width-wide CSS property.
L00216: completes the current CSS property value.
L00218: sets or begins the page-gutter CSS property.
L00219: completes the current CSS property value.
L00221: sets or begins the section-space CSS property.
L00222: completes the current CSS property value.
L00224: sets or begins the header-radius CSS property.
L00225: completes the current CSS property value.
L00228: continues CSS documentation for maintainers.
L00230: sets or begins the ease-standard CSS property.
L00231: completes the current CSS property value.
L00233: sets or begins the ease-spring CSS property.
L00234: completes the current CSS property value.
L00236: sets or begins the transition-fast CSS property.
L00237: completes the current CSS property value.
L00239: sets or begins the transition-medium CSS property.
L00240: completes the current CSS property value.
L00242: sets or begins the transition-slow CSS property.
L00243: completes the current CSS property value.
L00246: continues CSS documentation for maintainers.
L00248: sets or begins the emergency-bar-height CSS property.
L00249: completes the current CSS property value.
L00251: sets or begins the main-header-height CSS property.
L00252: completes the current CSS property value.
L00254: sets or begins the sticky-offset CSS property.
L00255: continues a selector, function, animation step, or property value.
L00256: continues a selector, function, animation step, or property value.
L00257: continues a selector, function, animation step, or property value.
L00258: continues a selector, function, animation step, or property value.
L00259: completes the current CSS property value.
L00261: closes the current CSS declaration block.
L00264: continues CSS documentation for maintainers.
L00265: continues a selector, function, animation step, or property value.
L00266: continues CSS documentation for maintainers.
L00268: continues CSS documentation for maintainers.
L00269: continues CSS documentation for maintainers.
L00270: continues CSS documentation for maintainers.
L00272: sets or begins the box-sizing CSS property.
L00273: completes the current CSS property value.
L00275: closes the current CSS declaration block.
L00278: selects elements and opens their CSS declaration block.
L00280: sets or begins the scroll-behavior CSS property.
L00281: completes the current CSS property value.
L00283: sets or begins the scroll-padding-top CSS property.
L00284: completes the current CSS property value.
L00286: sets or begins the color-scheme CSS property.
L00287: completes the current CSS property value.
L00289: closes the current CSS declaration block.
L00292: selects elements and opens their CSS declaration block.
L00294: sets or begins the margin CSS property.
L00295: completes the current CSS property value.
L00297: sets or begins the min-width CSS property.
L00298: completes the current CSS property value.
L00300: sets or begins the overflow-x CSS property.
L00301: completes the current CSS property value.
L00303: sets or begins the font-family CSS property.
L00304: completes the current CSS property value.
L00306: sets or begins the font-size CSS property.
L00307: completes the current CSS property value.
L00309: sets or begins the line-height CSS property.
L00310: completes the current CSS property value.
L00312: sets or begins the color CSS property.
L00313: completes the current CSS property value.
L00315: sets or begins the background CSS property.
L00316: continues a selector, function, animation step, or property value.
L00317: continues a grouped selector or multi-line CSS value.
L00318: continues a grouped selector or multi-line CSS value.
L00319: continues a selector, function, animation step, or property value.
L00320: continues a grouped selector or multi-line CSS value.
L00321: continues a selector, function, animation step, or property value.
L00322: continues a grouped selector or multi-line CSS value.
L00323: continues a grouped selector or multi-line CSS value.
L00324: continues a selector, function, animation step, or property value.
L00325: continues a grouped selector or multi-line CSS value.
L00326: continues a selector, function, animation step, or property value.
L00327: continues a grouped selector or multi-line CSS value.
L00328: continues a grouped selector or multi-line CSS value.
L00329: continues a grouped selector or multi-line CSS value.
L00330: continues a grouped selector or multi-line CSS value.
L00331: continues a selector, function, animation step, or property value.
L00332: completes the current CSS property value.
L00334: sets or begins the text-rendering CSS property.
L00335: completes the current CSS property value.
L00337: sets or begins the -webkit-font-smoothing CSS property.
L00338: completes the current CSS property value.
L00340: closes the current CSS declaration block.
L00343: continues a grouped selector or multi-line CSS value.
L00344: selects elements and opens their CSS declaration block.
L00346: sets or begins the overflow CSS property.
L00347: completes the current CSS property value.
L00349: closes the current CSS declaration block.
L00352: continues a grouped selector or multi-line CSS value.
L00353: continues a grouped selector or multi-line CSS value.
L00354: continues a grouped selector or multi-line CSS value.
L00355: continues a grouped selector or multi-line CSS value.
L00356: continues a grouped selector or multi-line CSS value.
L00357: continues a grouped selector or multi-line CSS value.
L00358: continues a grouped selector or multi-line CSS value.
L00359: selects elements and opens their CSS declaration block.
L00361: sets or begins the min-width CSS property.
L00362: completes the current CSS property value.
L00364: closes the current CSS declaration block.
L00367: continues a grouped selector or multi-line CSS value.
L00368: continues a grouped selector or multi-line CSS value.
L00369: continues a grouped selector or multi-line CSS value.
L00370: continues a grouped selector or multi-line CSS value.
L00371: selects elements and opens their CSS declaration block.
L00373: sets or begins the display CSS property.
L00374: completes the current CSS property value.
L00376: sets or begins the max-width CSS property.
L00377: completes the current CSS property value.
L00379: closes the current CSS declaration block.
L00382: selects elements and opens their CSS declaration block.
L00384: sets or begins the width CSS property.
L00385: completes the current CSS property value.
L00387: sets or begins the height CSS property.
L00388: completes the current CSS property value.
L00390: sets or begins the fill CSS property.
L00391: completes the current CSS property value.
L00393: sets or begins the stroke CSS property.
L00394: completes the current CSS property value.
L00396: sets or begins the stroke-width CSS property.
L00397: completes the current CSS property value.
L00399: sets or begins the stroke-linecap CSS property.
L00400: completes the current CSS property value.
L00402: sets or begins the stroke-linejoin CSS property.
L00403: completes the current CSS property value.
L00405: closes the current CSS declaration block.
L00408: continues a grouped selector or multi-line CSS value.
L00409: continues a grouped selector or multi-line CSS value.
L00410: continues a grouped selector or multi-line CSS value.
L00411: selects elements and opens their CSS declaration block.
L00413: sets or begins the font CSS property.
L00414: completes the current CSS property value.
L00416: closes the current CSS declaration block.
L00419: continues a grouped selector or multi-line CSS value.
L00420: selects elements and opens their CSS declaration block.
L00422: sets or begins the -webkit-tap-highlight-color CSS property.
L00423: completes the current CSS property value.
L00425: closes the current CSS declaration block.
L00428: selects elements and opens their CSS declaration block.
L00430: sets or begins the color CSS property.
L00431: completes the current CSS property value.
L00433: closes the current CSS declaration block.
L00436: selects elements and opens their CSS declaration block.
L00438: sets or begins the color CSS property.
L00439: completes the current CSS property value.
L00441: closes the current CSS declaration block.
L00444: continues a grouped selector or multi-line CSS value.
L00445: continues a grouped selector or multi-line CSS value.
L00446: continues a grouped selector or multi-line CSS value.
L00447: continues a grouped selector or multi-line CSS value.
L00448: continues a grouped selector or multi-line CSS value.
L00449: continues a grouped selector or multi-line CSS value.
L00450: continues a grouped selector or multi-line CSS value.
L00451: continues a grouped selector or multi-line CSS value.
L00452: continues a grouped selector or multi-line CSS value.
L00453: selects elements and opens their CSS declaration block.
L00455: sets or begins the margin-top CSS property.
L00456: completes the current CSS property value.
L00458: closes the current CSS declaration block.
L00461: continues a grouped selector or multi-line CSS value.
L00462: continues a grouped selector or multi-line CSS value.
L00463: continues a grouped selector or multi-line CSS value.
L00464: continues a grouped selector or multi-line CSS value.
L00465: continues a grouped selector or multi-line CSS value.
L00466: selects elements and opens their CSS declaration block.
L00468: sets or begins the font-family CSS property.
L00469: completes the current CSS property value.
L00471: sets or begins the color CSS property.
L00472: completes the current CSS property value.
L00474: sets or begins the line-height CSS property.
L00475: completes the current CSS property value.
L00477: sets or begins the letter-spacing CSS property.
L00478: completes the current CSS property value.
L00480: closes the current CSS declaration block.
L00483: selects elements and opens their CSS declaration block.
L00485: sets or begins the font-size CSS property.
L00486: completes the current CSS property value.
L00488: closes the current CSS declaration block.
L00491: selects elements and opens their CSS declaration block.
L00493: sets or begins the font-size CSS property.
L00494: completes the current CSS property value.
L00496: closes the current CSS declaration block.
L00499: selects elements and opens their CSS declaration block.
L00501: sets or begins the font-size CSS property.
L00502: completes the current CSS property value.
L00504: closes the current CSS declaration block.
L00507: selects elements and opens their CSS declaration block.
L00509: sets or begins the color CSS property.
L00510: completes the current CSS property value.
L00512: closes the current CSS declaration block.
L00515: selects elements and opens their CSS declaration block.
L00517: sets or begins the color CSS property.
L00518: completes the current CSS property value.
L00520: sets or begins the background CSS property.
L00521: completes the current CSS property value.
L00523: closes the current CSS declaration block.
L00526: selects elements and opens their CSS declaration block.
L00528: sets or begins the outline CSS property.
L00529: completes the current CSS property value.
L00531: sets or begins the outline-offset CSS property.
L00532: completes the current CSS property value.
L00534: sets or begins the border-radius CSS property.
L00535: completes the current CSS property value.
L00537: closes the current CSS declaration block.
L00540: selects elements and opens their CSS declaration block.
L00542: sets or begins the display CSS property.
L00543: completes the current CSS property value.
L00545: closes the current CSS declaration block.
L00548: selects elements and opens their CSS declaration block.
L00550: sets or begins the position CSS property.
L00551: completes the current CSS property value.
L00553: sets or begins the width CSS property.
L00554: completes the current CSS property value.
L00556: sets or begins the height CSS property.
L00557: completes the current CSS property value.
L00559: sets or begins the padding CSS property.
L00560: completes the current CSS property value.
L00562: sets or begins the margin CSS property.
L00563: completes the current CSS property value.
L00565: sets or begins the overflow CSS property.
L00566: completes the current CSS property value.
L00568: sets or begins the clip CSS property.
L00569: completes the current CSS property value.
L00571: sets or begins the white-space CSS property.
L00572: completes the current CSS property value.
L00574: sets or begins the border CSS property.
L00575: completes the current CSS property value.
L00577: closes the current CSS declaration block.
L00580: selects elements and opens their CSS declaration block.
L00582: sets or begins the position CSS property.
L00583: completes the current CSS property value.
L00585: sets or begins the width CSS property.
L00586: completes the current CSS property value.
L00588: sets or begins the height CSS property.
L00589: completes the current CSS property value.
L00591: sets or begins the overflow CSS property.
L00592: completes the current CSS property value.
L00594: sets or begins the pointer-events CSS property.
L00595: completes the current CSS property value.
L00597: closes the current CSS declaration block.
L00600: selects elements and opens their CSS declaration block.
L00602: sets or begins the position CSS property.
L00603: completes the current CSS property value.
L00605: sets or begins the top CSS property.
L00606: completes the current CSS property value.
L00608: sets or begins the left CSS property.
L00609: completes the current CSS property value.
L00611: sets or begins the z-index CSS property.
L00612: completes the current CSS property value.
L00614: sets or begins the transform CSS property.
L00615: completes the current CSS property value.
L00617: sets or begins the padding CSS property.
L00618: completes the current CSS property value.
L00620: sets or begins the border-radius CSS property.
L00621: completes the current CSS property value.
L00623: sets or begins the color CSS property.
L00624: completes the current CSS property value.
L00626: sets or begins the background CSS property.
L00627: completes the current CSS property value.
L00629: sets or begins the box-shadow CSS property.
L00630: completes the current CSS property value.
L00632: sets or begins the font-weight CSS property.
L00633: completes the current CSS property value.
L00635: sets or begins the text-decoration CSS property.
L00636: completes the current CSS property value.
L00638: sets or begins the transition CSS property.
L00639: completes the current CSS property value.
L00641: closes the current CSS declaration block.
L00644: selects elements and opens their CSS declaration block.
L00646: sets or begins the transform CSS property.
L00647: completes the current CSS property value.
L00649: closes the current CSS declaration block.
L00652: continues CSS documentation for maintainers.
L00653: continues a selector, function, animation step, or property value.
L00654: continues CSS documentation for maintainers.
L00656: selects elements and opens their CSS declaration block.
L00658: sets or begins the position CSS property.
L00659: completes the current CSS property value.
L00661: sets or begins the inset CSS property.
L00662: completes the current CSS property value.
L00664: sets or begins the z-index CSS property.
L00665: completes the current CSS property value.
L00667: sets or begins the overflow CSS property.
L00668: completes the current CSS property value.
L00670: sets or begins the pointer-events CSS property.
L00671: completes the current CSS property value.
L00673: closes the current CSS declaration block.
L00676: selects elements and opens their CSS declaration block.
L00678: sets or begins the position CSS property.
L00679: completes the current CSS property value.
L00681: sets or begins the display CSS property.
L00682: completes the current CSS property value.
L00684: sets or begins the border-radius CSS property.
L00685: completes the current CSS property value.
L00687: sets or begins the filter CSS property.
L00688: completes the current CSS property value.
L00690: sets or begins the opacity CSS property.
L00691: completes the current CSS property value.
L00693: sets or begins the will-change CSS property.
L00694: completes the current CSS property value.
L00696: closes the current CSS declaration block.
L00699: selects elements and opens their CSS declaration block.
L00701: sets or begins the top CSS property.
L00702: completes the current CSS property value.
L00704: sets or begins the left CSS property.
L00705: completes the current CSS property value.
L00707: sets or begins the width CSS property.
L00708: completes the current CSS property value.
L00710: sets or begins the height CSS property.
L00711: completes the current CSS property value.
L00713: sets or begins the background CSS property.
L00714: continues a selector, function, animation step, or property value.
L00715: continues a grouped selector or multi-line CSS value.
L00716: continues a grouped selector or multi-line CSS value.
L00717: continues a selector, function, animation step, or property value.
L00718: completes the current CSS property value.
L00720: sets or begins the animation CSS property.
L00721: continues a selector, function, animation step, or property value.
L00722: continues a selector, function, animation step, or property value.
L00723: continues a selector, function, animation step, or property value.
L00724: continues a selector, function, animation step, or property value.
L00725: completes the current CSS property value.
L00727: closes the current CSS declaration block.
L00730: selects elements and opens their CSS declaration block.
L00732: sets or begins the top CSS property.
L00733: completes the current CSS property value.
L00735: sets or begins the right CSS property.
L00736: completes the current CSS property value.
L00738: sets or begins the width CSS property.
L00739: completes the current CSS property value.
L00741: sets or begins the height CSS property.
L00742: completes the current CSS property value.
L00744: sets or begins the background CSS property.
L00745: continues a selector, function, animation step, or property value.
L00746: continues a grouped selector or multi-line CSS value.
L00747: continues a grouped selector or multi-line CSS value.
L00748: continues a selector, function, animation step, or property value.
L00749: completes the current CSS property value.
L00751: sets or begins the animation CSS property.
L00752: continues a selector, function, animation step, or property value.
L00753: continues a selector, function, animation step, or property value.
L00754: continues a selector, function, animation step, or property value.
L00755: continues a selector, function, animation step, or property value.
L00756: completes the current CSS property value.
L00758: closes the current CSS declaration block.
L00761: selects elements and opens their CSS declaration block.
L00763: sets or begins the bottom CSS property.
L00764: completes the current CSS property value.
L00766: sets or begins the left CSS property.
L00767: completes the current CSS property value.
L00769: sets or begins the width CSS property.
L00770: completes the current CSS property value.
L00772: sets or begins the height CSS property.
L00773: completes the current CSS property value.
L00775: sets or begins the background CSS property.
L00776: continues a selector, function, animation step, or property value.
L00777: continues a grouped selector or multi-line CSS value.
L00778: continues a grouped selector or multi-line CSS value.
L00779: continues a selector, function, animation step, or property value.
L00780: completes the current CSS property value.
L00782: sets or begins the animation CSS property.
L00783: continues a selector, function, animation step, or property value.
L00784: continues a selector, function, animation step, or property value.
L00785: continues a selector, function, animation step, or property value.
L00786: continues a selector, function, animation step, or property value.
L00787: completes the current CSS property value.
L00789: closes the current CSS declaration block.
L00792: selects elements and opens their CSS declaration block.
L00794: sets or begins the position CSS property.
L00795: completes the current CSS property value.
L00797: sets or begins the inset CSS property.
L00798: completes the current CSS property value.
L00800: sets or begins the opacity CSS property.
L00801: completes the current CSS property value.
L00803: sets or begins the background-image CSS property.
L00804: continues a selector, function, animation step, or property value.
L00805: continues a grouped selector or multi-line CSS value.
L00806: continues a selector, function, animation step, or property value.
L00807: continues a grouped selector or multi-line CSS value.
L00808: continues a selector, function, animation step, or property value.
L00809: continues a grouped selector or multi-line CSS value.
L00810: continues a grouped selector or multi-line CSS value.
L00811: continues a selector, function, animation step, or property value.
L00812: completes the current CSS property value.
L00814: sets or begins the background-size CSS property.
L00815: completes the current CSS property value.
L00817: sets or begins the mask-image CSS property.
L00818: continues a selector, function, animation step, or property value.
L00819: continues a grouped selector or multi-line CSS value.
L00820: continues a grouped selector or multi-line CSS value.
L00821: continues a grouped selector or multi-line CSS value.
L00822: continues a grouped selector or multi-line CSS value.
L00823: continues a selector, function, animation step, or property value.
L00824: completes the current CSS property value.
L00826: closes the current CSS declaration block.
L00829: defines an animation timeline.
L00831: selects elements and opens their CSS declaration block.
L00833: sets or begins the transform CSS property.
L00834: continues a selector, function, animation step, or property value.
L00835: completes the current CSS property value.
L00837: closes the current CSS declaration block.
L00839: selects elements and opens their CSS declaration block.
L00841: sets or begins the transform CSS property.
L00842: continues a selector, function, animation step, or property value.
L00843: completes the current CSS property value.
L00845: closes the current CSS declaration block.
L00847: selects elements and opens their CSS declaration block.
L00849: sets or begins the transform CSS property.
L00850: continues a selector, function, animation step, or property value.
L00851: completes the current CSS property value.
L00853: closes the current CSS declaration block.
L00855: closes the current CSS declaration block.
L00858: defines an animation timeline.
L00860: selects elements and opens their CSS declaration block.
L00862: sets or begins the transform CSS property.
L00863: continues a selector, function, animation step, or property value.
L00864: completes the current CSS property value.
L00866: closes the current CSS declaration block.
L00868: selects elements and opens their CSS declaration block.
L00870: sets or begins the transform CSS property.
L00871: continues a selector, function, animation step, or property value.
L00872: completes the current CSS property value.
L00874: closes the current CSS declaration block.
L00876: selects elements and opens their CSS declaration block.
L00878: sets or begins the transform CSS property.
L00879: continues a selector, function, animation step, or property value.
L00880: completes the current CSS property value.
L00882: closes the current CSS declaration block.
L00884: closes the current CSS declaration block.
L00887: defines an animation timeline.
L00889: selects elements and opens their CSS declaration block.
L00891: sets or begins the transform CSS property.
L00892: continues a selector, function, animation step, or property value.
L00893: completes the current CSS property value.
L00895: closes the current CSS declaration block.
L00897: selects elements and opens their CSS declaration block.
L00899: sets or begins the transform CSS property.
L00900: continues a selector, function, animation step, or property value.
L00901: completes the current CSS property value.
L00903: closes the current CSS declaration block.
L00905: selects elements and opens their CSS declaration block.
L00907: sets or begins the transform CSS property.
L00908: continues a selector, function, animation step, or property value.
L00909: completes the current CSS property value.
L00911: closes the current CSS declaration block.
L00913: closes the current CSS declaration block.
L00916: continues CSS documentation for maintainers.
L00917: continues a selector, function, animation step, or property value.
L00918: continues CSS documentation for maintainers.
L00920: selects elements and opens their CSS declaration block.
L00922: sets or begins the width CSS property.
L00923: continues a selector, function, animation step, or property value.
L00924: continues a grouped selector or multi-line CSS value.
L00925: continues a selector, function, animation step, or property value.
L00926: completes the current CSS property value.
L00928: sets or begins the margin-inline CSS property.
L00929: completes the current CSS property value.
L00931: closes the current CSS declaration block.
L00934: selects elements and opens their CSS declaration block.
L00936: sets or begins the width CSS property.
L00937: continues a selector, function, animation step, or property value.
L00938: continues a grouped selector or multi-line CSS value.
L00939: continues a selector, function, animation step, or property value.
L00940: completes the current CSS property value.
L00942: closes the current CSS declaration block.
L00945: selects elements and opens their CSS declaration block.
L00947: sets or begins the position CSS property.
L00948: completes the current CSS property value.
L00950: sets or begins the padding-block CSS property.
L00951: completes the current CSS property value.
L00953: sets or begins the scroll-margin-top CSS property.
L00954: completes the current CSS property value.
L00956: closes the current CSS declaration block.
L00959: selects elements and opens their CSS declaration block.
L00961: sets or begins the position CSS property.
L00962: completes the current CSS property value.
L00964: sets or begins the height CSS property.
L00965: completes the current CSS property value.
L00967: sets or begins the scroll-margin-top CSS property.
L00968: completes the current CSS property value.
L00970: closes the current CSS declaration block.
L00973: selects elements and opens their CSS declaration block.
L00975: sets or begins the margin-bottom CSS property.
L00976: completes the current CSS property value.
L00978: closes the current CSS declaration block.
L00981: selects elements and opens their CSS declaration block.
L00983: sets or begins the max-width CSS property.
L00984: completes the current CSS property value.
L00986: sets or begins the margin-inline CSS property.
L00987: completes the current CSS property value.
L00989: sets or begins the text-align CSS property.
L00990: completes the current CSS property value.
L00992: closes the current CSS declaration block.
L00995: selects elements and opens their CSS declaration block.
L00997: sets or begins the display CSS property.
L00998: completes the current CSS property value.
L01000: sets or begins the grid-template-columns CSS property.
L01001: continues a selector, function, animation step, or property value.
L01002: completes the current CSS property value.
L01004: sets or begins the align-items CSS property.
L01005: completes the current CSS property value.
L01007: sets or begins the gap CSS property.
L01008: completes the current CSS property value.
L01010: closes the current CSS declaration block.
L01013: selects elements and opens their CSS declaration block.
L01015: sets or begins the margin-bottom CSS property.
L01016: completes the current CSS property value.
L01018: sets or begins the font-size CSS property.
L01019: completes the current CSS property value.
L01021: closes the current CSS declaration block.
L01024: selects elements and opens their CSS declaration block.
L01026: sets or begins the max-width CSS property.
L01027: completes the current CSS property value.
L01029: sets or begins the margin-bottom CSS property.
L01030: completes the current CSS property value.
L01032: closes the current CSS declaration block.
L01035: selects elements and opens their CSS declaration block.
L01037: sets or begins the max-width CSS property.
L01038: completes the current CSS property value.
L01040: sets or begins the margin-inline CSS property.
L01041: completes the current CSS property value.
L01043: closes the current CSS declaration block.
L01046: selects elements and opens their CSS declaration block.
L01048: sets or begins the max-width CSS property.
L01049: completes the current CSS property value.
L01051: sets or begins the margin CSS property.
L01052: completes the current CSS property value.
L01054: sets or begins the font-size CSS property.
L01055: completes the current CSS property value.
L01057: closes the current CSS declaration block.
L01060: selects elements and opens their CSS declaration block.
L01062: sets or begins the display CSS property.
L01063: completes the current CSS property value.
L01065: sets or begins the align-items CSS property.
L01066: completes the current CSS property value.
L01068: sets or begins the gap CSS property.
L01069: completes the current CSS property value.
L01071: sets or begins the margin-bottom CSS property.
L01072: completes the current CSS property value.
L01074: sets or begins the color CSS property.
L01075: completes the current CSS property value.
L01077: sets or begins the font-family CSS property.
L01078: completes the current CSS property value.
L01080: sets or begins the font-size CSS property.
L01081: completes the current CSS property value.
L01083: sets or begins the font-weight CSS property.
L01084: completes the current CSS property value.
L01086: sets or begins the letter-spacing CSS property.
L01087: completes the current CSS property value.
L01089: sets or begins the text-transform CSS property.
L01090: completes the current CSS property value.
L01092: closes the current CSS declaration block.
L01095: selects elements and opens their CSS declaration block.
L01097: sets or begins the content CSS property.
L01098: completes the current CSS property value.
L01100: sets or begins the width CSS property.
L01101: completes the current CSS property value.
L01103: sets or begins the height CSS property.
L01104: completes the current CSS property value.
L01106: sets or begins the border-radius CSS property.
L01107: completes the current CSS property value.
L01109: sets or begins the background CSS property.
L01110: continues a selector, function, animation step, or property value.
L01111: continues a grouped selector or multi-line CSS value.
L01112: continues a grouped selector or multi-line CSS value.
L01113: continues a selector, function, animation step, or property value.
L01114: completes the current CSS property value.
L01116: sets or begins the box-shadow CSS property.
L01117: completes the current CSS property value.
L01119: closes the current CSS declaration block.
L01122: continues a grouped selector or multi-line CSS value.
L01123: selects elements and opens their CSS declaration block.
L01125: sets or begins the color CSS property.
L01126: completes the current CSS property value.
L01128: sets or begins the font-family CSS property.
L01129: completes the current CSS property value.
L01131: sets or begins the font-size CSS property.
L01132: completes the current CSS property value.
L01134: sets or begins the font-weight CSS property.
L01135: completes the current CSS property value.
L01137: sets or begins the letter-spacing CSS property.
L01138: completes the current CSS property value.
L01140: sets or begins the text-transform CSS property.
L01141: completes the current CSS property value.
L01143: closes the current CSS declaration block.
L01146: selects elements and opens their CSS declaration block.
L01148: sets or begins the opacity CSS property.
L01149: completes the current CSS property value.
L01151: sets or begins the transform CSS property.
L01152: completes the current CSS property value.
L01154: sets or begins the transition CSS property.
L01155: continues a grouped selector or multi-line CSS value.
L01156: completes the current CSS property value.
L01158: closes the current CSS declaration block.
L01161: selects elements and opens their CSS declaration block.
L01163: sets or begins the transition-delay CSS property.
L01164: completes the current CSS property value.
L01166: closes the current CSS declaration block.
L01169: selects elements and opens their CSS declaration block.
L01171: sets or begins the opacity CSS property.
L01172: completes the current CSS property value.
L01174: sets or begins the transform CSS property.
L01175: completes the current CSS property value.
L01177: closes the current CSS declaration block.
L01180: continues CSS documentation for maintainers.
L01181: continues a selector, function, animation step, or property value.
L01182: continues CSS documentation for maintainers.
L01184: selects elements and opens their CSS declaration block.
L01186: sets or begins the position CSS property.
L01187: completes the current CSS property value.
L01189: sets or begins the top CSS property.
L01190: completes the current CSS property value.
L01192: sets or begins the z-index CSS property.
L01193: completes the current CSS property value.
L01195: sets or begins the isolation CSS property.
L01196: completes the current CSS property value.
L01198: closes the current CSS declaration block.
L01201: selects elements and opens their CSS declaration block.
L01203: sets or begins the min-height CSS property.
L01204: completes the current CSS property value.
L01206: sets or begins the color CSS property.
L01207: completes the current CSS property value.
L01209: sets or begins the background CSS property.
L01210: continues a selector, function, animation step, or property value.
L01211: continues a grouped selector or multi-line CSS value.
L01212: continues a grouped selector or multi-line CSS value.
L01213: continues a grouped selector or multi-line CSS value.
L01214: continues a selector, function, animation step, or property value.
L01215: completes the current CSS property value.
L01217: sets or begins the border-bottom CSS property.
L01218: completes the current CSS property value.
L01220: sets or begins the box-shadow CSS property.
L01221: completes the current CSS property value.
L01223: closes the current CSS declaration block.
L01226: selects elements and opens their CSS declaration block.
L01228: sets or begins the width CSS property.
L01229: continues a selector, function, animation step, or property value.
L01230: continues a grouped selector or multi-line CSS value.
L01231: continues a selector, function, animation step, or property value.
L01232: completes the current CSS property value.
L01234: sets or begins the min-height CSS property.
L01235: completes the current CSS property value.
L01237: sets or begins the margin-inline CSS property.
L01238: completes the current CSS property value.
L01240: sets or begins the display CSS property.
L01241: completes the current CSS property value.
L01243: sets or begins the align-items CSS property.
L01244: completes the current CSS property value.
L01246: sets or begins the justify-content CSS property.
L01247: completes the current CSS property value.
L01249: sets or begins the gap CSS property.
L01250: completes the current CSS property value.
L01252: sets or begins the font-size CSS property.
L01253: completes the current CSS property value.
L01255: closes the current CSS declaration block.
L01258: continues a grouped selector or multi-line CSS value.
L01259: continues a grouped selector or multi-line CSS value.
L01260: selects elements and opens their CSS declaration block.
L01262: sets or begins the display CSS property.
L01263: completes the current CSS property value.
L01265: sets or begins the align-items CSS property.
L01266: completes the current CSS property value.
L01268: sets or begins the gap CSS property.
L01269: completes the current CSS property value.
L01271: closes the current CSS declaration block.
L01274: selects elements and opens their CSS declaration block.
L01276: sets or begins the color CSS property.
L01277: completes the current CSS property value.
L01279: sets or begins the font-family CSS property.
L01280: completes the current CSS property value.
L01282: sets or begins the font-size CSS property.
L01283: completes the current CSS property value.
L01285: sets or begins the letter-spacing CSS property.
L01286: completes the current CSS property value.
L01288: closes the current CSS declaration block.
L01291: selects elements and opens their CSS declaration block.
L01293: sets or begins the color CSS property.
L01294: completes the current CSS property value.
L01296: sets or begins the font-weight CSS property.
L01297: completes the current CSS property value.
L01299: sets or begins the text-decoration CSS property.
L01300: completes the current CSS property value.
L01302: closes the current CSS declaration block.
L01305: selects elements and opens their CSS declaration block.
L01307: sets or begins the text-decoration CSS property.
L01308: completes the current CSS property value.
L01310: sets or begins the text-underline-offset CSS property.
L01311: completes the current CSS property value.
L01313: closes the current CSS declaration block.
L01316: selects elements and opens their CSS declaration block.
L01318: sets or begins the width CSS property.
L01319: completes the current CSS property value.
L01321: sets or begins the height CSS property.
L01322: completes the current CSS property value.
L01324: closes the current CSS declaration block.
L01327: selects elements and opens their CSS declaration block.
L01329: sets or begins the padding CSS property.
L01330: completes the current CSS property value.
L01332: sets or begins the border CSS property.
L01333: completes the current CSS property value.
L01335: sets or begins the border-radius CSS property.
L01336: completes the current CSS property value.
L01338: sets or begins the background CSS property.
L01339: completes the current CSS property value.
L01341: closes the current CSS declaration block.
L01344: selects elements and opens their CSS declaration block.
L01346: sets or begins the padding-left CSS property.
L01347: completes the current CSS property value.
L01349: sets or begins the border-left CSS property.
L01350: completes the current CSS property value.
L01352: closes the current CSS declaration block.
L01355: selects elements and opens their CSS declaration block.
L01357: sets or begins the position CSS property.
L01358: completes the current CSS property value.
L01360: sets or begins the display CSS property.
L01361: completes the current CSS property value.
L01363: sets or begins the flex CSS property.
L01364: completes the current CSS property value.
L01366: sets or begins the width CSS property.
L01367: completes the current CSS property value.
L01369: sets or begins the height CSS property.
L01370: completes the current CSS property value.
L01372: sets or begins the border-radius CSS property.
L01373: completes the current CSS property value.
L01375: sets or begins the background CSS property.
L01376: completes the current CSS property value.
L01378: sets or begins the box-shadow CSS property.
L01379: completes the current CSS property value.
L01381: sets or begins the animation CSS property.
L01382: continues a selector, function, animation step, or property value.
L01383: continues a selector, function, animation step, or property value.
L01384: continues a selector, function, animation step, or property value.
L01385: completes the current CSS property value.
L01387: closes the current CSS declaration block.
L01390: defines an animation timeline.
L01392: selects elements and opens their CSS declaration block.
L01394: sets or begins the box-shadow CSS property.
L01395: continues a selector, function, animation step, or property value.
L01396: completes the current CSS property value.
L01398: closes the current CSS declaration block.
L01400: selects elements and opens their CSS declaration block.
L01402: sets or begins the box-shadow CSS property.
L01403: continues a selector, function, animation step, or property value.
L01404: completes the current CSS property value.
L01406: closes the current CSS declaration block.
L01408: selects elements and opens their CSS declaration block.
L01410: sets or begins the box-shadow CSS property.
L01411: continues a selector, function, animation step, or property value.
L01412: completes the current CSS property value.
L01414: closes the current CSS declaration block.
L01416: closes the current CSS declaration block.
L01419: continues CSS documentation for maintainers.
L01420: continues a selector, function, animation step, or property value.
L01421: continues CSS documentation for maintainers.
L01423: selects elements and opens their CSS declaration block.
L01425: sets or begins the position CSS property.
L01426: completes the current CSS property value.
L01428: sets or begins the min-height CSS property.
L01429: completes the current CSS property value.
L01431: sets or begins the color CSS property.
L01432: completes the current CSS property value.
L01434: sets or begins the background CSS property.
L01435: continues a selector, function, animation step, or property value.
L01436: continues a grouped selector or multi-line CSS value.
L01437: continues a grouped selector or multi-line CSS value.
L01438: continues a grouped selector or multi-line CSS value.
L01439: continues a selector, function, animation step, or property value.
L01440: completes the current CSS property value.
L01442: sets or begins the border-bottom CSS property.
L01443: completes the current CSS property value.
L01445: sets or begins the box-shadow CSS property.
L01446: completes the current CSS property value.
L01448: sets or begins the backdrop-filter CSS property.
L01449: completes the current CSS property value.
L01451: sets or begins the transition CSS property.
L01452: continues a grouped selector or multi-line CSS value.
L01453: completes the current CSS property value.
L01455: closes the current CSS declaration block.
L01458: selects elements and opens their CSS declaration block.
L01460: sets or begins the background CSS property.
L01461: continues a selector, function, animation step, or property value.
L01462: continues a grouped selector or multi-line CSS value.
L01463: continues a grouped selector or multi-line CSS value.
L01464: continues a grouped selector or multi-line CSS value.
L01465: continues a selector, function, animation step, or property value.
L01466: completes the current CSS property value.
L01468: sets or begins the box-shadow CSS property.
L01469: completes the current CSS property value.
L01471: closes the current CSS declaration block.
L01474: selects elements and opens their CSS declaration block.
L01476: sets or begins the width CSS property.
L01477: continues a selector, function, animation step, or property value.
L01478: continues a grouped selector or multi-line CSS value.
L01479: continues a selector, function, animation step, or property value.
L01480: completes the current CSS property value.
L01482: sets or begins the min-height CSS property.
L01483: completes the current CSS property value.
L01485: sets or begins the margin-inline CSS property.
L01486: completes the current CSS property value.
L01488: sets or begins the display CSS property.
L01489: completes the current CSS property value.
L01491: sets or begins the align-items CSS property.
L01492: completes the current CSS property value.
L01494: sets or begins the justify-content CSS property.
L01495: completes the current CSS property value.
L01497: sets or begins the gap CSS property.
L01498: completes the current CSS property value.
L01500: closes the current CSS declaration block.
L01503: continues a grouped selector or multi-line CSS value.
L01504: selects elements and opens their CSS declaration block.
L01506: sets or begins the display CSS property.
L01507: completes the current CSS property value.
L01509: sets or begins the align-items CSS property.
L01510: completes the current CSS property value.
L01512: sets or begins the flex CSS property.
L01513: completes the current CSS property value.
L01515: sets or begins the gap CSS property.
L01516: completes the current CSS property value.
L01518: sets or begins the color CSS property.
L01519: completes the current CSS property value.
L01521: sets or begins the text-decoration CSS property.
L01522: completes the current CSS property value.
L01524: closes the current CSS declaration block.
L01527: selects elements and opens their CSS declaration block.
L01529: sets or begins the position CSS property.
L01530: completes the current CSS property value.
L01532: sets or begins the display CSS property.
L01533: completes the current CSS property value.
L01535: sets or begins the place-items CSS property.
L01536: completes the current CSS property value.
L01538: sets or begins the width CSS property.
L01539: completes the current CSS property value.
L01541: sets or begins the height CSS property.
L01542: completes the current CSS property value.
L01544: sets or begins the flex CSS property.
L01545: completes the current CSS property value.
L01547: sets or begins the padding CSS property.
L01548: completes the current CSS property value.
L01550: sets or begins the border CSS property.
L01551: completes the current CSS property value.
L01553: sets or begins the border-radius CSS property.
L01554: completes the current CSS property value.
L01556: sets or begins the background CSS property.
L01557: continues a selector, function, animation step, or property value.
L01558: continues a grouped selector or multi-line CSS value.
L01559: continues a grouped selector or multi-line CSS value.
L01560: continues a selector, function, animation step, or property value.
L01561: completes the current CSS property value.
L01563: sets or begins the box-shadow CSS property.
L01564: continues a grouped selector or multi-line CSS value.
L01565: completes the current CSS property value.
L01567: sets or begins the overflow CSS property.
L01568: completes the current CSS property value.
L01570: sets or begins the transition CSS property.
L01571: continues a grouped selector or multi-line CSS value.
L01572: completes the current CSS property value.
L01574: closes the current CSS declaration block.
L01577: selects elements and opens their CSS declaration block.
L01579: sets or begins the content CSS property.
L01580: completes the current CSS property value.
L01582: sets or begins the position CSS property.
L01583: completes the current CSS property value.
L01585: sets or begins the inset CSS property.
L01586: completes the current CSS property value.
L01588: sets or begins the border-radius CSS property.
L01589: completes the current CSS property value.
L01591: sets or begins the background CSS property.
L01592: continues a selector, function, animation step, or property value.
L01593: continues a grouped selector or multi-line CSS value.
L01594: continues a grouped selector or multi-line CSS value.
L01595: continues a grouped selector or multi-line CSS value.
L01596: continues a selector, function, animation step, or property value.
L01597: completes the current CSS property value.
L01599: sets or begins the transform CSS property.
L01600: completes the current CSS property value.
L01602: sets or begins the transition CSS property.
L01603: completes the current CSS property value.
L01605: sets or begins the pointer-events CSS property.
L01606: completes the current CSS property value.
L01608: closes the current CSS declaration block.
L01611: selects elements and opens their CSS declaration block.
L01613: sets or begins the transform CSS property.
L01614: continues a selector, function, animation step, or property value.
L01615: completes the current CSS property value.
L01617: sets or begins the box-shadow CSS property.
L01618: continues a grouped selector or multi-line CSS value.
L01619: continues a grouped selector or multi-line CSS value.
L01620: completes the current CSS property value.
L01622: closes the current CSS declaration block.
L01625: selects elements and opens their CSS declaration block.
L01627: sets or begins the transform CSS property.
L01628: completes the current CSS property value.
L01630: closes the current CSS declaration block.
L01633: continues a grouped selector or multi-line CSS value.
L01634: selects elements and opens their CSS declaration block.
L01636: sets or begins the width CSS property.
L01637: completes the current CSS property value.
L01639: sets or begins the height CSS property.
L01640: completes the current CSS property value.
L01642: sets or begins the object-fit CSS property.
L01643: completes the current CSS property value.
L01645: closes the current CSS declaration block.
L01648: continues a grouped selector or multi-line CSS value.
L01649: selects elements and opens their CSS declaration block.
L01651: sets or begins the display CSS property.
L01652: completes the current CSS property value.
L01654: sets or begins the flex-direction CSS property.
L01655: completes the current CSS property value.
L01657: sets or begins the line-height CSS property.
L01658: completes the current CSS property value.
L01660: closes the current CSS declaration block.
L01663: continues a grouped selector or multi-line CSS value.
L01664: selects elements and opens their CSS declaration block.
L01666: sets or begins the color CSS property.
L01667: completes the current CSS property value.
L01669: sets or begins the font-family CSS property.
L01670: completes the current CSS property value.
L01672: sets or begins the font-size CSS property.
L01673: completes the current CSS property value.
L01675: sets or begins the font-weight CSS property.
L01676: completes the current CSS property value.
L01678: sets or begins the letter-spacing CSS property.
L01679: completes the current CSS property value.
L01681: closes the current CSS declaration block.
L01684: continues a grouped selector or multi-line CSS value.
L01685: selects elements and opens their CSS declaration block.
L01687: sets or begins the margin-top CSS property.
L01688: completes the current CSS property value.
L01690: sets or begins the color CSS property.
L01691: completes the current CSS property value.
L01693: sets or begins the font-size CSS property.
L01694: completes the current CSS property value.
L01696: sets or begins the font-weight CSS property.
L01697: completes the current CSS property value.
L01699: sets or begins the letter-spacing CSS property.
L01700: completes the current CSS property value.
L01702: closes the current CSS declaration block.
L01705: selects elements and opens their CSS declaration block.
L01707: sets or begins the flex CSS property.
L01708: completes the current CSS property value.
L01710: sets or begins the display CSS property.
L01711: completes the current CSS property value.
L01713: sets or begins the align-items CSS property.
L01714: completes the current CSS property value.
L01716: sets or begins the justify-content CSS property.
L01717: completes the current CSS property value.
L01719: sets or begins the gap CSS property.
L01720: completes the current CSS property value.
L01722: sets or begins the min-width CSS property.
L01723: completes the current CSS property value.
L01725: closes the current CSS declaration block.
L01728: continues a grouped selector or multi-line CSS value.
L01729: selects elements and opens their CSS declaration block.
L01731: sets or begins the position CSS property.
L01732: completes the current CSS property value.
L01734: sets or begins the display CSS property.
L01735: completes the current CSS property value.
L01737: sets or begins the align-items CSS property.
L01738: completes the current CSS property value.
L01740: sets or begins the justify-content CSS property.
L01741: completes the current CSS property value.
L01743: sets or begins the min-height CSS property.
L01744: completes the current CSS property value.
L01746: sets or begins the padding CSS property.
L01747: completes the current CSS property value.
L01749: sets or begins the border CSS property.
L01750: completes the current CSS property value.
L01752: sets or begins the color CSS property.
L01753: completes the current CSS property value.
L01755: sets or begins the background CSS property.
L01756: completes the current CSS property value.
L01758: sets or begins the font-family CSS property.
L01759: completes the current CSS property value.
L01761: sets or begins the font-size CSS property.
L01762: completes the current CSS property value.
L01764: sets or begins the font-weight CSS property.
L01765: completes the current CSS property value.
L01767: sets or begins the letter-spacing CSS property.
L01768: completes the current CSS property value.
L01770: sets or begins the text-decoration CSS property.
L01771: completes the current CSS property value.
L01773: sets or begins the white-space CSS property.
L01774: completes the current CSS property value.
L01776: sets or begins the cursor CSS property.
L01777: completes the current CSS property value.
L01779: sets or begins the transition CSS property.
L01780: continues a grouped selector or multi-line CSS value.
L01781: completes the current CSS property value.
L01783: closes the current CSS declaration block.
L01786: continues a grouped selector or multi-line CSS value.
L01787: selects elements and opens their CSS declaration block.
L01789: sets or begins the content CSS property.
L01790: completes the current CSS property value.
L01792: sets or begins the position CSS property.
L01793: completes the current CSS property value.
L01795: sets or begins the left CSS property.
L01796: completes the current CSS property value.
L01798: sets or begins the bottom CSS property.
L01799: completes the current CSS property value.
L01801: sets or begins the width CSS property.
L01802: completes the current CSS property value.
L01804: sets or begins the height CSS property.
L01805: completes the current CSS property value.
L01807: sets or begins the border-radius CSS property.
L01808: completes the current CSS property value.
L01810: sets or begins the background CSS property.
L01811: continues a selector, function, animation step, or property value.
L01812: continues a grouped selector or multi-line CSS value.
L01813: continues a grouped selector or multi-line CSS value.
L01814: continues a selector, function, animation step, or property value.
L01815: completes the current CSS property value.
L01817: sets or begins the box-shadow CSS property.
L01818: completes the current CSS property value.
L01820: sets or begins the transform CSS property.
L01821: completes the current CSS property value.
L01823: sets or begins the transition CSS property.
L01824: completes the current CSS property value.
L01826: closes the current CSS declaration block.
L01829: continues a grouped selector or multi-line CSS value.
L01830: continues a grouped selector or multi-line CSS value.
L01831: continues a grouped selector or multi-line CSS value.
L01832: continues a grouped selector or multi-line CSS value.
L01833: selects elements and opens their CSS declaration block.
L01835: sets or begins the color CSS property.
L01836: completes the current CSS property value.
L01838: closes the current CSS declaration block.
L01841: continues a grouped selector or multi-line CSS value.
L01842: continues a grouped selector or multi-line CSS value.
L01843: continues a grouped selector or multi-line CSS value.
L01844: selects elements and opens their CSS declaration block.
L01846: sets or begins the width CSS property.
L01847: completes the current CSS property value.
L01849: closes the current CSS declaration block.
L01852: selects elements and opens their CSS declaration block.
L01854: sets or begins the color CSS property.
L01855: completes the current CSS property value.
L01857: closes the current CSS declaration block.
L01860: selects elements and opens their CSS declaration block.
L01862: sets or begins the display CSS property.
L01863: completes the current CSS property value.
L01865: sets or begins the align-items CSS property.
L01866: completes the current CSS property value.
L01868: sets or begins the justify-content CSS property.
L01869: completes the current CSS property value.
L01871: sets or begins the min-height CSS property.
L01872: completes the current CSS property value.
L01874: sets or begins the padding CSS property.
L01875: completes the current CSS property value.
L01877: sets or begins the border CSS property.
L01878: completes the current CSS property value.
L01880: sets or begins the border-radius CSS property.
L01881: completes the current CSS property value.
L01883: sets or begins the color CSS property.
L01884: completes the current CSS property value.
L01886: sets or begins the background CSS property.
L01887: continues a selector, function, animation step, or property value.
L01888: continues a grouped selector or multi-line CSS value.
L01889: continues a grouped selector or multi-line CSS value.
L01890: continues a selector, function, animation step, or property value.
L01891: completes the current CSS property value.
L01893: sets or begins the box-shadow CSS property.
L01894: completes the current CSS property value.
L01896: sets or begins the font-family CSS property.
L01897: completes the current CSS property value.
L01899: sets or begins the font-size CSS property.
L01900: completes the current CSS property value.
L01902: sets or begins the font-weight CSS property.
L01903: completes the current CSS property value.
L01905: sets or begins the text-decoration CSS property.
L01906: completes the current CSS property value.
L01908: sets or begins the white-space CSS property.
L01909: completes the current CSS property value.
L01911: sets or begins the transition CSS property.
L01912: continues a grouped selector or multi-line CSS value.
L01913: continues a grouped selector or multi-line CSS value.
L01914: completes the current CSS property value.
L01916: closes the current CSS declaration block.
L01919: selects elements and opens their CSS declaration block.
L01921: sets or begins the transform CSS property.
L01922: completes the current CSS property value.
L01924: sets or begins the filter CSS property.
L01925: completes the current CSS property value.
L01927: sets or begins the box-shadow CSS property.
L01928: completes the current CSS property value.
L01930: closes the current CSS declaration block.
L01933: selects elements and opens their CSS declaration block.
L01935: sets or begins the position CSS property.
L01936: completes the current CSS property value.
L01938: closes the current CSS declaration block.
L01941: selects elements and opens their CSS declaration block.
L01943: sets or begins the gap CSS property.
L01944: completes the current CSS property value.
L01946: closes the current CSS declaration block.
L01949: selects elements and opens their CSS declaration block.
L01951: sets or begins the width CSS property.
L01952: completes the current CSS property value.
L01954: sets or begins the height CSS property.
L01955: completes the current CSS property value.
L01957: sets or begins the transition CSS property.
L01958: completes the current CSS property value.
L01960: closes the current CSS declaration block.
L01963: selects elements and opens their CSS declaration block.
L01965: sets or begins the transform CSS property.
L01966: completes the current CSS property value.
L01968: closes the current CSS declaration block.
L01971: selects elements and opens their CSS declaration block.
L01973: sets or begins the position CSS property.
L01974: completes the current CSS property value.
L01976: sets or begins the top CSS property.
L01977: completes the current CSS property value.
L01979: sets or begins the right CSS property.
L01980: completes the current CSS property value.
L01982: sets or begins the width CSS property.
L01983: completes the current CSS property value.
L01985: sets or begins the padding CSS property.
L01986: completes the current CSS property value.
L01988: sets or begins the border CSS property.
L01989: completes the current CSS property value.
L01991: sets or begins the border-radius CSS property.
L01992: completes the current CSS property value.
L01994: sets or begins the background CSS property.
L01995: completes the current CSS property value.
L01997: sets or begins the box-shadow CSS property.
L01998: completes the current CSS property value.
L02000: sets or begins the opacity CSS property.
L02001: completes the current CSS property value.
L02003: sets or begins the visibility CSS property.
L02004: completes the current CSS property value.
L02006: sets or begins the transform CSS property.
L02007: continues a selector, function, animation step, or property value.
L02008: completes the current CSS property value.
L02010: sets or begins the transform-origin CSS property.
L02011: completes the current CSS property value.
L02013: sets or begins the transition CSS property.
L02014: continues a grouped selector or multi-line CSS value.
L02015: continues a grouped selector or multi-line CSS value.
L02016: completes the current CSS property value.
L02018: closes the current CSS declaration block.
L02021: selects elements and opens their CSS declaration block.
L02023: sets or begins the opacity CSS property.
L02024: completes the current CSS property value.
L02026: sets or begins the visibility CSS property.
L02027: completes the current CSS property value.
L02029: sets or begins the transform CSS property.
L02030: continues a selector, function, animation step, or property value.
L02031: completes the current CSS property value.
L02033: closes the current CSS declaration block.
L02036: selects elements and opens their CSS declaration block.
L02038: sets or begins the display CSS property.
L02039: completes the current CSS property value.
L02041: sets or begins the padding CSS property.
L02042: completes the current CSS property value.
L02044: sets or begins the border-radius CSS property.
L02045: completes the current CSS property value.
L02047: sets or begins the color CSS property.
L02048: completes the current CSS property value.
L02050: sets or begins the font-family CSS property.
L02051: completes the current CSS property value.
L02053: sets or begins the font-size CSS property.
L02054: completes the current CSS property value.
L02056: sets or begins the font-weight CSS property.
L02057: completes the current CSS property value.
L02059: sets or begins the text-decoration CSS property.
L02060: completes the current CSS property value.
L02062: sets or begins the transition CSS property.
L02063: continues a grouped selector or multi-line CSS value.
L02064: continues a grouped selector or multi-line CSS value.
L02065: completes the current CSS property value.
L02067: closes the current CSS declaration block.
L02070: continues a grouped selector or multi-line CSS value.
L02071: selects elements and opens their CSS declaration block.
L02073: sets or begins the color CSS property.
L02074: completes the current CSS property value.
L02076: sets or begins the background CSS property.
L02077: completes the current CSS property value.
L02079: sets or begins the transform CSS property.
L02080: completes the current CSS property value.
L02082: closes the current CSS declaration block.
L02085: selects elements and opens their CSS declaration block.
L02087: sets or begins the display CSS property.
L02088: completes the current CSS property value.
L02090: sets or begins the width CSS property.
L02091: completes the current CSS property value.
L02093: sets or begins the height CSS property.
L02094: completes the current CSS property value.
L02096: sets or begins the border CSS property.
L02097: completes the current CSS property value.
L02099: sets or begins the border-radius CSS property.
L02100: completes the current CSS property value.
L02102: sets or begins the background CSS property.
L02103: completes the current CSS property value.
L02105: sets or begins the cursor CSS property.
L02106: completes the current CSS property value.
L02108: closes the current CSS declaration block.
L02111: selects elements and opens their CSS declaration block.
L02113: sets or begins the display CSS property.
L02114: completes the current CSS property value.
L02116: sets or begins the width CSS property.
L02117: completes the current CSS property value.
L02119: sets or begins the height CSS property.
L02120: completes the current CSS property value.
L02122: sets or begins the margin CSS property.
L02123: completes the current CSS property value.
L02125: sets or begins the border-radius CSS property.
L02126: completes the current CSS property value.
L02128: sets or begins the background CSS property.
L02129: completes the current CSS property value.
L02131: sets or begins the transition CSS property.
L02132: continues a grouped selector or multi-line CSS value.
L02133: completes the current CSS property value.
L02135: closes the current CSS declaration block.
L02138: selects elements and opens their CSS declaration block.
L02140: sets or begins the transform CSS property.
L02141: continues a selector, function, animation step, or property value.
L02142: completes the current CSS property value.
L02144: closes the current CSS declaration block.
L02147: selects elements and opens their CSS declaration block.
L02149: sets or begins the opacity CSS property.
L02150: completes the current CSS property value.
L02152: closes the current CSS declaration block.
L02155: selects elements and opens their CSS declaration block.
L02157: sets or begins the transform CSS property.
L02158: continues a selector, function, animation step, or property value.
L02159: completes the current CSS property value.
L02161: closes the current CSS declaration block.
L02164: continues CSS documentation for maintainers.
L02165: continues a selector, function, animation step, or property value.
L02166: continues CSS documentation for maintainers.
L02168: continues a grouped selector or multi-line CSS value.
L02169: selects elements and opens their CSS declaration block.
L02171: sets or begins the display CSS property.
L02172: completes the current CSS property value.
L02174: closes the current CSS declaration block.
L02177: continues CSS documentation for maintainers.
L02178: continues a selector, function, animation step, or property value.
L02179: continues CSS documentation for maintainers.
L02181: selects elements and opens their CSS declaration block.
L02183: sets or begins the position CSS property.
L02184: completes the current CSS property value.
L02186: sets or begins the min-height CSS property.
L02187: continues a selector, function, animation step, or property value.
L02188: continues a grouped selector or multi-line CSS value.
L02189: continues a selector, function, animation step, or property value.
L02190: continues a selector, function, animation step, or property value.
L02191: continues a selector, function, animation step, or property value.
L02192: continues a selector, function, animation step, or property value.
L02193: continues a selector, function, animation step, or property value.
L02194: completes the current CSS property value.
L02196: sets or begins the display CSS property.
L02197: completes the current CSS property value.
L02199: sets or begins the align-items CSS property.
L02200: completes the current CSS property value.
L02202: sets or begins the padding CSS property.
L02203: continues a selector, function, animation step, or property value.
L02204: continues a selector, function, animation step, or property value.
L02205: completes the current CSS property value.
L02207: sets or begins the overflow CSS property.
L02208: completes the current CSS property value.
L02210: sets or begins the scroll-margin-top CSS property.
L02211: completes the current CSS property value.
L02213: sets or begins the background CSS property.
L02214: continues a selector, function, animation step, or property value.
L02215: continues a grouped selector or multi-line CSS value.
L02216: continues a grouped selector or multi-line CSS value.
L02217: continues a selector, function, animation step, or property value.
L02218: continues a grouped selector or multi-line CSS value.
L02219: continues a selector, function, animation step, or property value.
L02220: continues a grouped selector or multi-line CSS value.
L02221: continues a grouped selector or multi-line CSS value.
L02222: continues a selector, function, animation step, or property value.
L02223: continues a grouped selector or multi-line CSS value.
L02224: continues a selector, function, animation step, or property value.
L02225: continues a grouped selector or multi-line CSS value.
L02226: continues a grouped selector or multi-line CSS value.
L02227: continues a selector, function, animation step, or property value.
L02228: completes the current CSS property value.
L02230: closes the current CSS declaration block.
L02233: selects elements and opens their CSS declaration block.
L02235: sets or begins the position CSS property.
L02236: completes the current CSS property value.
L02238: sets or begins the inset CSS property.
L02239: completes the current CSS property value.
L02241: sets or begins the pointer-events CSS property.
L02242: completes the current CSS property value.
L02244: sets or begins the background CSS property.
L02245: continues a selector, function, animation step, or property value.
L02246: continues a grouped selector or multi-line CSS value.
L02247: continues a grouped selector or multi-line CSS value.
L02248: continues a selector, function, animation step, or property value.
L02249: completes the current CSS property value.
L02251: sets or begins the background-size CSS property.
L02252: completes the current CSS property value.
L02254: sets or begins the mask-image CSS property.
L02255: continues a selector, function, animation step, or property value.
L02256: continues a grouped selector or multi-line CSS value.
L02257: continues a grouped selector or multi-line CSS value.
L02258: continues a selector, function, animation step, or property value.
L02259: completes the current CSS property value.
L02261: sets or begins the opacity CSS property.
L02262: completes the current CSS property value.
L02264: closes the current CSS declaration block.
L02267: selects elements and opens their CSS declaration block.
L02269: sets or begins the position CSS property.
L02270: completes the current CSS property value.
L02272: sets or begins the z-index CSS property.
L02273: completes the current CSS property value.
L02275: sets or begins the width CSS property.
L02276: completes the current CSS property value.
L02278: sets or begins the margin-inline CSS property.
L02279: completes the current CSS property value.
L02281: sets or begins the display CSS property.
L02282: completes the current CSS property value.
L02284: sets or begins the grid-template-columns CSS property.
L02285: continues a selector, function, animation step, or property value.
L02286: completes the current CSS property value.
L02288: sets or begins the align-items CSS property.
L02289: completes the current CSS property value.
L02291: sets or begins the gap CSS property.
L02292: completes the current CSS property value.
L02294: closes the current CSS declaration block.
L02297: selects elements and opens their CSS declaration block.
L02299: sets or begins the display CSS property.
L02300: completes the current CSS property value.
L02302: sets or begins the align-items CSS property.
L02303: completes the current CSS property value.
L02305: sets or begins the gap CSS property.
L02306: completes the current CSS property value.
L02308: sets or begins the margin-bottom CSS property.
L02309: completes the current CSS property value.
L02311: sets or begins the color CSS property.
L02312: completes the current CSS property value.
L02314: sets or begins the font-family CSS property.
L02315: completes the current CSS property value.
L02317: sets or begins the font-size CSS property.
L02318: completes the current CSS property value.
L02320: sets or begins the font-weight CSS property.
L02321: completes the current CSS property value.
L02323: sets or begins the letter-spacing CSS property.
L02324: completes the current CSS property value.
L02326: sets or begins the text-transform CSS property.
L02327: completes the current CSS property value.
L02329: closes the current CSS declaration block.
L02332: selects elements and opens their CSS declaration block.
L02334: sets or begins the width CSS property.
L02335: completes the current CSS property value.
L02337: sets or begins the height CSS property.
L02338: completes the current CSS property value.
L02340: sets or begins the border-radius CSS property.
L02341: completes the current CSS property value.
L02343: sets or begins the background CSS property.
L02344: completes the current CSS property value.
L02346: sets or begins the box-shadow CSS property.
L02347: continues a grouped selector or multi-line CSS value.
L02348: completes the current CSS property value.
L02350: closes the current CSS declaration block.
L02353: selects elements and opens their CSS declaration block.
L02355: sets or begins the max-width CSS property.
L02356: completes the current CSS property value.
L02358: sets or begins the margin-bottom CSS property.
L02359: completes the current CSS property value.
L02361: sets or begins the color CSS property.
L02362: completes the current CSS property value.
L02364: sets or begins the font-weight CSS property.
L02365: completes the current CSS property value.
L02367: sets or begins the letter-spacing CSS property.
L02368: completes the current CSS property value.
L02370: closes the current CSS declaration block.
L02373: selects elements and opens their CSS declaration block.
L02375: sets or begins the position CSS property.
L02376: completes the current CSS property value.
L02378: sets or begins the display CSS property.
L02379: completes the current CSS property value.
L02381: sets or begins the min-width CSS property.
L02382: completes the current CSS property value.
L02384: sets or begins the color CSS property.
L02385: completes the current CSS property value.
L02387: sets or begins the background CSS property.
L02388: continues a selector, function, animation step, or property value.
L02389: continues a grouped selector or multi-line CSS value.
L02390: continues a grouped selector or multi-line CSS value.
L02391: continues a grouped selector or multi-line CSS value.
L02392: continues a selector, function, animation step, or property value.
L02393: completes the current CSS property value.
L02395: sets or begins the background-size CSS property.
L02396: completes the current CSS property value.
L02398: sets or begins the background-clip CSS property.
L02399: completes the current CSS property value.
L02401: sets or begins the -webkit-background-clip CSS property.
L02402: completes the current CSS property value.
L02404: sets or begins the animation CSS property.
L02405: continues a selector, function, animation step, or property value.
L02406: continues a selector, function, animation step, or property value.
L02407: continues a selector, function, animation step, or property value.
L02408: completes the current CSS property value.
L02410: closes the current CSS declaration block.
L02413: selects elements and opens their CSS declaration block.
L02415: sets or begins the display CSS property.
L02416: completes the current CSS property value.
L02418: sets or begins the transition CSS property.
L02419: continues a grouped selector or multi-line CSS value.
L02420: completes the current CSS property value.
L02422: closes the current CSS declaration block.
L02425: selects elements and opens their CSS declaration block.
L02427: sets or begins the opacity CSS property.
L02428: completes the current CSS property value.
L02430: sets or begins the transform CSS property.
L02431: completes the current CSS property value.
L02433: closes the current CSS declaration block.
L02436: selects elements and opens their CSS declaration block.
L02438: sets or begins the content CSS property.
L02439: completes the current CSS property value.
L02441: sets or begins the position CSS property.
L02442: completes the current CSS property value.
L02444: sets or begins the right CSS property.
L02445: completes the current CSS property value.
L02447: sets or begins the bottom CSS property.
L02448: completes the current CSS property value.
L02450: sets or begins the left CSS property.
L02451: completes the current CSS property value.
L02453: sets or begins the height CSS property.
L02454: completes the current CSS property value.
L02456: sets or begins the border-radius CSS property.
L02457: completes the current CSS property value.
L02459: sets or begins the background CSS property.
L02460: continues a selector, function, animation step, or property value.
L02461: continues a grouped selector or multi-line CSS value.
L02462: continues a grouped selector or multi-line CSS value.
L02463: continues a selector, function, animation step, or property value.
L02464: completes the current CSS property value.
L02466: sets or begins the opacity CSS property.
L02467: completes the current CSS property value.
L02469: sets or begins the transform CSS property.
L02470: completes the current CSS property value.
L02472: sets or begins the transform-origin CSS property.
L02473: completes the current CSS property value.
L02475: sets or begins the animation CSS property.
L02476: continues a selector, function, animation step, or property value.
L02477: continues a selector, function, animation step, or property value.
L02478: continues a selector, function, animation step, or property value.
L02479: completes the current CSS property value.
L02481: closes the current CSS declaration block.
L02484: defines an animation timeline.
L02486: continues a grouped selector or multi-line CSS value.
L02487: selects elements and opens their CSS declaration block.
L02489: sets or begins the background-position CSS property.
L02490: completes the current CSS property value.
L02492: closes the current CSS declaration block.
L02494: selects elements and opens their CSS declaration block.
L02496: sets or begins the background-position CSS property.
L02497: completes the current CSS property value.
L02499: closes the current CSS declaration block.
L02501: closes the current CSS declaration block.
L02504: defines an animation timeline.
L02506: continues a grouped selector or multi-line CSS value.
L02507: selects elements and opens their CSS declaration block.
L02509: sets or begins the transform CSS property.
L02510: completes the current CSS property value.
L02512: sets or begins the opacity CSS property.
L02513: completes the current CSS property value.
L02515: closes the current CSS declaration block.
L02517: selects elements and opens their CSS declaration block.
L02519: sets or begins the transform CSS property.
L02520: completes the current CSS property value.
L02522: sets or begins the opacity CSS property.
L02523: completes the current CSS property value.
L02525: closes the current CSS declaration block.
L02527: closes the current CSS declaration block.
L02530: selects elements and opens their CSS declaration block.
L02532: sets or begins the max-width CSS property.
L02533: completes the current CSS property value.
L02535: sets or begins the margin-bottom CSS property.
L02536: completes the current CSS property value.
L02538: sets or begins the color CSS property.
L02539: completes the current CSS property value.
L02541: sets or begins the font-size CSS property.
L02542: completes the current CSS property value.
L02544: sets or begins the line-height CSS property.
L02545: completes the current CSS property value.
L02547: closes the current CSS declaration block.
L02550: selects elements and opens their CSS declaration block.
L02552: sets or begins the display CSS property.
L02553: completes the current CSS property value.
L02555: sets or begins the flex-wrap CSS property.
L02556: completes the current CSS property value.
L02558: sets or begins the align-items CSS property.
L02559: completes the current CSS property value.
L02561: sets or begins the gap CSS property.
L02562: completes the current CSS property value.
L02564: sets or begins the margin-top CSS property.
L02565: completes the current CSS property value.
L02567: closes the current CSS declaration block.
L02570: selects elements and opens their CSS declaration block.
L02572: sets or begins the display CSS property.
L02573: completes the current CSS property value.
L02575: sets or begins the align-items CSS property.
L02576: completes the current CSS property value.
L02578: sets or begins the justify-content CSS property.
L02579: completes the current CSS property value.
L02581: sets or begins the gap CSS property.
L02582: completes the current CSS property value.
L02584: sets or begins the min-height CSS property.
L02585: completes the current CSS property value.
L02587: sets or begins the padding CSS property.
L02588: completes the current CSS property value.
L02590: sets or begins the border CSS property.
L02591: completes the current CSS property value.
L02593: sets or begins the border-radius CSS property.
L02594: completes the current CSS property value.
L02596: sets or begins the font-family CSS property.
L02597: completes the current CSS property value.
L02599: sets or begins the font-size CSS property.
L02600: completes the current CSS property value.
L02602: sets or begins the font-weight CSS property.
L02603: completes the current CSS property value.
L02605: sets or begins the line-height CSS property.
L02606: completes the current CSS property value.
L02608: sets or begins the text-decoration CSS property.
L02609: completes the current CSS property value.
L02611: sets or begins the cursor CSS property.
L02612: completes the current CSS property value.
L02614: sets or begins the transition CSS property.
L02615: continues a grouped selector or multi-line CSS value.
L02616: continues a grouped selector or multi-line CSS value.
L02617: continues a grouped selector or multi-line CSS value.
L02618: continues a grouped selector or multi-line CSS value.
L02619: completes the current CSS property value.
L02621: closes the current CSS declaration block.
L02624: selects elements and opens their CSS declaration block.
L02626: sets or begins the width CSS property.
L02627: completes the current CSS property value.
L02629: sets or begins the height CSS property.
L02630: completes the current CSS property value.
L02632: closes the current CSS declaration block.
L02635: selects elements and opens their CSS declaration block.
L02637: sets or begins the color CSS property.
L02638: completes the current CSS property value.
L02640: sets or begins the background CSS property.
L02641: continues a selector, function, animation step, or property value.
L02642: continues a grouped selector or multi-line CSS value.
L02643: continues a grouped selector or multi-line CSS value.
L02644: continues a selector, function, animation step, or property value.
L02645: completes the current CSS property value.
L02647: sets or begins the box-shadow CSS property.
L02648: completes the current CSS property value.
L02650: closes the current CSS declaration block.
L02653: selects elements and opens their CSS declaration block.
L02655: sets or begins the transform CSS property.
L02656: completes the current CSS property value.
L02658: sets or begins the box-shadow CSS property.
L02659: continues a grouped selector or multi-line CSS value.
L02660: completes the current CSS property value.
L02662: closes the current CSS declaration block.
L02665: selects elements and opens their CSS declaration block.
L02667: sets or begins the color CSS property.
L02668: completes the current CSS property value.
L02670: sets or begins the background CSS property.
L02671: completes the current CSS property value.
L02673: sets or begins the border-color CSS property.
L02674: completes the current CSS property value.
L02676: sets or begins the box-shadow CSS property.
L02677: completes the current CSS property value.
L02679: closes the current CSS declaration block.
L02682: selects elements and opens their CSS declaration block.
L02684: sets or begins the transform CSS property.
L02685: completes the current CSS property value.
L02687: sets or begins the border-color CSS property.
L02688: completes the current CSS property value.
L02690: sets or begins the background CSS property.
L02691: completes the current CSS property value.
L02693: sets or begins the box-shadow CSS property.
L02694: completes the current CSS property value.
L02696: closes the current CSS declaration block.
L02699: selects elements and opens their CSS declaration block.
L02701: sets or begins the min-height CSS property.
L02702: completes the current CSS property value.
L02704: sets or begins the padding CSS property.
L02705: completes the current CSS property value.
L02707: sets or begins the color CSS property.
L02708: completes the current CSS property value.
L02710: sets or begins the background CSS property.
L02711: completes the current CSS property value.
L02713: closes the current CSS declaration block.
L02716: selects elements and opens their CSS declaration block.
L02718: sets or begins the color CSS property.
L02719: completes the current CSS property value.
L02721: sets or begins the transform CSS property.
L02722: completes the current CSS property value.
L02724: closes the current CSS declaration block.
L02727: selects elements and opens their CSS declaration block.
L02729: sets or begins the min-height CSS property.
L02730: completes the current CSS property value.
L02732: sets or begins the padding CSS property.
L02733: completes the current CSS property value.
L02735: sets or begins the font-size CSS property.
L02736: completes the current CSS property value.
L02738: closes the current CSS declaration block.
L02741: selects elements and opens their CSS declaration block.
L02743: sets or begins the display CSS property.
L02744: completes the current CSS property value.
L02746: sets or begins the grid-template-columns CSS property.
L02747: completes the current CSS property value.
L02749: sets or begins the gap CSS property.
L02750: completes the current CSS property value.
L02752: sets or begins the margin-top CSS property.
L02753: completes the current CSS property value.
L02755: closes the current CSS declaration block.
L02758: selects elements and opens their CSS declaration block.
L02760: sets or begins the display CSS property.
L02761: completes the current CSS property value.
L02763: sets or begins the align-items CSS property.
L02764: completes the current CSS property value.
L02766: sets or begins the gap CSS property.
L02767: completes the current CSS property value.
L02769: sets or begins the min-height CSS property.
L02770: completes the current CSS property value.
L02772: sets or begins the padding CSS property.
L02773: completes the current CSS property value.
L02775: sets or begins the border CSS property.
L02776: completes the current CSS property value.
L02778: sets or begins the border-radius CSS property.
L02779: completes the current CSS property value.
L02781: sets or begins the color CSS property.
L02782: completes the current CSS property value.
L02784: sets or begins the background CSS property.
L02785: completes the current CSS property value.
L02787: sets or begins the box-shadow CSS property.
L02788: completes the current CSS property value.
L02790: sets or begins the backdrop-filter CSS property.
L02791: completes the current CSS property value.
L02793: sets or begins the text-decoration CSS property.
L02794: completes the current CSS property value.
L02796: sets or begins the transition CSS property.
L02797: continues a grouped selector or multi-line CSS value.
L02798: continues a grouped selector or multi-line CSS value.
L02799: continues a grouped selector or multi-line CSS value.
L02800: completes the current CSS property value.
L02802: closes the current CSS declaration block.
L02805: selects elements and opens their CSS declaration block.
L02807: sets or begins the transform CSS property.
L02808: completes the current CSS property value.
L02810: sets or begins the border-color CSS property.
L02811: completes the current CSS property value.
L02813: sets or begins the background CSS property.
L02814: completes the current CSS property value.
L02816: sets or begins the box-shadow CSS property.
L02817: completes the current CSS property value.
L02819: closes the current CSS declaration block.
L02822: selects elements and opens their CSS declaration block.
L02824: sets or begins the display CSS property.
L02825: completes the current CSS property value.
L02827: sets or begins the place-items CSS property.
L02828: completes the current CSS property value.
L02830: sets or begins the width CSS property.
L02831: completes the current CSS property value.
L02833: sets or begins the height CSS property.
L02834: completes the current CSS property value.
L02836: sets or begins the flex CSS property.
L02837: completes the current CSS property value.
L02839: sets or begins the border-radius CSS property.
L02840: completes the current CSS property value.
L02842: sets or begins the color CSS property.
L02843: completes the current CSS property value.
L02845: sets or begins the background CSS property.
L02846: continues a selector, function, animation step, or property value.
L02847: continues a grouped selector or multi-line CSS value.
L02848: continues a grouped selector or multi-line CSS value.
L02849: continues a selector, function, animation step, or property value.
L02850: completes the current CSS property value.
L02852: closes the current CSS declaration block.
L02855: selects elements and opens their CSS declaration block.
L02857: sets or begins the width CSS property.
L02858: completes the current CSS property value.
L02860: sets or begins the height CSS property.
L02861: completes the current CSS property value.
L02863: closes the current CSS declaration block.
L02866: selects elements and opens their CSS declaration block.
L02868: sets or begins the display CSS property.
L02869: completes the current CSS property value.
L02871: sets or begins the flex-direction CSS property.
L02872: completes the current CSS property value.
L02874: closes the current CSS declaration block.
L02877: selects elements and opens their CSS declaration block.
L02879: sets or begins the color CSS property.
L02880: completes the current CSS property value.
L02882: sets or begins the font-family CSS property.
L02883: completes the current CSS property value.
L02885: sets or begins the font-size CSS property.
L02886: completes the current CSS property value.
L02888: closes the current CSS declaration block.
L02891: selects elements and opens their CSS declaration block.
L02893: sets or begins the margin-top CSS property.
L02894: completes the current CSS property value.
L02896: sets or begins the color CSS property.
L02897: completes the current CSS property value.
L02899: sets or begins the font-size CSS property.
L02900: completes the current CSS property value.
L02902: sets or begins the line-height CSS property.
L02903: completes the current CSS property value.
L02905: closes the current CSS declaration block.
L02908: continues CSS documentation for maintainers.
L02909: continues a selector, function, animation step, or property value.
L02910: continues CSS documentation for maintainers.
L02912: selects elements and opens their CSS declaration block.
L02914: sets or begins the perspective CSS property.
L02915: completes the current CSS property value.
L02917: closes the current CSS declaration block.
L02920: selects elements and opens their CSS declaration block.
L02922: sets or begins the position CSS property.
L02923: completes the current CSS property value.
L02925: sets or begins the width CSS property.
L02926: completes the current CSS property value.
L02928: sets or begins the min-height CSS property.
L02929: completes the current CSS property value.
L02931: sets or begins the margin-inline CSS property.
L02932: completes the current CSS property value.
L02934: sets or begins the transform-style CSS property.
L02935: completes the current CSS property value.
L02937: closes the current CSS declaration block.
L02940: selects elements and opens their CSS declaration block.
L02942: sets or begins the position CSS property.
L02943: completes the current CSS property value.
L02945: sets or begins the inset CSS property.
L02946: completes the current CSS property value.
L02948: sets or begins the border-radius CSS property.
L02949: completes the current CSS property value.
L02951: sets or begins the background CSS property.
L02952: continues a selector, function, animation step, or property value.
L02953: continues a grouped selector or multi-line CSS value.
L02954: continues a grouped selector or multi-line CSS value.
L02955: continues a grouped selector or multi-line CSS value.
L02956: continues a selector, function, animation step, or property value.
L02957: completes the current CSS property value.
L02959: sets or begins the filter CSS property.
L02960: completes the current CSS property value.
L02962: sets or begins the animation CSS property.
L02963: continues a selector, function, animation step, or property value.
L02964: continues a selector, function, animation step, or property value.
L02965: continues a selector, function, animation step, or property value.
L02966: continues a selector, function, animation step, or property value.
L02967: completes the current CSS property value.
L02969: closes the current CSS declaration block.
L02972: defines an animation timeline.
L02974: selects elements and opens their CSS declaration block.
L02976: sets or begins the transform CSS property.
L02977: completes the current CSS property value.
L02979: sets or begins the opacity CSS property.
L02980: completes the current CSS property value.
L02982: closes the current CSS declaration block.
L02984: selects elements and opens their CSS declaration block.
L02986: sets or begins the transform CSS property.
L02987: completes the current CSS property value.
L02989: sets or begins the opacity CSS property.
L02990: completes the current CSS property value.
L02992: closes the current CSS declaration block.
L02994: closes the current CSS declaration block.
L02997: selects elements and opens their CSS declaration block.
L02999: sets or begins the position CSS property.
L03000: completes the current CSS property value.
L03002: sets or begins the top CSS property.
L03003: completes the current CSS property value.
L03005: sets or begins the left CSS property.
L03006: completes the current CSS property value.
L03008: sets or begins the width CSS property.
L03009: completes the current CSS property value.
L03011: sets or begins the aspect-ratio CSS property.
L03012: completes the current CSS property value.
L03014: sets or begins the padding CSS property.
L03015: completes the current CSS property value.
L03017: sets or begins the border CSS property.
L03018: completes the current CSS property value.
L03020: sets or begins the border-radius CSS property.
L03021: completes the current CSS property value.
L03023: sets or begins the background CSS property.
L03024: completes the current CSS property value.
L03026: sets or begins the box-shadow CSS property.
L03027: continues a grouped selector or multi-line CSS value.
L03028: continues a grouped selector or multi-line CSS value.
L03029: completes the current CSS property value.
L03031: sets or begins the backdrop-filter CSS property.
L03032: completes the current CSS property value.
L03034: sets or begins the transform CSS property.
L03035: completes the current CSS property value.
L03037: sets or begins the overflow CSS property.
L03038: completes the current CSS property value.
L03040: sets or begins the animation CSS property.
L03041: continues a selector, function, animation step, or property value.
L03042: continues a selector, function, animation step, or property value.
L03043: continues a selector, function, animation step, or property value.
L03044: completes the current CSS property value.
L03046: closes the current CSS declaration block.
L03049: defines an animation timeline.
L03051: continues a grouped selector or multi-line CSS value.
L03052: selects elements and opens their CSS declaration block.
L03054: sets or begins the transform CSS property.
L03055: continues a selector, function, animation step, or property value.
L03056: continues a selector, function, animation step, or property value.
L03057: completes the current CSS property value.
L03059: closes the current CSS declaration block.
L03061: selects elements and opens their CSS declaration block.
L03063: sets or begins the transform CSS property.
L03064: continues a selector, function, animation step, or property value.
L03065: continues a selector, function, animation step, or property value.
L03066: completes the current CSS property value.
L03068: closes the current CSS declaration block.
L03070: closes the current CSS declaration block.
L03073: selects elements and opens their CSS declaration block.
L03075: sets or begins the width CSS property.
L03076: completes the current CSS property value.
L03078: sets or begins the height CSS property.
L03079: completes the current CSS property value.
L03081: sets or begins the border-radius CSS property.
L03082: completes the current CSS property value.
L03084: sets or begins the background CSS property.
L03085: continues a selector, function, animation step, or property value.
L03086: continues a grouped selector or multi-line CSS value.
L03087: continues a grouped selector or multi-line CSS value.
L03088: continues a selector, function, animation step, or property value.
L03089: continues a grouped selector or multi-line CSS value.
L03090: continues a selector, function, animation step, or property value.
L03091: continues a grouped selector or multi-line CSS value.
L03092: continues a grouped selector or multi-line CSS value.
L03093: continues a selector, function, animation step, or property value.
L03094: continues a grouped selector or multi-line CSS value.
L03095: continues a selector, function, animation step, or property value.
L03096: continues a selector, function, animation step, or property value.
L03097: completes the current CSS property value.
L03099: closes the current CSS declaration block.
L03102: selects elements and opens their CSS declaration block.
L03104: sets or begins the height CSS property.
L03105: completes the current CSS property value.
L03107: sets or begins the display CSS property.
L03108: completes the current CSS property value.
L03110: sets or begins the align-items CSS property.
L03111: completes the current CSS property value.
L03113: sets or begins the justify-content CSS property.
L03114: completes the current CSS property value.
L03116: sets or begins the gap CSS property.
L03117: completes the current CSS property value.
L03119: sets or begins the color CSS property.
L03120: completes the current CSS property value.
L03122: sets or begins the font-family CSS property.
L03123: completes the current CSS property value.
L03125: sets or begins the font-size CSS property.
L03126: completes the current CSS property value.
L03128: sets or begins the font-weight CSS property.
L03129: completes the current CSS property value.
L03131: closes the current CSS declaration block.
L03134: selects elements and opens their CSS declaration block.
L03136: sets or begins the display CSS property.
L03137: completes the current CSS property value.
L03139: sets or begins the width CSS property.
L03140: completes the current CSS property value.
L03142: sets or begins the height CSS property.
L03143: completes the current CSS property value.
L03145: sets or begins the flex CSS property.
L03146: completes the current CSS property value.
L03148: sets or begins the border-radius CSS property.
L03149: completes the current CSS property value.
L03151: sets or begins the background CSS property.
L03152: completes the current CSS property value.
L03154: sets or begins the box-shadow CSS property.
L03155: completes the current CSS property value.
L03157: sets or begins the animation CSS property.
L03158: continues a selector, function, animation step, or property value.
L03159: continues a selector, function, animation step, or property value.
L03160: continues a selector, function, animation step, or property value.
L03161: completes the current CSS property value.
L03163: closes the current CSS declaration block.
L03166: defines an animation timeline.
L03168: selects elements and opens their CSS declaration block.
L03170: sets or begins the box-shadow CSS property.
L03171: continues a selector, function, animation step, or property value.
L03172: completes the current CSS property value.
L03174: closes the current CSS declaration block.
L03176: selects elements and opens their CSS declaration block.
L03178: sets or begins the box-shadow CSS property.
L03179: continues a selector, function, animation step, or property value.
L03180: completes the current CSS property value.
L03182: closes the current CSS declaration block.
L03184: selects elements and opens their CSS declaration block.
L03186: sets or begins the box-shadow CSS property.
L03187: continues a selector, function, animation step, or property value.
L03188: completes the current CSS property value.
L03190: closes the current CSS declaration block.
L03192: closes the current CSS declaration block.
L03195: selects elements and opens their CSS declaration block.
L03197: sets or begins the position CSS property.
L03198: completes the current CSS property value.
L03200: sets or begins the z-index CSS property.
L03201: completes the current CSS property value.
L03203: sets or begins the display CSS property.
L03204: completes the current CSS property value.
L03206: sets or begins the align-items CSS property.
L03207: completes the current CSS property value.
L03209: sets or begins the justify-content CSS property.
L03210: completes the current CSS property value.
L03212: sets or begins the gap CSS property.
L03213: completes the current CSS property value.
L03215: sets or begins the width CSS property.
L03216: completes the current CSS property value.
L03218: sets or begins the min-height CSS property.
L03219: completes the current CSS property value.
L03221: sets or begins the padding CSS property.
L03222: completes the current CSS property value.
L03224: sets or begins the border CSS property.
L03225: completes the current CSS property value.
L03227: sets or begins the border-radius CSS property.
L03228: completes the current CSS property value.
L03230: sets or begins the color CSS property.
L03231: completes the current CSS property value.
L03233: sets or begins the background CSS property.
L03234: completes the current CSS property value.
L03236: sets or begins the box-shadow CSS property.
L03237: completes the current CSS property value.
L03239: sets or begins the backdrop-filter CSS property.
L03240: completes the current CSS property value.
L03242: sets or begins the font-family CSS property.
L03243: completes the current CSS property value.
L03245: sets or begins the font-size CSS property.
L03246: completes the current CSS property value.
L03248: sets or begins the font-weight CSS property.
L03249: completes the current CSS property value.
L03251: sets or begins the text-decoration CSS property.
L03252: completes the current CSS property value.
L03254: sets or begins the transition CSS property.
L03255: continues a grouped selector or multi-line CSS value.
L03256: continues a grouped selector or multi-line CSS value.
L03257: completes the current CSS property value.
L03259: closes the current CSS declaration block.
L03262: continues a grouped selector or multi-line CSS value.
L03263: selects elements and opens their CSS declaration block.
L03265: sets or begins the content CSS property.
L03266: completes the current CSS property value.
L03268: sets or begins the position CSS property.
L03269: completes the current CSS property value.
L03271: sets or begins the width CSS property.
L03272: completes the current CSS property value.
L03274: sets or begins the height CSS property.
L03275: completes the current CSS property value.
L03277: sets or begins the border-radius CSS property.
L03278: completes the current CSS property value.
L03280: sets or begins the background CSS property.
L03281: completes the current CSS property value.
L03283: sets or begins the border CSS property.
L03284: completes the current CSS property value.
L03286: closes the current CSS declaration block.
L03289: selects elements and opens their CSS declaration block.
L03291: sets or begins the top CSS property.
L03292: completes the current CSS property value.
L03294: sets or begins the left CSS property.
L03295: completes the current CSS property value.
L03297: sets or begins the transform CSS property.
L03298: completes the current CSS property value.
L03300: closes the current CSS declaration block.
L03303: selects elements and opens their CSS declaration block.
L03305: sets or begins the top CSS property.
L03306: completes the current CSS property value.
L03308: sets or begins the left CSS property.
L03309: completes the current CSS property value.
L03311: sets or begins the transform CSS property.
L03312: completes the current CSS property value.
L03314: closes the current CSS declaration block.
L03317: selects elements and opens their CSS declaration block.
L03319: sets or begins the width CSS property.
L03320: completes the current CSS property value.
L03322: sets or begins the height CSS property.
L03323: completes the current CSS property value.
L03325: closes the current CSS declaration block.
L03328: selects elements and opens their CSS declaration block.
L03330: sets or begins the z-index CSS property.
L03331: completes the current CSS property value.
L03333: sets or begins the border-color CSS property.
L03334: completes the current CSS property value.
L03336: sets or begins the box-shadow CSS property.
L03337: continues a grouped selector or multi-line CSS value.
L03338: completes the current CSS property value.
L03340: closes the current CSS declaration block.
L03343: selects elements and opens their CSS declaration block.
L03345: sets or begins the top CSS property.
L03346: completes the current CSS property value.
L03348: sets or begins the left CSS property.
L03349: completes the current CSS property value.
L03351: sets or begins the color CSS property.
L03352: completes the current CSS property value.
L03354: sets or begins the animation CSS property.
L03355: continues a selector, function, animation step, or property value.
L03356: continues a selector, function, animation step, or property value.
L03357: continues a selector, function, animation step, or property value.
L03358: completes the current CSS property value.
L03360: closes the current CSS declaration block.
L03363: selects elements and opens their CSS declaration block.
L03365: sets or begins the top CSS property.
L03366: completes the current CSS property value.
L03368: sets or begins the right CSS property.
L03369: completes the current CSS property value.
L03371: sets or begins the color CSS property.
L03372: completes the current CSS property value.
L03374: sets or begins the animation CSS property.
L03375: continues a selector, function, animation step, or property value.
L03376: continues a selector, function, animation step, or property value.
L03377: continues a selector, function, animation step, or property value.
L03378: completes the current CSS property value.
L03380: closes the current CSS declaration block.
L03383: selects elements and opens their CSS declaration block.
L03385: sets or begins the bottom CSS property.
L03386: completes the current CSS property value.
L03388: sets or begins the left CSS property.
L03389: completes the current CSS property value.
L03391: sets or begins the color CSS property.
L03392: completes the current CSS property value.
L03394: sets or begins the animation CSS property.
L03395: continues a selector, function, animation step, or property value.
L03396: continues a selector, function, animation step, or property value.
L03397: continues a selector, function, animation step, or property value.
L03398: completes the current CSS property value.
L03400: closes the current CSS declaration block.
L03403: selects elements and opens their CSS declaration block.
L03405: sets or begins the right CSS property.
L03406: completes the current CSS property value.
L03408: sets or begins the bottom CSS property.
L03409: completes the current CSS property value.
L03411: sets or begins the color CSS property.
L03412: completes the current CSS property value.
L03414: sets or begins the animation CSS property.
L03415: continues a selector, function, animation step, or property value.
L03416: continues a selector, function, animation step, or property value.
L03417: continues a selector, function, animation step, or property value.
L03418: completes the current CSS property value.
L03420: closes the current CSS declaration block.
L03423: defines an animation timeline.
L03425: continues a grouped selector or multi-line CSS value.
L03426: selects elements and opens their CSS declaration block.
L03428: sets or begins the transform CSS property.
L03429: continues a selector, function, animation step, or property value.
L03430: completes the current CSS property value.
L03432: closes the current CSS declaration block.
L03434: selects elements and opens their CSS declaration block.
L03436: sets or begins the transform CSS property.
L03437: continues a selector, function, animation step, or property value.
L03438: completes the current CSS property value.
L03440: closes the current CSS declaration block.
L03442: closes the current CSS declaration block.
L03445: defines an animation timeline.
L03447: continues a grouped selector or multi-line CSS value.
L03448: selects elements and opens their CSS declaration block.
L03450: sets or begins the transform CSS property.
L03451: continues a selector, function, animation step, or property value.
L03452: completes the current CSS property value.
L03454: closes the current CSS declaration block.
L03456: selects elements and opens their CSS declaration block.
L03458: sets or begins the transform CSS property.
L03459: continues a selector, function, animation step, or property value.
L03460: completes the current CSS property value.
L03462: closes the current CSS declaration block.
L03464: closes the current CSS declaration block.
L03467: defines an animation timeline.
L03469: continues a grouped selector or multi-line CSS value.
L03470: selects elements and opens their CSS declaration block.
L03472: sets or begins the transform CSS property.
L03473: continues a selector, function, animation step, or property value.
L03474: completes the current CSS property value.
L03476: closes the current CSS declaration block.
L03478: selects elements and opens their CSS declaration block.
L03480: sets or begins the transform CSS property.
L03481: continues a selector, function, animation step, or property value.
L03482: completes the current CSS property value.
L03484: closes the current CSS declaration block.
L03486: closes the current CSS declaration block.
L03489: defines an animation timeline.
L03491: continues a grouped selector or multi-line CSS value.
L03492: selects elements and opens their CSS declaration block.
L03494: sets or begins the transform CSS property.
L03495: continues a selector, function, animation step, or property value.
L03496: completes the current CSS property value.
L03498: closes the current CSS declaration block.
L03500: selects elements and opens their CSS declaration block.
L03502: sets or begins the transform CSS property.
L03503: continues a selector, function, animation step, or property value.
L03504: completes the current CSS property value.
L03506: closes the current CSS declaration block.
L03508: closes the current CSS declaration block.
L03511: selects elements and opens their CSS declaration block.
L03513: sets or begins the position CSS property.
L03514: completes the current CSS property value.
L03516: sets or begins the left CSS property.
L03517: completes the current CSS property value.
L03519: sets or begins the bottom CSS property.
L03520: completes the current CSS property value.
L03522: sets or begins the display CSS property.
L03523: completes the current CSS property value.
L03525: sets or begins the align-items CSS property.
L03526: completes the current CSS property value.
L03528: sets or begins the gap CSS property.
L03529: completes the current CSS property value.
L03531: sets or begins the color CSS property.
L03532: completes the current CSS property value.
L03534: sets or begins the font-family CSS property.
L03535: completes the current CSS property value.
L03537: sets or begins the font-size CSS property.
L03538: completes the current CSS property value.
L03540: sets or begins the font-weight CSS property.
L03541: completes the current CSS property value.
L03543: sets or begins the text-decoration CSS property.
L03544: completes the current CSS property value.
L03546: sets or begins the transform CSS property.
L03547: completes the current CSS property value.
L03549: closes the current CSS declaration block.
L03552: selects elements and opens their CSS declaration block.
L03554: sets or begins the position CSS property.
L03555: completes the current CSS property value.
L03557: sets or begins the width CSS property.
L03558: completes the current CSS property value.
L03560: sets or begins the height CSS property.
L03561: completes the current CSS property value.
L03563: sets or begins the border CSS property.
L03564: completes the current CSS property value.
L03566: sets or begins the border-radius CSS property.
L03567: completes the current CSS property value.
L03569: closes the current CSS declaration block.
L03572: selects elements and opens their CSS declaration block.
L03574: sets or begins the content CSS property.
L03575: completes the current CSS property value.
L03577: sets or begins the position CSS property.
L03578: completes the current CSS property value.
L03580: sets or begins the top CSS property.
L03581: completes the current CSS property value.
L03583: sets or begins the left CSS property.
L03584: completes the current CSS property value.
L03586: sets or begins the width CSS property.
L03587: completes the current CSS property value.
L03589: sets or begins the height CSS property.
L03590: completes the current CSS property value.
L03592: sets or begins the border-radius CSS property.
L03593: completes the current CSS property value.
L03595: sets or begins the background CSS property.
L03596: completes the current CSS property value.
L03598: sets or begins the transform CSS property.
L03599: completes the current CSS property value.
L03601: sets or begins the animation CSS property.
L03602: continues a selector, function, animation step, or property value.
L03603: continues a selector, function, animation step, or property value.
L03604: continues a selector, function, animation step, or property value.
L03605: completes the current CSS property value.
L03607: closes the current CSS declaration block.
L03610: defines an animation timeline.
L03612: continues a grouped selector or multi-line CSS value.
L03613: selects elements and opens their CSS declaration block.
L03615: sets or begins the opacity CSS property.
L03616: completes the current CSS property value.
L03618: sets or begins the transform CSS property.
L03619: completes the current CSS property value.
L03621: closes the current CSS declaration block.
L03623: selects elements and opens their CSS declaration block.
L03625: sets or begins the opacity CSS property.
L03626: completes the current CSS property value.
L03628: closes the current CSS declaration block.
L03630: selects elements and opens their CSS declaration block.
L03632: sets or begins the opacity CSS property.
L03633: completes the current CSS property value.
L03635: sets or begins the transform CSS property.
L03636: completes the current CSS property value.
L03638: closes the current CSS declaration block.
L03640: closes the current CSS declaration block.
L03643: continues CSS documentation for maintainers.
L03644: continues a selector, function, animation step, or property value.
L03645: continues CSS documentation for maintainers.
L03647: selects elements and opens their CSS declaration block.
L03649: sets or begins the position CSS property.
L03650: completes the current CSS property value.
L03652: sets or begins the z-index CSS property.
L03653: completes the current CSS property value.
L03655: sets or begins the width CSS property.
L03656: continues a selector, function, animation step, or property value.
L03657: continues a grouped selector or multi-line CSS value.
L03658: continues a selector, function, animation step, or property value.
L03659: completes the current CSS property value.
L03661: sets or begins the margin CSS property.
L03662: completes the current CSS property value.
L03664: sets or begins the padding CSS property.
L03665: completes the current CSS property value.
L03667: sets or begins the border CSS property.
L03668: completes the current CSS property value.
L03670: sets or begins the border-radius CSS property.
L03671: completes the current CSS property value.
L03673: sets or begins the background CSS property.
L03674: completes the current CSS property value.
L03676: sets or begins the box-shadow CSS property.
L03677: completes the current CSS property value.
L03679: sets or begins the backdrop-filter CSS property.
L03680: completes the current CSS property value.
L03682: sets or begins the overflow CSS property.
L03683: completes the current CSS property value.
L03685: closes the current CSS declaration block.
L03688: selects elements and opens their CSS declaration block.
L03690: sets or begins the display CSS property.
L03691: completes the current CSS property value.
L03693: sets or begins the grid-template-columns CSS property.
L03694: completes the current CSS property value.
L03696: closes the current CSS declaration block.
L03699: selects elements and opens their CSS declaration block.
L03701: sets or begins the position CSS property.
L03702: completes the current CSS property value.
L03704: sets or begins the display CSS property.
L03705: completes the current CSS property value.
L03707: sets or begins the align-items CSS property.
L03708: completes the current CSS property value.
L03710: sets or begins the gap CSS property.
L03711: completes the current CSS property value.
L03713: sets or begins the min-height CSS property.
L03714: completes the current CSS property value.
L03716: sets or begins the padding CSS property.
L03717: completes the current CSS property value.
L03719: sets or begins the color CSS property.
L03720: completes the current CSS property value.
L03722: sets or begins the text-decoration CSS property.
L03723: completes the current CSS property value.
L03725: sets or begins the transition CSS property.
L03726: continues a grouped selector or multi-line CSS value.
L03727: completes the current CSS property value.
L03729: closes the current CSS declaration block.
L03732: selects elements and opens their CSS declaration block.
L03734: sets or begins the border-left CSS property.
L03735: completes the current CSS property value.
L03737: closes the current CSS declaration block.
L03740: selects elements and opens their CSS declaration block.
L03742: sets or begins the z-index CSS property.
L03743: completes the current CSS property value.
L03745: sets or begins the background CSS property.
L03746: continues a selector, function, animation step, or property value.
L03747: continues a grouped selector or multi-line CSS value.
L03748: continues a grouped selector or multi-line CSS value.
L03749: continues a selector, function, animation step, or property value.
L03750: completes the current CSS property value.
L03752: sets or begins the transform CSS property.
L03753: completes the current CSS property value.
L03755: closes the current CSS declaration block.
L03758: selects elements and opens their CSS declaration block.
L03760: sets or begins the width CSS property.
L03761: completes the current CSS property value.
L03763: sets or begins the height CSS property.
L03764: completes the current CSS property value.
L03766: sets or begins the flex CSS property.
L03767: completes the current CSS property value.
L03769: sets or begins the color CSS property.
L03770: completes the current CSS property value.
L03772: closes the current CSS declaration block.
L03775: selects elements and opens their CSS declaration block.
L03777: sets or begins the display CSS property.
L03778: completes the current CSS property value.
L03780: sets or begins the flex-direction CSS property.
L03781: completes the current CSS property value.
L03783: closes the current CSS declaration block.
L03786: selects elements and opens their CSS declaration block.
L03788: sets or begins the color CSS property.
L03789: completes the current CSS property value.
L03791: sets or begins the font-family CSS property.
L03792: completes the current CSS property value.
L03794: sets or begins the font-size CSS property.
L03795: completes the current CSS property value.
L03797: closes the current CSS declaration block.
L03800: selects elements and opens their CSS declaration block.
L03802: sets or begins the margin-top CSS property.
L03803: completes the current CSS property value.
L03805: sets or begins the color CSS property.
L03806: completes the current CSS property value.
L03808: sets or begins the font-size CSS property.
L03809: completes the current CSS property value.
L03811: sets or begins the line-height CSS property.
L03812: completes the current CSS property value.
L03814: closes the current CSS declaration block.
L03817: selects elements and opens their CSS declaration block.
L03819: sets or begins the background CSS property.
L03820: continues a selector, function, animation step, or property value.
L03821: continues a grouped selector or multi-line CSS value.
L03822: continues a grouped selector or multi-line CSS value.
L03823: continues a selector, function, animation step, or property value.
L03824: completes the current CSS property value.
L03826: closes the current CSS declaration block.
L03829: continues CSS documentation for maintainers.
L03830: continues a selector, function, animation step, or property value.
L03831: continues CSS documentation for maintainers.
L03833: selects elements and opens their CSS declaration block.
L03835: sets or begins the background CSS property.
L03836: continues a selector, function, animation step, or property value.
L03837: continues a grouped selector or multi-line CSS value.
L03838: continues a grouped selector or multi-line CSS value.
L03839: continues a grouped selector or multi-line CSS value.
L03840: continues a selector, function, animation step, or property value.
L03841: completes the current CSS property value.
L03843: closes the current CSS declaration block.
L03846: selects elements and opens their CSS declaration block.
L03848: sets or begins the display CSS property.
L03849: completes the current CSS property value.
L03851: sets or begins the grid-template-columns CSS property.
L03852: completes the current CSS property value.
L03854: sets or begins the gap CSS property.
L03855: completes the current CSS property value.
L03857: closes the current CSS declaration block.
L03860: selects elements and opens their CSS declaration block.
L03862: sets or begins the position CSS property.
L03863: completes the current CSS property value.
L03865: sets or begins the padding CSS property.
L03866: completes the current CSS property value.
L03868: sets or begins the border CSS property.
L03869: completes the current CSS property value.
L03871: sets or begins the border-radius CSS property.
L03872: completes the current CSS property value.
L03874: sets or begins the background CSS property.
L03875: completes the current CSS property value.
L03877: sets or begins the box-shadow CSS property.
L03878: completes the current CSS property value.
L03880: sets or begins the overflow CSS property.
L03881: completes the current CSS property value.
L03883: sets or begins the transition CSS property.
L03884: continues a grouped selector or multi-line CSS value.
L03885: continues a grouped selector or multi-line CSS value.
L03886: continues a grouped selector or multi-line CSS value.
L03887: completes the current CSS property value.
L03889: closes the current CSS declaration block.
L03892: selects elements and opens their CSS declaration block.
L03894: sets or begins the content CSS property.
L03895: completes the current CSS property value.
L03897: sets or begins the position CSS property.
L03898: completes the current CSS property value.
L03900: sets or begins the right CSS property.
L03901: completes the current CSS property value.
L03903: sets or begins the bottom CSS property.
L03904: completes the current CSS property value.
L03906: sets or begins the width CSS property.
L03907: completes the current CSS property value.
L03909: sets or begins the height CSS property.
L03910: completes the current CSS property value.
L03912: sets or begins the border-radius CSS property.
L03913: completes the current CSS property value.
L03915: sets or begins the background CSS property.
L03916: continues a selector, function, animation step, or property value.
L03917: continues a grouped selector or multi-line CSS value.
L03918: continues a grouped selector or multi-line CSS value.
L03919: continues a selector, function, animation step, or property value.
L03920: completes the current CSS property value.
L03922: sets or begins the pointer-events CSS property.
L03923: completes the current CSS property value.
L03925: closes the current CSS declaration block.
L03928: selects elements and opens their CSS declaration block.
L03930: sets or begins the transform CSS property.
L03931: completes the current CSS property value.
L03933: sets or begins the border-color CSS property.
L03934: completes the current CSS property value.
L03936: sets or begins the background CSS property.
L03937: completes the current CSS property value.
L03939: sets or begins the box-shadow CSS property.
L03940: completes the current CSS property value.
L03942: closes the current CSS declaration block.
L03945: selects elements and opens their CSS declaration block.
L03947: sets or begins the grid-row CSS property.
L03948: completes the current CSS property value.
L03950: sets or begins the display CSS property.
L03951: completes the current CSS property value.
L03953: sets or begins the flex-direction CSS property.
L03954: completes the current CSS property value.
L03956: sets or begins the justify-content CSS property.
L03957: completes the current CSS property value.
L03959: sets or begins the min-height CSS property.
L03960: completes the current CSS property value.
L03962: sets or begins the padding CSS property.
L03963: completes the current CSS property value.
L03965: sets or begins the color CSS property.
L03966: completes the current CSS property value.
L03968: sets or begins the border-color CSS property.
L03969: completes the current CSS property value.
L03971: sets or begins the background CSS property.
L03972: continues a selector, function, animation step, or property value.
L03973: continues a grouped selector or multi-line CSS value.
L03974: continues a grouped selector or multi-line CSS value.
L03975: continues a selector, function, animation step, or property value.
L03976: continues a grouped selector or multi-line CSS value.
L03977: continues a selector, function, animation step, or property value.
L03978: continues a grouped selector or multi-line CSS value.
L03979: continues a grouped selector or multi-line CSS value.
L03980: continues a selector, function, animation step, or property value.
L03981: completes the current CSS property value.
L03983: sets or begins the box-shadow CSS property.
L03984: completes the current CSS property value.
L03986: closes the current CSS declaration block.
L03989: continues a grouped selector or multi-line CSS value.
L03990: continues a grouped selector or multi-line CSS value.
L03991: selects elements and opens their CSS declaration block.
L03993: sets or begins the color CSS property.
L03994: completes the current CSS property value.
L03996: closes the current CSS declaration block.
L03999: selects elements and opens their CSS declaration block.
L04001: sets or begins the opacity CSS property.
L04002: completes the current CSS property value.
L04004: closes the current CSS declaration block.
L04007: selects elements and opens their CSS declaration block.
L04009: sets or begins the max-width CSS property.
L04010: completes the current CSS property value.
L04012: sets or begins the margin CSS property.
L04013: completes the current CSS property value.
L04015: sets or begins the font-size CSS property.
L04016: completes the current CSS property value.
L04018: closes the current CSS declaration block.
L04021: selects elements and opens their CSS declaration block.
L04023: sets or begins the max-width CSS property.
L04024: completes the current CSS property value.
L04026: sets or begins the color CSS property.
L04027: completes the current CSS property value.
L04029: sets or begins the font-size CSS property.
L04030: completes the current CSS property value.
L04032: closes the current CSS declaration block.
L04035: selects elements and opens their CSS declaration block.
L04037: sets or begins the display CSS property.
L04038: completes the current CSS property value.
L04040: sets or begins the place-items CSS property.
L04041: completes the current CSS property value.
L04043: sets or begins the width CSS property.
L04044: completes the current CSS property value.
L04046: sets or begins the height CSS property.
L04047: completes the current CSS property value.
L04049: sets or begins the margin-bottom CSS property.
L04050: completes the current CSS property value.
L04052: sets or begins the border-radius CSS property.
L04053: completes the current CSS property value.
L04055: sets or begins the color CSS property.
L04056: completes the current CSS property value.
L04058: sets or begins the background CSS property.
L04059: continues a selector, function, animation step, or property value.
L04060: continues a grouped selector or multi-line CSS value.
L04061: continues a grouped selector or multi-line CSS value.
L04062: continues a selector, function, animation step, or property value.
L04063: completes the current CSS property value.
L04065: closes the current CSS declaration block.
L04068: selects elements and opens their CSS declaration block.
L04070: sets or begins the width CSS property.
L04071: completes the current CSS property value.
L04073: sets or begins the height CSS property.
L04074: completes the current CSS property value.
L04076: closes the current CSS declaration block.
L04079: selects elements and opens their CSS declaration block.
L04081: sets or begins the margin-bottom CSS property.
L04082: completes the current CSS property value.
L04084: closes the current CSS declaration block.
L04087: selects elements and opens their CSS declaration block.
L04089: sets or begins the margin-bottom CSS property.
L04090: completes the current CSS property value.
L04092: closes the current CSS declaration block.
L04095: continues a grouped selector or multi-line CSS value.
L04096: selects elements and opens their CSS declaration block.
L04098: sets or begins the display CSS property.
L04099: completes the current CSS property value.
L04101: sets or begins the align-items CSS property.
L04102: completes the current CSS property value.
L04104: sets or begins the gap CSS property.
L04105: completes the current CSS property value.
L04107: sets or begins the width CSS property.
L04108: completes the current CSS property value.
L04110: sets or begins the padding CSS property.
L04111: completes the current CSS property value.
L04113: sets or begins the border CSS property.
L04114: completes the current CSS property value.
L04116: sets or begins the color CSS property.
L04117: completes the current CSS property value.
L04119: sets or begins the background CSS property.
L04120: completes the current CSS property value.
L04122: sets or begins the font-family CSS property.
L04123: completes the current CSS property value.
L04125: sets or begins the font-size CSS property.
L04126: completes the current CSS property value.
L04128: sets or begins the font-weight CSS property.
L04129: completes the current CSS property value.
L04131: sets or begins the text-align CSS property.
L04132: completes the current CSS property value.
L04134: sets or begins the cursor CSS property.
L04135: completes the current CSS property value.
L04137: sets or begins the text-decoration CSS property.
L04138: completes the current CSS property value.
L04140: sets or begins the transition CSS property.
L04141: continues a grouped selector or multi-line CSS value.
L04142: completes the current CSS property value.
L04144: closes the current CSS declaration block.
L04147: selects elements and opens their CSS declaration block.
L04149: sets or begins the margin-top CSS property.
L04150: completes the current CSS property value.
L04152: sets or begins the color CSS property.
L04153: completes the current CSS property value.
L04155: closes the current CSS declaration block.
L04158: continues a grouped selector or multi-line CSS value.
L04159: selects elements and opens their CSS declaration block.
L04161: sets or begins the color CSS property.
L04162: completes the current CSS property value.
L04164: sets or begins the transform CSS property.
L04165: completes the current CSS property value.
L04167: closes the current CSS declaration block.
L04170: selects elements and opens their CSS declaration block.
L04172: sets or begins the color CSS property.
L04173: completes the current CSS property value.
L04175: closes the current CSS declaration block.
L04178: selects elements and opens their CSS declaration block.
L04180: sets or begins the width CSS property.
L04181: completes the current CSS property value.
L04183: sets or begins the height CSS property.
L04184: completes the current CSS property value.
L04186: closes the current CSS declaration block.
L04189: selects elements and opens their CSS declaration block.
L04191: sets or begins the display CSS property.
L04192: completes the current CSS property value.
L04194: sets or begins the gap CSS property.
L04195: completes the current CSS property value.
L04197: sets or begins the margin CSS property.
L04198: completes the current CSS property value.
L04200: sets or begins the padding CSS property.
L04201: completes the current CSS property value.
L04203: sets or begins the list-style CSS property.
L04204: completes the current CSS property value.
L04206: closes the current CSS declaration block.
L04209: selects elements and opens their CSS declaration block.
L04211: sets or begins the display CSS property.
L04212: completes the current CSS property value.
L04214: sets or begins the align-items CSS property.
L04215: completes the current CSS property value.
L04217: sets or begins the gap CSS property.
L04218: completes the current CSS property value.
L04220: sets or begins the color CSS property.
L04221: completes the current CSS property value.
L04223: sets or begins the font-weight CSS property.
L04224: completes the current CSS property value.
L04226: closes the current CSS declaration block.
L04229: selects elements and opens their CSS declaration block.
L04231: sets or begins the width CSS property.
L04232: completes the current CSS property value.
L04234: sets or begins the height CSS property.
L04235: completes the current CSS property value.
L04237: sets or begins the color CSS property.
L04238: completes the current CSS property value.
L04240: closes the current CSS declaration block.
L04243: continues CSS documentation for maintainers.
L04244: continues a selector, function, animation step, or property value.
L04245: continues CSS documentation for maintainers.
L04247: selects elements and opens their CSS declaration block.
L04249: sets or begins the background CSS property.
L04250: continues a selector, function, animation step, or property value.
L04251: continues a grouped selector or multi-line CSS value.
L04252: continues a grouped selector or multi-line CSS value.
L04253: continues a selector, function, animation step, or property value.
L04254: continues a grouped selector or multi-line CSS value.
L04255: continues a selector, function, animation step, or property value.
L04256: continues a grouped selector or multi-line CSS value.
L04257: continues a grouped selector or multi-line CSS value.
L04258: continues a selector, function, animation step, or property value.
L04259: completes the current CSS property value.
L04261: closes the current CSS declaration block.
L04264: selects elements and opens their CSS declaration block.
L04266: sets or begins the display CSS property.
L04267: completes the current CSS property value.
L04269: sets or begins the grid-template-columns CSS property.
L04270: completes the current CSS property value.
L04272: sets or begins the gap CSS property.
L04273: completes the current CSS property value.
L04275: closes the current CSS declaration block.
L04278: selects elements and opens their CSS declaration block.
L04280: sets or begins the position CSS property.
L04281: completes the current CSS property value.
L04283: sets or begins the min-height CSS property.
L04284: completes the current CSS property value.
L04286: sets or begins the display CSS property.
L04287: completes the current CSS property value.
L04289: sets or begins the flex-direction CSS property.
L04290: completes the current CSS property value.
L04292: sets or begins the padding CSS property.
L04293: completes the current CSS property value.
L04295: sets or begins the border CSS property.
L04296: completes the current CSS property value.
L04298: sets or begins the border-radius CSS property.
L04299: completes the current CSS property value.
L04301: sets or begins the background CSS property.
L04302: completes the current CSS property value.
L04304: sets or begins the box-shadow CSS property.
L04305: completes the current CSS property value.
L04307: sets or begins the overflow CSS property.
L04308: completes the current CSS property value.
L04310: sets or begins the transition CSS property.
L04311: continues a grouped selector or multi-line CSS value.
L04312: continues a grouped selector or multi-line CSS value.
L04313: completes the current CSS property value.
L04315: closes the current CSS declaration block.
L04318: selects elements and opens their CSS declaration block.
L04320: sets or begins the content CSS property.
L04321: completes the current CSS property value.
L04323: sets or begins the position CSS property.
L04324: completes the current CSS property value.
L04326: sets or begins the inset CSS property.
L04327: completes the current CSS property value.
L04329: sets or begins the height CSS property.
L04330: completes the current CSS property value.
L04332: sets or begins the background CSS property.
L04333: continues a selector, function, animation step, or property value.
L04334: continues a grouped selector or multi-line CSS value.
L04335: continues a grouped selector or multi-line CSS value.
L04336: continues a grouped selector or multi-line CSS value.
L04337: continues a selector, function, animation step, or property value.
L04338: completes the current CSS property value.
L04340: sets or begins the opacity CSS property.
L04341: completes the current CSS property value.
L04343: closes the current CSS declaration block.
L04346: selects elements and opens their CSS declaration block.
L04348: sets or begins the content CSS property.
L04349: completes the current CSS property value.
L04351: sets or begins the position CSS property.
L04352: completes the current CSS property value.
L04354: sets or begins the top CSS property.
L04355: completes the current CSS property value.
L04357: sets or begins the right CSS property.
L04358: completes the current CSS property value.
L04360: sets or begins the width CSS property.
L04361: completes the current CSS property value.
L04363: sets or begins the height CSS property.
L04364: completes the current CSS property value.
L04366: sets or begins the border-radius CSS property.
L04367: completes the current CSS property value.
L04369: sets or begins the background CSS property.
L04370: continues a selector, function, animation step, or property value.
L04371: continues a grouped selector or multi-line CSS value.
L04372: continues a grouped selector or multi-line CSS value.
L04373: continues a selector, function, animation step, or property value.
L04374: completes the current CSS property value.
L04376: sets or begins the transition CSS property.
L04377: completes the current CSS property value.
L04379: closes the current CSS declaration block.
L04382: selects elements and opens their CSS declaration block.
L04384: sets or begins the transform CSS property.
L04385: completes the current CSS property value.
L04387: sets or begins the border-color CSS property.
L04388: completes the current CSS property value.
L04390: sets or begins the box-shadow CSS property.
L04391: completes the current CSS property value.
L04393: closes the current CSS declaration block.
L04396: selects elements and opens their CSS declaration block.
L04398: sets or begins the transform CSS property.
L04399: completes the current CSS property value.
L04401: closes the current CSS declaration block.
L04404: selects elements and opens their CSS declaration block.
L04406: sets or begins the display CSS property.
L04407: completes the current CSS property value.
L04409: sets or begins the place-items CSS property.
L04410: completes the current CSS property value.
L04412: sets or begins the width CSS property.
L04413: completes the current CSS property value.
L04415: sets or begins the height CSS property.
L04416: completes the current CSS property value.
L04418: sets or begins the margin-bottom CSS property.
L04419: completes the current CSS property value.
L04421: sets or begins the border-radius CSS property.
L04422: completes the current CSS property value.
L04424: sets or begins the color CSS property.
L04425: completes the current CSS property value.
L04427: sets or begins the background CSS property.
L04428: continues a selector, function, animation step, or property value.
L04429: continues a grouped selector or multi-line CSS value.
L04430: continues a grouped selector or multi-line CSS value.
L04431: continues a selector, function, animation step, or property value.
L04432: completes the current CSS property value.
L04434: sets or begins the box-shadow CSS property.
L04435: completes the current CSS property value.
L04437: closes the current CSS declaration block.
L04440: selects elements and opens their CSS declaration block.
L04442: sets or begins the background CSS property.
L04443: continues a selector, function, animation step, or property value.
L04444: continues a grouped selector or multi-line CSS value.
L04445: continues a grouped selector or multi-line CSS value.
L04446: continues a selector, function, animation step, or property value.
L04447: completes the current CSS property value.
L04449: closes the current CSS declaration block.
L04452: selects elements and opens their CSS declaration block.
L04454: sets or begins the background CSS property.
L04455: continues a selector, function, animation step, or property value.
L04456: continues a grouped selector or multi-line CSS value.
L04457: continues a grouped selector or multi-line CSS value.
L04458: continues a selector, function, animation step, or property value.
L04459: completes the current CSS property value.
L04461: closes the current CSS declaration block.
L04464: selects elements and opens their CSS declaration block.
L04466: sets or begins the background CSS property.
L04467: continues a selector, function, animation step, or property value.
L04468: continues a grouped selector or multi-line CSS value.
L04469: continues a grouped selector or multi-line CSS value.
L04470: continues a selector, function, animation step, or property value.
L04471: completes the current CSS property value.
L04473: closes the current CSS declaration block.
L04476: selects elements and opens their CSS declaration block.
L04478: sets or begins the width CSS property.
L04479: completes the current CSS property value.
L04481: sets or begins the height CSS property.
L04482: completes the current CSS property value.
L04484: closes the current CSS declaration block.
L04487: selects elements and opens their CSS declaration block.
L04489: sets or begins the position CSS property.
L04490: completes the current CSS property value.
L04492: sets or begins the top CSS property.
L04493: completes the current CSS property value.
L04495: sets or begins the right CSS property.
L04496: completes the current CSS property value.
L04498: sets or begins the color CSS property.
L04499: completes the current CSS property value.
L04501: sets or begins the font-family CSS property.
L04502: completes the current CSS property value.
L04504: sets or begins the font-size CSS property.
L04505: completes the current CSS property value.
L04507: sets or begins the font-weight CSS property.
L04508: completes the current CSS property value.
L04510: closes the current CSS declaration block.
L04513: selects elements and opens their CSS declaration block.
L04515: sets or begins the margin-bottom CSS property.
L04516: completes the current CSS property value.
L04518: closes the current CSS declaration block.
L04521: selects elements and opens their CSS declaration block.
L04523: sets or begins the margin-bottom CSS property.
L04524: completes the current CSS property value.
L04526: closes the current CSS declaration block.
L04529: selects elements and opens their CSS declaration block.
L04531: sets or begins the margin-top CSS property.
L04532: completes the current CSS property value.
L04534: closes the current CSS declaration block.
L04537: selects elements and opens their CSS declaration block.
L04539: sets or begins the margin-top CSS property.
L04540: completes the current CSS property value.
L04542: sets or begins the display CSS property.
L04543: completes the current CSS property value.
L04545: sets or begins the grid-template-columns CSS property.
L04546: continues a selector, function, animation step, or property value.
L04547: completes the current CSS property value.
L04549: sets or begins the gap CSS property.
L04550: completes the current CSS property value.
L04552: sets or begins the padding CSS property.
L04553: completes the current CSS property value.
L04555: sets or begins the border CSS property.
L04556: completes the current CSS property value.
L04558: sets or begins the border-radius CSS property.
L04559: completes the current CSS property value.
L04561: sets or begins the background CSS property.
L04562: continues a selector, function, animation step, or property value.
L04563: continues a grouped selector or multi-line CSS value.
L04564: continues a grouped selector or multi-line CSS value.
L04565: continues a selector, function, animation step, or property value.
L04566: completes the current CSS property value.
L04568: sets or begins the box-shadow CSS property.
L04569: completes the current CSS property value.
L04571: closes the current CSS declaration block.
L04574: selects elements and opens their CSS declaration block.
L04576: sets or begins the margin-bottom CSS property.
L04577: completes the current CSS property value.
L04579: closes the current CSS declaration block.
L04582: selects elements and opens their CSS declaration block.
L04584: sets or begins the margin-bottom CSS property.
L04585: completes the current CSS property value.
L04587: closes the current CSS declaration block.
L04590: selects elements and opens their CSS declaration block.
L04592: sets or begins the position CSS property.
L04593: completes the current CSS property value.
L04595: sets or begins the display CSS property.
L04596: completes the current CSS property value.
L04598: sets or begins the grid-template-columns CSS property.
L04599: completes the current CSS property value.
L04601: sets or begins the gap CSS property.
L04602: completes the current CSS property value.
L04604: sets or begins the margin CSS property.
L04605: completes the current CSS property value.
L04607: sets or begins the padding CSS property.
L04608: completes the current CSS property value.
L04610: sets or begins the list-style CSS property.
L04611: completes the current CSS property value.
L04613: closes the current CSS declaration block.
L04616: selects elements and opens their CSS declaration block.
L04618: sets or begins the content CSS property.
L04619: completes the current CSS property value.
L04621: sets or begins the position CSS property.
L04622: completes the current CSS property value.
L04624: sets or begins the top CSS property.
L04625: completes the current CSS property value.
L04627: sets or begins the right CSS property.
L04628: completes the current CSS property value.
L04630: sets or begins the left CSS property.
L04631: completes the current CSS property value.
L04633: sets or begins the height CSS property.
L04634: completes the current CSS property value.
L04636: sets or begins the border-radius CSS property.
L04637: completes the current CSS property value.
L04639: sets or begins the background CSS property.
L04640: continues a selector, function, animation step, or property value.
L04641: continues a grouped selector or multi-line CSS value.
L04642: continues a grouped selector or multi-line CSS value.
L04643: continues a grouped selector or multi-line CSS value.
L04644: continues a selector, function, animation step, or property value.
L04645: completes the current CSS property value.
L04647: sets or begins the opacity CSS property.
L04648: completes the current CSS property value.
L04650: closes the current CSS declaration block.
L04653: selects elements and opens their CSS declaration block.
L04655: sets or begins the position CSS property.
L04656: completes the current CSS property value.
L04658: sets or begins the z-index CSS property.
L04659: completes the current CSS property value.
L04661: sets or begins the display CSS property.
L04662: completes the current CSS property value.
L04664: sets or begins the flex-direction CSS property.
L04665: completes the current CSS property value.
L04667: sets or begins the align-items CSS property.
L04668: completes the current CSS property value.
L04670: sets or begins the text-align CSS property.
L04671: completes the current CSS property value.
L04673: closes the current CSS declaration block.
L04676: selects elements and opens their CSS declaration block.
L04678: sets or begins the display CSS property.
L04679: completes the current CSS property value.
L04681: sets or begins the place-items CSS property.
L04682: completes the current CSS property value.
L04684: sets or begins the width CSS property.
L04685: completes the current CSS property value.
L04687: sets or begins the height CSS property.
L04688: completes the current CSS property value.
L04690: sets or begins the margin-bottom CSS property.
L04691: completes the current CSS property value.
L04693: sets or begins the border CSS property.
L04694: completes the current CSS property value.
L04696: sets or begins the border-radius CSS property.
L04697: completes the current CSS property value.
L04699: sets or begins the color CSS property.
L04700: completes the current CSS property value.
L04702: sets or begins the background CSS property.
L04703: completes the current CSS property value.
L04705: sets or begins the box-shadow CSS property.
L04706: completes the current CSS property value.
L04708: sets or begins the font-family CSS property.
L04709: completes the current CSS property value.
L04711: sets or begins the font-size CSS property.
L04712: completes the current CSS property value.
L04714: sets or begins the font-weight CSS property.
L04715: completes the current CSS property value.
L04717: closes the current CSS declaration block.
L04720: selects elements and opens their CSS declaration block.
L04722: sets or begins the color CSS property.
L04723: completes the current CSS property value.
L04725: sets or begins the font-family CSS property.
L04726: completes the current CSS property value.
L04728: sets or begins the font-size CSS property.
L04729: completes the current CSS property value.
L04731: closes the current CSS declaration block.
L04734: selects elements and opens their CSS declaration block.
L04736: sets or begins the margin-top CSS property.
L04737: completes the current CSS property value.
L04739: sets or begins the color CSS property.
L04740: completes the current CSS property value.
L04742: sets or begins the font-size CSS property.
L04743: completes the current CSS property value.
L04745: sets or begins the line-height CSS property.
L04746: completes the current CSS property value.
L04748: closes the current CSS declaration block.
L04751: continues CSS documentation for maintainers.
L04752: continues a selector, function, animation step, or property value.
L04753: continues CSS documentation for maintainers.
L04755: selects elements and opens their CSS declaration block.
L04757: sets or begins the background CSS property.
L04758: continues a selector, function, animation step, or property value.
L04759: continues a grouped selector or multi-line CSS value.
L04760: continues a grouped selector or multi-line CSS value.
L04761: continues a selector, function, animation step, or property value.
L04762: continues a grouped selector or multi-line CSS value.
L04763: continues a selector, function, animation step, or property value.
L04764: continues a grouped selector or multi-line CSS value.
L04765: continues a grouped selector or multi-line CSS value.
L04766: continues a grouped selector or multi-line CSS value.
L04767: continues a selector, function, animation step, or property value.
L04768: completes the current CSS property value.
L04770: sets or begins the color CSS property.
L04771: completes the current CSS property value.
L04773: sets or begins the overflow CSS property.
L04774: completes the current CSS property value.
L04776: closes the current CSS declaration block.
L04779: selects elements and opens their CSS declaration block.
L04781: sets or begins the content CSS property.
L04782: completes the current CSS property value.
L04784: sets or begins the position CSS property.
L04785: completes the current CSS property value.
L04787: sets or begins the inset CSS property.
L04788: completes the current CSS property value.
L04790: sets or begins the background-image CSS property.
L04791: continues a selector, function, animation step, or property value.
L04792: continues a grouped selector or multi-line CSS value.
L04793: continues a selector, function, animation step, or property value.
L04794: continues a grouped selector or multi-line CSS value.
L04795: continues a selector, function, animation step, or property value.
L04796: continues a grouped selector or multi-line CSS value.
L04797: continues a grouped selector or multi-line CSS value.
L04798: continues a selector, function, animation step, or property value.
L04799: completes the current CSS property value.
L04801: sets or begins the background-size CSS property.
L04802: completes the current CSS property value.
L04804: sets or begins the pointer-events CSS property.
L04805: completes the current CSS property value.
L04807: closes the current CSS declaration block.
L04810: selects elements and opens their CSS declaration block.
L04812: sets or begins the position CSS property.
L04813: completes the current CSS property value.
L04815: sets or begins the z-index CSS property.
L04816: completes the current CSS property value.
L04818: closes the current CSS declaration block.
L04821: continues a grouped selector or multi-line CSS value.
L04822: continues a grouped selector or multi-line CSS value.
L04823: selects elements and opens their CSS declaration block.
L04825: sets or begins the color CSS property.
L04826: completes the current CSS property value.
L04828: closes the current CSS declaration block.
L04831: continues a grouped selector or multi-line CSS value.
L04832: selects elements and opens their CSS declaration block.
L04834: sets or begins the color CSS property.
L04835: completes the current CSS property value.
L04837: closes the current CSS declaration block.
L04840: selects elements and opens their CSS declaration block.
L04842: sets or begins the display CSS property.
L04843: completes the current CSS property value.
L04845: sets or begins the align-items CSS property.
L04846: completes the current CSS property value.
L04848: sets or begins the justify-self CSS property.
L04849: completes the current CSS property value.
L04851: sets or begins the gap CSS property.
L04852: completes the current CSS property value.
L04854: sets or begins the min-width CSS property.
L04855: completes the current CSS property value.
L04857: sets or begins the padding CSS property.
L04858: completes the current CSS property value.
L04860: sets or begins the border CSS property.
L04861: completes the current CSS property value.
L04863: sets or begins the border-radius CSS property.
L04864: completes the current CSS property value.
L04866: sets or begins the background CSS property.
L04867: completes the current CSS property value.
L04869: sets or begins the backdrop-filter CSS property.
L04870: completes the current CSS property value.
L04872: closes the current CSS declaration block.
L04875: selects elements and opens their CSS declaration block.
L04877: sets or begins the display CSS property.
L04878: completes the current CSS property value.
L04880: sets or begins the flex-direction CSS property.
L04881: completes the current CSS property value.
L04883: closes the current CSS declaration block.
L04886: selects elements and opens their CSS declaration block.
L04888: sets or begins the color CSS property.
L04889: completes the current CSS property value.
L04891: sets or begins the font-size CSS property.
L04892: completes the current CSS property value.
L04894: closes the current CSS declaration block.
L04897: selects elements and opens their CSS declaration block.
L04899: sets or begins the color CSS property.
L04900: completes the current CSS property value.
L04902: sets or begins the font-family CSS property.
L04903: completes the current CSS property value.
L04905: sets or begins the font-size CSS property.
L04906: completes the current CSS property value.
L04908: closes the current CSS declaration block.
L04911: selects elements and opens their CSS declaration block.
L04913: sets or begins the position CSS property.
L04914: completes the current CSS property value.
L04916: sets or begins the display CSS property.
L04917: completes the current CSS property value.
L04919: sets or begins the grid-template-columns CSS property.
L04920: continues a selector, function, animation step, or property value.
L04921: continues a selector, function, animation step, or property value.
L04922: completes the current CSS property value.
L04924: sets or begins the align-items CSS property.
L04925: completes the current CSS property value.
L04927: sets or begins the gap CSS property.
L04928: completes the current CSS property value.
L04930: sets or begins the margin-bottom CSS property.
L04931: completes the current CSS property value.
L04933: sets or begins the padding CSS property.
L04934: completes the current CSS property value.
L04936: sets or begins the border CSS property.
L04937: completes the current CSS property value.
L04939: sets or begins the border-radius CSS property.
L04940: completes the current CSS property value.
L04942: sets or begins the background CSS property.
L04943: continues a selector, function, animation step, or property value.
L04944: continues a grouped selector or multi-line CSS value.
L04945: continues a grouped selector or multi-line CSS value.
L04946: continues a selector, function, animation step, or property value.
L04947: completes the current CSS property value.
L04949: sets or begins the overflow CSS property.
L04950: completes the current CSS property value.
L04952: closes the current CSS declaration block.
L04955: selects elements and opens their CSS declaration block.
L04957: sets or begins the content CSS property.
L04958: completes the current CSS property value.
L04960: sets or begins the position CSS property.
L04961: completes the current CSS property value.
L04963: sets or begins the top CSS property.
L04964: completes the current CSS property value.
L04966: sets or begins the left CSS property.
L04967: completes the current CSS property value.
L04969: sets or begins the width CSS property.
L04970: completes the current CSS property value.
L04972: sets or begins the height CSS property.
L04973: completes the current CSS property value.
L04975: sets or begins the background CSS property.
L04976: continues a selector, function, animation step, or property value.
L04977: continues a grouped selector or multi-line CSS value.
L04978: continues a grouped selector or multi-line CSS value.
L04979: continues a grouped selector or multi-line CSS value.
L04980: continues a selector, function, animation step, or property value.
L04981: completes the current CSS property value.
L04983: sets or begins the animation CSS property.
L04984: continues a selector, function, animation step, or property value.
L04985: continues a selector, function, animation step, or property value.
L04986: continues a selector, function, animation step, or property value.
L04987: completes the current CSS property value.
L04989: closes the current CSS declaration block.
L04992: defines an animation timeline.
L04994: continues a grouped selector or multi-line CSS value.
L04995: selects elements and opens their CSS declaration block.
L04997: sets or begins the left CSS property.
L04998: completes the current CSS property value.
L05000: closes the current CSS declaration block.
L05002: selects elements and opens their CSS declaration block.
L05004: sets or begins the left CSS property.
L05005: completes the current CSS property value.
L05007: closes the current CSS declaration block.
L05009: closes the current CSS declaration block.
L05012: selects elements and opens their CSS declaration block.
L05014: sets or begins the padding CSS property.
L05015: completes the current CSS property value.
L05017: sets or begins the border-radius CSS property.
L05018: completes the current CSS property value.
L05020: sets or begins the color CSS property.
L05021: completes the current CSS property value.
L05023: sets or begins the background CSS property.
L05024: completes the current CSS property value.
L05026: sets or begins the font-family CSS property.
L05027: completes the current CSS property value.
L05029: sets or begins the font-size CSS property.
L05030: completes the current CSS property value.
L05032: sets or begins the font-weight CSS property.
L05033: completes the current CSS property value.
L05035: sets or begins the letter-spacing CSS property.
L05036: completes the current CSS property value.
L05038: sets or begins the text-transform CSS property.
L05039: completes the current CSS property value.
L05041: closes the current CSS declaration block.
L05044: selects elements and opens their CSS declaration block.
L05046: sets or begins the min-width CSS property.
L05047: completes the current CSS property value.
L05049: sets or begins the overflow CSS property.
L05050: completes the current CSS property value.
L05052: closes the current CSS declaration block.
L05055: selects elements and opens their CSS declaration block.
L05057: sets or begins the margin CSS property.
L05058: completes the current CSS property value.
L05060: sets or begins the color CSS property.
L05061: completes the current CSS property value.
L05063: sets or begins the font-size CSS property.
L05064: completes the current CSS property value.
L05066: sets or begins the white-space CSS property.
L05067: completes the current CSS property value.
L05069: sets or begins the overflow CSS property.
L05070: completes the current CSS property value.
L05072: sets or begins the text-overflow CSS property.
L05073: completes the current CSS property value.
L05075: closes the current CSS declaration block.
L05078: selects elements and opens their CSS declaration block.
L05080: sets or begins the color CSS property.
L05081: completes the current CSS property value.
L05083: sets or begins the font-family CSS property.
L05084: completes the current CSS property value.
L05086: sets or begins the font-size CSS property.
L05087: completes the current CSS property value.
L05089: sets or begins the font-weight CSS property.
L05090: completes the current CSS property value.
L05092: sets or begins the text-decoration CSS property.
L05093: completes the current CSS property value.
L05095: closes the current CSS declaration block.
L05098: selects elements and opens their CSS declaration block.
L05100: sets or begins the display CSS property.
L05101: completes the current CSS property value.
L05103: sets or begins the gap CSS property.
L05104: completes the current CSS property value.
L05106: sets or begins the width CSS property.
L05107: completes the current CSS property value.
L05109: sets or begins the max-width CSS property.
L05110: completes the current CSS property value.
L05112: sets or begins the margin-bottom CSS property.
L05113: completes the current CSS property value.
L05115: sets or begins the padding CSS property.
L05116: completes the current CSS property value.
L05118: sets or begins the border CSS property.
L05119: completes the current CSS property value.
L05121: sets or begins the border-radius CSS property.
L05122: completes the current CSS property value.
L05124: sets or begins the background CSS property.
L05125: completes the current CSS property value.
L05127: sets or begins the overflow-x CSS property.
L05128: completes the current CSS property value.
L05130: sets or begins the scrollbar-width CSS property.
L05131: completes the current CSS property value.
L05133: closes the current CSS declaration block.
L05136: selects elements and opens their CSS declaration block.
L05138: sets or begins the display CSS property.
L05139: completes the current CSS property value.
L05141: closes the current CSS declaration block.
L05144: selects elements and opens their CSS declaration block.
L05146: sets or begins the min-height CSS property.
L05147: completes the current CSS property value.
L05149: sets or begins the padding CSS property.
L05150: completes the current CSS property value.
L05152: sets or begins the border CSS property.
L05153: completes the current CSS property value.
L05155: sets or begins the border-radius CSS property.
L05156: completes the current CSS property value.
L05158: sets or begins the color CSS property.
L05159: completes the current CSS property value.
L05161: sets or begins the background CSS property.
L05162: completes the current CSS property value.
L05164: sets or begins the font-family CSS property.
L05165: completes the current CSS property value.
L05167: sets or begins the font-size CSS property.
L05168: completes the current CSS property value.
L05170: sets or begins the font-weight CSS property.
L05171: completes the current CSS property value.
L05173: sets or begins the white-space CSS property.
L05174: completes the current CSS property value.
L05176: sets or begins the cursor CSS property.
L05177: completes the current CSS property value.
L05179: sets or begins the transition CSS property.
L05180: continues a grouped selector or multi-line CSS value.
L05181: continues a grouped selector or multi-line CSS value.
L05182: completes the current CSS property value.
L05184: closes the current CSS declaration block.
L05187: selects elements and opens their CSS declaration block.
L05189: sets or begins the color CSS property.
L05190: completes the current CSS property value.
L05192: sets or begins the background CSS property.
L05193: completes the current CSS property value.
L05195: closes the current CSS declaration block.
L05198: selects elements and opens their CSS declaration block.
L05200: sets or begins the color CSS property.
L05201: completes the current CSS property value.
L05203: sets or begins the background CSS property.
L05204: continues a selector, function, animation step, or property value.
L05205: continues a grouped selector or multi-line CSS value.
L05206: continues a grouped selector or multi-line CSS value.
L05207: continues a selector, function, animation step, or property value.
L05208: completes the current CSS property value.
L05210: sets or begins the box-shadow CSS property.
L05211: completes the current CSS property value.
L05213: closes the current CSS declaration block.
L05216: selects elements and opens their CSS declaration block.
L05218: sets or begins the animation CSS property.
L05219: continues a selector, function, animation step, or property value.
L05220: continues a selector, function, animation step, or property value.
L05221: completes the current CSS property value.
L05223: closes the current CSS declaration block.
L05226: defines an animation timeline.
L05228: selects elements and opens their CSS declaration block.
L05230: sets or begins the opacity CSS property.
L05231: completes the current CSS property value.
L05233: sets or begins the transform CSS property.
L05234: completes the current CSS property value.
L05236: closes the current CSS declaration block.
L05238: selects elements and opens their CSS declaration block.
L05240: sets or begins the opacity CSS property.
L05241: completes the current CSS property value.
L05243: sets or begins the transform CSS property.
L05244: completes the current CSS property value.
L05246: closes the current CSS declaration block.
L05248: closes the current CSS declaration block.
L05251: selects elements and opens their CSS declaration block.
L05253: sets or begins the margin-bottom CSS property.
L05254: completes the current CSS property value.
L05256: closes the current CSS declaration block.
L05259: selects elements and opens their CSS declaration block.
L05261: sets or begins the position CSS property.
L05262: completes the current CSS property value.
L05264: sets or begins the min-height CSS property.
L05265: completes the current CSS property value.
L05267: sets or begins the display CSS property.
L05268: completes the current CSS property value.
L05270: sets or begins the grid-template-columns CSS property.
L05271: continues a selector, function, animation step, or property value.
L05272: completes the current CSS property value.
L05274: sets or begins the align-items CSS property.
L05275: completes the current CSS property value.
L05277: sets or begins the gap CSS property.
L05278: completes the current CSS property value.
L05280: sets or begins the padding CSS property.
L05281: completes the current CSS property value.
L05283: sets or begins the border CSS property.
L05284: completes the current CSS property value.
L05286: sets or begins the border-radius CSS property.
L05287: completes the current CSS property value.
L05289: sets or begins the background CSS property.
L05290: continues a selector, function, animation step, or property value.
L05291: continues a grouped selector or multi-line CSS value.
L05292: continues a grouped selector or multi-line CSS value.
L05293: continues a selector, function, animation step, or property value.
L05294: continues a grouped selector or multi-line CSS value.
L05295: continues a selector, function, animation step, or property value.
L05296: continues a grouped selector or multi-line CSS value.
L05297: continues a grouped selector or multi-line CSS value.
L05298: continues a selector, function, animation step, or property value.
L05299: completes the current CSS property value.
L05301: sets or begins the box-shadow CSS property.
L05302: completes the current CSS property value.
L05304: sets or begins the backdrop-filter CSS property.
L05305: completes the current CSS property value.
L05307: sets or begins the overflow CSS property.
L05308: completes the current CSS property value.
L05310: closes the current CSS declaration block.
L05313: selects elements and opens their CSS declaration block.
L05315: sets or begins the content CSS property.
L05316: completes the current CSS property value.
L05318: sets or begins the position CSS property.
L05319: completes the current CSS property value.
L05321: sets or begins the inset CSS property.
L05322: completes the current CSS property value.
L05324: sets or begins the border-radius CSS property.
L05325: completes the current CSS property value.
L05327: sets or begins the box-shadow CSS property.
L05328: continues a grouped selector or multi-line CSS value.
L05329: completes the current CSS property value.
L05331: sets or begins the pointer-events CSS property.
L05332: completes the current CSS property value.
L05334: sets or begins the animation CSS property.
L05335: continues a selector, function, animation step, or property value.
L05336: continues a selector, function, animation step, or property value.
L05337: continues a selector, function, animation step, or property value.
L05338: continues a selector, function, animation step, or property value.
L05339: completes the current CSS property value.
L05341: closes the current CSS declaration block.
L05344: defines an animation timeline.
L05346: selects elements and opens their CSS declaration block.
L05348: sets or begins the opacity CSS property.
L05349: completes the current CSS property value.
L05351: closes the current CSS declaration block.
L05353: selects elements and opens their CSS declaration block.
L05355: sets or begins the opacity CSS property.
L05356: completes the current CSS property value.
L05358: closes the current CSS declaration block.
L05360: closes the current CSS declaration block.
L05363: selects elements and opens their CSS declaration block.
L05365: sets or begins the position CSS property.
L05366: completes the current CSS property value.
L05368: sets or begins the z-index CSS property.
L05369: completes the current CSS property value.
L05371: closes the current CSS declaration block.
L05374: selects elements and opens their CSS declaration block.
L05376: sets or begins the display CSS property.
L05377: completes the current CSS property value.
L05379: sets or begins the align-items CSS property.
L05380: completes the current CSS property value.
L05382: sets or begins the gap CSS property.
L05383: completes the current CSS property value.
L05385: sets or begins the margin-bottom CSS property.
L05386: completes the current CSS property value.
L05388: sets or begins the padding CSS property.
L05389: completes the current CSS property value.
L05391: sets or begins the border CSS property.
L05392: completes the current CSS property value.
L05394: sets or begins the border-radius CSS property.
L05395: completes the current CSS property value.
L05397: sets or begins the color CSS property.
L05398: completes the current CSS property value.
L05400: sets or begins the background CSS property.
L05401: completes the current CSS property value.
L05403: sets or begins the font-family CSS property.
L05404: completes the current CSS property value.
L05406: sets or begins the font-size CSS property.
L05407: completes the current CSS property value.
L05409: sets or begins the font-weight CSS property.
L05410: completes the current CSS property value.
L05412: sets or begins the letter-spacing CSS property.
L05413: completes the current CSS property value.
L05415: sets or begins the text-transform CSS property.
L05416: completes the current CSS property value.
L05418: closes the current CSS declaration block.
L05421: selects elements and opens their CSS declaration block.
L05423: sets or begins the max-width CSS property.
L05424: completes the current CSS property value.
L05426: sets or begins the margin-bottom CSS property.
L05427: completes the current CSS property value.
L05429: sets or begins the color CSS property.
L05430: completes the current CSS property value.
L05432: sets or begins the font-size CSS property.
L05433: completes the current CSS property value.
L05435: closes the current CSS declaration block.
L05438: selects elements and opens their CSS declaration block.
L05440: sets or begins the max-width CSS property.
L05441: completes the current CSS property value.
L05443: sets or begins the margin-bottom CSS property.
L05444: completes the current CSS property value.
L05446: sets or begins the color CSS property.
L05447: completes the current CSS property value.
L05449: sets or begins the font-size CSS property.
L05450: completes the current CSS property value.
L05452: closes the current CSS declaration block.
L05455: selects elements and opens their CSS declaration block.
L05457: sets or begins the position CSS property.
L05458: completes the current CSS property value.
L05460: sets or begins the z-index CSS property.
L05461: completes the current CSS property value.
L05463: sets or begins the display CSS property.
L05464: completes the current CSS property value.
L05466: sets or begins the flex-direction CSS property.
L05467: completes the current CSS property value.
L05469: sets or begins the align-items CSS property.
L05470: completes the current CSS property value.
L05472: sets or begins the gap CSS property.
L05473: completes the current CSS property value.
L05475: sets or begins the padding CSS property.
L05476: completes the current CSS property value.
L05478: sets or begins the border CSS property.
L05479: completes the current CSS property value.
L05481: sets or begins the border-radius CSS property.
L05482: completes the current CSS property value.
L05484: sets or begins the background CSS property.
L05485: completes the current CSS property value.
L05487: closes the current CSS declaration block.
L05490: selects elements and opens their CSS declaration block.
L05492: sets or begins the display CSS property.
L05493: completes the current CSS property value.
L05495: sets or begins the align-items CSS property.
L05496: completes the current CSS property value.
L05498: sets or begins the gap CSS property.
L05499: completes the current CSS property value.
L05501: sets or begins the color CSS property.
L05502: completes the current CSS property value.
L05504: sets or begins the font-size CSS property.
L05505: completes the current CSS property value.
L05507: closes the current CSS declaration block.
L05510: selects elements and opens their CSS declaration block.
L05512: sets or begins the color CSS property.
L05513: completes the current CSS property value.
L05515: closes the current CSS declaration block.
L05518: selects elements and opens their CSS declaration block.
L05520: sets or begins the margin-top CSS property.
L05521: completes the current CSS property value.
L05523: closes the current CSS declaration block.
L05526: selects elements and opens their CSS declaration block.
L05528: sets or begins the display CSS property.
L05529: completes the current CSS property value.
L05531: sets or begins the grid-template-columns CSS property.
L05532: completes the current CSS property value.
L05534: sets or begins the gap CSS property.
L05535: completes the current CSS property value.
L05537: closes the current CSS declaration block.
L05540: selects elements and opens their CSS declaration block.
L05542: sets or begins the display CSS property.
L05543: completes the current CSS property value.
L05545: sets or begins the flex-direction CSS property.
L05546: completes the current CSS property value.
L05548: sets or begins the min-height CSS property.
L05549: completes the current CSS property value.
L05551: sets or begins the padding CSS property.
L05552: completes the current CSS property value.
L05554: sets or begins the border CSS property.
L05555: completes the current CSS property value.
L05557: sets or begins the border-radius CSS property.
L05558: completes the current CSS property value.
L05560: sets or begins the background CSS property.
L05561: completes the current CSS property value.
L05563: sets or begins the transition CSS property.
L05564: continues a grouped selector or multi-line CSS value.
L05565: continues a grouped selector or multi-line CSS value.
L05566: continues a grouped selector or multi-line CSS value.
L05567: completes the current CSS property value.
L05569: closes the current CSS declaration block.
L05572: selects elements and opens their CSS declaration block.
L05574: sets or begins the transform CSS property.
L05575: completes the current CSS property value.
L05577: sets or begins the border-color CSS property.
L05578: completes the current CSS property value.
L05580: sets or begins the background CSS property.
L05581: completes the current CSS property value.
L05583: sets or begins the box-shadow CSS property.
L05584: completes the current CSS property value.
L05586: closes the current CSS declaration block.
L05589: selects elements and opens their CSS declaration block.
L05591: sets or begins the display CSS property.
L05592: completes the current CSS property value.
L05594: sets or begins the align-items CSS property.
L05595: completes the current CSS property value.
L05597: sets or begins the justify-content CSS property.
L05598: completes the current CSS property value.
L05600: sets or begins the gap CSS property.
L05601: completes the current CSS property value.
L05603: sets or begins the margin-bottom CSS property.
L05604: completes the current CSS property value.
L05606: closes the current CSS declaration block.
L05609: selects elements and opens their CSS declaration block.
L05611: sets or begins the padding CSS property.
L05612: completes the current CSS property value.
L05614: sets or begins the border-radius CSS property.
L05615: completes the current CSS property value.
L05617: sets or begins the color CSS property.
L05618: completes the current CSS property value.
L05620: sets or begins the background CSS property.
L05621: completes the current CSS property value.
L05623: sets or begins the font-family CSS property.
L05624: completes the current CSS property value.
L05626: sets or begins the font-size CSS property.
L05627: completes the current CSS property value.
L05629: sets or begins the font-weight CSS property.
L05630: completes the current CSS property value.
L05632: sets or begins the letter-spacing CSS property.
L05633: completes the current CSS property value.
L05635: sets or begins the text-transform CSS property.
L05636: completes the current CSS property value.
L05638: closes the current CSS declaration block.
L05641: selects elements and opens their CSS declaration block.
L05643: sets or begins the color CSS property.
L05644: completes the current CSS property value.
L05646: sets or begins the font-size CSS property.
L05647: completes the current CSS property value.
L05649: closes the current CSS declaration block.
L05652: selects elements and opens their CSS declaration block.
L05654: sets or begins the margin-bottom CSS property.
L05655: completes the current CSS property value.
L05657: sets or begins the color CSS property.
L05658: completes the current CSS property value.
L05660: sets or begins the font-size CSS property.
L05661: completes the current CSS property value.
L05663: closes the current CSS declaration block.
L05666: selects elements and opens their CSS declaration block.
L05668: sets or begins the margin-bottom CSS property.
L05669: completes the current CSS property value.
L05671: sets or begins the color CSS property.
L05672: completes the current CSS property value.
L05674: sets or begins the font-size CSS property.
L05675: completes the current CSS property value.
L05677: closes the current CSS declaration block.
L05680: selects elements and opens their CSS declaration block.
L05682: sets or begins the margin-top CSS property.
L05683: completes the current CSS property value.
L05685: sets or begins the color CSS property.
L05686: completes the current CSS property value.
L05688: closes the current CSS declaration block.
L05691: continues a grouped selector or multi-line CSS value.
L05692: selects elements and opens their CSS declaration block.
L05694: sets or begins the display CSS property.
L05695: completes the current CSS property value.
L05697: sets or begins the align-items CSS property.
L05698: completes the current CSS property value.
L05700: sets or begins the justify-content CSS property.
L05701: completes the current CSS property value.
L05703: sets or begins the gap CSS property.
L05704: completes the current CSS property value.
L05706: sets or begins the margin-bottom CSS property.
L05707: completes the current CSS property value.
L05709: closes the current CSS declaration block.
L05712: continues a grouped selector or multi-line CSS value.
L05713: selects elements and opens their CSS declaration block.
L05715: sets or begins the margin-bottom CSS property.
L05716: completes the current CSS property value.
L05718: closes the current CSS declaration block.
L05721: selects elements and opens their CSS declaration block.
L05723: sets or begins the display CSS property.
L05724: completes the current CSS property value.
L05726: sets or begins the gap CSS property.
L05727: completes the current CSS property value.
L05729: closes the current CSS declaration block.
L05732: selects elements and opens their CSS declaration block.
L05734: sets or begins the display CSS property.
L05735: completes the current CSS property value.
L05737: sets or begins the grid-template-columns CSS property.
L05738: continues a selector, function, animation step, or property value.
L05739: continues a selector, function, animation step, or property value.
L05740: continues a selector, function, animation step, or property value.
L05741: completes the current CSS property value.
L05743: sets or begins the align-items CSS property.
L05744: completes the current CSS property value.
L05746: sets or begins the gap CSS property.
L05747: completes the current CSS property value.
L05749: sets or begins the min-height CSS property.
L05750: completes the current CSS property value.
L05752: sets or begins the padding CSS property.
L05753: completes the current CSS property value.
L05755: sets or begins the border CSS property.
L05756: completes the current CSS property value.
L05758: sets or begins the border-radius CSS property.
L05759: completes the current CSS property value.
L05761: sets or begins the background CSS property.
L05762: completes the current CSS property value.
L05764: sets or begins the transition CSS property.
L05765: continues a grouped selector or multi-line CSS value.
L05766: continues a grouped selector or multi-line CSS value.
L05767: completes the current CSS property value.
L05769: closes the current CSS declaration block.
L05772: selects elements and opens their CSS declaration block.
L05774: sets or begins the transform CSS property.
L05775: completes the current CSS property value.
L05777: sets or begins the border-color CSS property.
L05778: completes the current CSS property value.
L05780: sets or begins the background CSS property.
L05781: completes the current CSS property value.
L05783: closes the current CSS declaration block.
L05786: selects elements and opens their CSS declaration block.
L05788: sets or begins the display CSS property.
L05789: completes the current CSS property value.
L05791: sets or begins the align-items CSS property.
L05792: completes the current CSS property value.
L05794: sets or begins the gap CSS property.
L05795: completes the current CSS property value.
L05797: sets or begins the color CSS property.
L05798: completes the current CSS property value.
L05800: sets or begins the font-family CSS property.
L05801: completes the current CSS property value.
L05803: sets or begins the font-size CSS property.
L05804: completes the current CSS property value.
L05806: sets or begins the font-weight CSS property.
L05807: completes the current CSS property value.
L05809: sets or begins the letter-spacing CSS property.
L05810: completes the current CSS property value.
L05812: sets or begins the text-transform CSS property.
L05813: completes the current CSS property value.
L05815: closes the current CSS declaration block.
L05818: selects elements and opens their CSS declaration block.
L05820: sets or begins the color CSS property.
L05821: completes the current CSS property value.
L05823: sets or begins the font-family CSS property.
L05824: completes the current CSS property value.
L05826: sets or begins the font-size CSS property.
L05827: completes the current CSS property value.
L05829: sets or begins the font-weight CSS property.
L05830: completes the current CSS property value.
L05832: closes the current CSS declaration block.
L05835: selects elements and opens their CSS declaration block.
L05837: sets or begins the display CSS property.
L05838: completes the current CSS property value.
L05840: sets or begins the color CSS property.
L05841: completes the current CSS property value.
L05843: sets or begins the font-family CSS property.
L05844: completes the current CSS property value.
L05846: sets or begins the font-size CSS property.
L05847: completes the current CSS property value.
L05849: closes the current CSS declaration block.
L05852: selects elements and opens their CSS declaration block.
L05854: sets or begins the color CSS property.
L05855: completes the current CSS property value.
L05857: closes the current CSS declaration block.
L05860: selects elements and opens their CSS declaration block.
L05862: sets or begins the padding CSS property.
L05863: completes the current CSS property value.
L05865: sets or begins the border-radius CSS property.
L05866: completes the current CSS property value.
L05868: sets or begins the color CSS property.
L05869: completes the current CSS property value.
L05871: sets or begins the background CSS property.
L05872: completes the current CSS property value.
L05874: sets or begins the font-size CSS property.
L05875: completes the current CSS property value.
L05877: sets or begins the white-space CSS property.
L05878: completes the current CSS property value.
L05880: closes the current CSS declaration block.
L05883: selects elements and opens their CSS declaration block.
L05885: sets or begins the align-items CSS property.
L05886: completes the current CSS property value.
L05888: closes the current CSS declaration block.
L05891: selects elements and opens their CSS declaration block.
L05893: sets or begins the display CSS property.
L05894: completes the current CSS property value.
L05896: sets or begins the align-items CSS property.
L05897: completes the current CSS property value.
L05899: sets or begins the gap CSS property.
L05900: completes the current CSS property value.
L05902: sets or begins the padding CSS property.
L05903: completes the current CSS property value.
L05905: sets or begins the border CSS property.
L05906: completes the current CSS property value.
L05908: sets or begins the border-radius CSS property.
L05909: completes the current CSS property value.
L05911: sets or begins the background CSS property.
L05912: completes the current CSS property value.
L05914: closes the current CSS declaration block.
L05917: selects elements and opens their CSS declaration block.
L05919: sets or begins the margin-inline CSS property.
L05920: completes the current CSS property value.
L05922: sets or begins the color CSS property.
L05923: completes the current CSS property value.
L05925: closes the current CSS declaration block.
L05928: selects elements and opens their CSS declaration block.
L05930: sets or begins the padding CSS property.
L05931: completes the current CSS property value.
L05933: sets or begins the border CSS property.
L05934: completes the current CSS property value.
L05936: sets or begins the border-radius CSS property.
L05937: completes the current CSS property value.
L05939: sets or begins the color CSS property.
L05940: completes the current CSS property value.
L05942: sets or begins the background CSS property.
L05943: completes the current CSS property value.
L05945: sets or begins the font-family CSS property.
L05946: completes the current CSS property value.
L05948: sets or begins the font-size CSS property.
L05949: completes the current CSS property value.
L05951: sets or begins the font-weight CSS property.
L05952: completes the current CSS property value.
L05954: sets or begins the cursor CSS property.
L05955: completes the current CSS property value.
L05957: closes the current CSS declaration block.
L05960: continues a grouped selector or multi-line CSS value.
L05961: selects elements and opens their CSS declaration block.
L05963: sets or begins the color CSS property.
L05964: completes the current CSS property value.
L05966: sets or begins the background CSS property.
L05967: completes the current CSS property value.
L05969: closes the current CSS declaration block.
L05972: selects elements and opens their CSS declaration block.
L05974: sets or begins the display CSS property.
L05975: completes the current CSS property value.
L05977: sets or begins the grid-template-columns CSS property.
L05978: completes the current CSS property value.
L05980: sets or begins the gap CSS property.
L05981: completes the current CSS property value.
L05983: closes the current CSS declaration block.
L05986: selects elements and opens their CSS declaration block.
L05988: sets or begins the position CSS property.
L05989: completes the current CSS property value.
L05991: sets or begins the display CSS property.
L05992: completes the current CSS property value.
L05994: sets or begins the flex-direction CSS property.
L05995: completes the current CSS property value.
L05997: sets or begins the min-height CSS property.
L05998: completes the current CSS property value.
L06000: sets or begins the padding CSS property.
L06001: completes the current CSS property value.
L06003: sets or begins the border CSS property.
L06004: completes the current CSS property value.
L06006: sets or begins the border-radius CSS property.
L06007: completes the current CSS property value.
L06009: sets or begins the background CSS property.
L06010: completes the current CSS property value.
L06012: sets or begins the overflow CSS property.
L06013: completes the current CSS property value.
L06015: sets or begins the transition CSS property.
L06016: continues a grouped selector or multi-line CSS value.
L06017: continues a grouped selector or multi-line CSS value.
L06018: completes the current CSS property value.
L06020: closes the current CSS declaration block.
L06023: selects elements and opens their CSS declaration block.
L06025: sets or begins the content CSS property.
L06026: completes the current CSS property value.
L06028: sets or begins the position CSS property.
L06029: completes the current CSS property value.
L06031: sets or begins the top CSS property.
L06032: completes the current CSS property value.
L06034: sets or begins the right CSS property.
L06035: completes the current CSS property value.
L06037: sets or begins the width CSS property.
L06038: completes the current CSS property value.
L06040: sets or begins the height CSS property.
L06041: completes the current CSS property value.
L06043: sets or begins the border-radius CSS property.
L06044: completes the current CSS property value.
L06046: sets or begins the background CSS property.
L06047: continues a selector, function, animation step, or property value.
L06048: continues a grouped selector or multi-line CSS value.
L06049: continues a grouped selector or multi-line CSS value.
L06050: continues a selector, function, animation step, or property value.
L06051: completes the current CSS property value.
L06053: closes the current CSS declaration block.
L06056: selects elements and opens their CSS declaration block.
L06058: sets or begins the transform CSS property.
L06059: completes the current CSS property value.
L06061: sets or begins the border-color CSS property.
L06062: completes the current CSS property value.
L06064: sets or begins the background CSS property.
L06065: completes the current CSS property value.
L06067: closes the current CSS declaration block.
L06070: selects elements and opens their CSS declaration block.
L06072: sets or begins the width CSS property.
L06073: completes the current CSS property value.
L06075: sets or begins the min-width CSS property.
L06076: completes the current CSS property value.
L06078: sets or begins the margin-bottom CSS property.
L06079: completes the current CSS property value.
L06081: sets or begins the padding CSS property.
L06082: completes the current CSS property value.
L06084: sets or begins the border-radius CSS property.
L06085: completes the current CSS property value.
L06087: sets or begins the color CSS property.
L06088: completes the current CSS property value.
L06090: sets or begins the background CSS property.
L06091: continues a selector, function, animation step, or property value.
L06092: continues a grouped selector or multi-line CSS value.
L06093: continues a grouped selector or multi-line CSS value.
L06094: continues a selector, function, animation step, or property value.
L06095: completes the current CSS property value.
L06097: sets or begins the text-align CSS property.
L06098: completes the current CSS property value.
L06100: sets or begins the box-shadow CSS property.
L06101: completes the current CSS property value.
L06103: closes the current CSS declaration block.
L06106: continues a grouped selector or multi-line CSS value.
L06107: selects elements and opens their CSS declaration block.
L06109: sets or begins the display CSS property.
L06110: completes the current CSS property value.
L06112: sets or begins the font-family CSS property.
L06113: completes the current CSS property value.
L06115: closes the current CSS declaration block.
L06118: selects elements and opens their CSS declaration block.
L06120: sets or begins the font-size CSS property.
L06121: completes the current CSS property value.
L06123: sets or begins the line-height CSS property.
L06124: completes the current CSS property value.
L06126: closes the current CSS declaration block.
L06129: selects elements and opens their CSS declaration block.
L06131: sets or begins the margin-top CSS property.
L06132: completes the current CSS property value.
L06134: sets or begins the font-size CSS property.
L06135: completes the current CSS property value.
L06137: sets or begins the font-weight CSS property.
L06138: completes the current CSS property value.
L06140: sets or begins the letter-spacing CSS property.
L06141: completes the current CSS property value.
L06143: sets or begins the text-transform CSS property.
L06144: completes the current CSS property value.
L06146: closes the current CSS declaration block.
L06149: selects elements and opens their CSS declaration block.
L06151: sets or begins the position CSS property.
L06152: completes the current CSS property value.
L06154: sets or begins the top CSS property.
L06155: completes the current CSS property value.
L06157: sets or begins the right CSS property.
L06158: completes the current CSS property value.
L06160: sets or begins the padding CSS property.
L06161: completes the current CSS property value.
L06163: sets or begins the border-radius CSS property.
L06164: completes the current CSS property value.
L06166: sets or begins the color CSS property.
L06167: completes the current CSS property value.
L06169: sets or begins the background CSS property.
L06170: completes the current CSS property value.
L06172: sets or begins the font-size CSS property.
L06173: completes the current CSS property value.
L06175: sets or begins the font-weight CSS property.
L06176: completes the current CSS property value.
L06178: sets or begins the text-transform CSS property.
L06179: completes the current CSS property value.
L06181: closes the current CSS declaration block.
L06184: selects elements and opens their CSS declaration block.
L06186: sets or begins the margin-bottom CSS property.
L06187: completes the current CSS property value.
L06189: sets or begins the color CSS property.
L06190: completes the current CSS property value.
L06192: sets or begins the font-size CSS property.
L06193: completes the current CSS property value.
L06195: closes the current CSS declaration block.
L06198: selects elements and opens their CSS declaration block.
L06200: sets or begins the color CSS property.
L06201: completes the current CSS property value.
L06203: sets or begins the font-size CSS property.
L06204: completes the current CSS property value.
L06206: closes the current CSS declaration block.
L06209: selects elements and opens their CSS declaration block.
L06211: sets or begins the display CSS property.
L06212: completes the current CSS property value.
L06214: sets or begins the gap CSS property.
L06215: completes the current CSS property value.
L06217: sets or begins the margin CSS property.
L06218: completes the current CSS property value.
L06220: closes the current CSS declaration block.
L06223: selects elements and opens their CSS declaration block.
L06225: sets or begins the display CSS property.
L06226: completes the current CSS property value.
L06228: sets or begins the align-items CSS property.
L06229: completes the current CSS property value.
L06231: sets or begins the gap CSS property.
L06232: completes the current CSS property value.
L06234: sets or begins the color CSS property.
L06235: completes the current CSS property value.
L06237: sets or begins the font-size CSS property.
L06238: completes the current CSS property value.
L06240: closes the current CSS declaration block.
L06243: selects elements and opens their CSS declaration block.
L06245: sets or begins the color CSS property.
L06246: completes the current CSS property value.
L06248: closes the current CSS declaration block.
L06251: selects elements and opens their CSS declaration block.
L06253: sets or begins the display CSS property.
L06254: completes the current CSS property value.
L06256: sets or begins the flex-wrap CSS property.
L06257: completes the current CSS property value.
L06259: sets or begins the gap CSS property.
L06260: completes the current CSS property value.
L06262: closes the current CSS declaration block.
L06265: selects elements and opens their CSS declaration block.
L06267: sets or begins the flex CSS property.
L06268: completes the current CSS property value.
L06270: sets or begins the min-height CSS property.
L06271: completes the current CSS property value.
L06273: sets or begins the padding CSS property.
L06274: completes the current CSS property value.
L06276: sets or begins the border CSS property.
L06277: completes the current CSS property value.
L06279: sets or begins the border-radius CSS property.
L06280: completes the current CSS property value.
L06282: sets or begins the color CSS property.
L06283: completes the current CSS property value.
L06285: sets or begins the background CSS property.
L06286: completes the current CSS property value.
L06288: sets or begins the font-family CSS property.
L06289: completes the current CSS property value.
L06291: sets or begins the font-size CSS property.
L06292: completes the current CSS property value.
L06294: sets or begins the font-weight CSS property.
L06295: completes the current CSS property value.
L06297: sets or begins the cursor CSS property.
L06298: completes the current CSS property value.
L06300: closes the current CSS declaration block.
L06303: selects elements and opens their CSS declaration block.
L06305: sets or begins the color CSS property.
L06306: completes the current CSS property value.
L06308: sets or begins the background CSS property.
L06309: completes the current CSS property value.
L06311: closes the current CSS declaration block.
L06314: selects elements and opens their CSS declaration block.
L06316: sets or begins the display CSS property.
L06317: completes the current CSS property value.
L06319: sets or begins the align-items CSS property.
L06320: completes the current CSS property value.
L06322: sets or begins the justify-content CSS property.
L06323: completes the current CSS property value.
L06325: sets or begins the gap CSS property.
L06326: completes the current CSS property value.
L06328: sets or begins the margin-top CSS property.
L06329: completes the current CSS property value.
L06331: sets or begins the padding CSS property.
L06332: completes the current CSS property value.
L06334: sets or begins the border CSS property.
L06335: completes the current CSS property value.
L06337: sets or begins the border-radius CSS property.
L06338: completes the current CSS property value.
L06340: sets or begins the background CSS property.
L06341: completes the current CSS property value.
L06343: closes the current CSS declaration block.
L06346: selects elements and opens their CSS declaration block.
L06348: sets or begins the display CSS property.
L06349: completes the current CSS property value.
L06351: sets or begins the flex-direction CSS property.
L06352: completes the current CSS property value.
L06354: closes the current CSS declaration block.
L06357: selects elements and opens their CSS declaration block.
L06359: sets or begins the color CSS property.
L06360: completes the current CSS property value.
L06362: sets or begins the font-family CSS property.
L06363: completes the current CSS property value.
L06365: closes the current CSS declaration block.
L06368: selects elements and opens their CSS declaration block.
L06370: sets or begins the color CSS property.
L06371: completes the current CSS property value.
L06373: sets or begins the font-size CSS property.
L06374: completes the current CSS property value.
L06376: closes the current CSS declaration block.
L06379: continues CSS documentation for maintainers.
L06380: continues a selector, function, animation step, or property value.
L06381: continues CSS documentation for maintainers.
L06383: selects elements and opens their CSS declaration block.
L06385: sets or begins the background CSS property.
L06386: continues a selector, function, animation step, or property value.
L06387: continues a grouped selector or multi-line CSS value.
L06388: continues a grouped selector or multi-line CSS value.
L06389: continues a selector, function, animation step, or property value.
L06390: continues a grouped selector or multi-line CSS value.
L06391: continues a selector, function, animation step, or property value.
L06392: continues a grouped selector or multi-line CSS value.
L06393: continues a grouped selector or multi-line CSS value.
L06394: continues a selector, function, animation step, or property value.
L06395: completes the current CSS property value.
L06397: sets or begins the overflow CSS property.
L06398: completes the current CSS property value.
L06400: closes the current CSS declaration block.
L06403: selects elements and opens their CSS declaration block.
L06405: sets or begins the justify-self CSS property.
L06406: completes the current CSS property value.
L06408: sets or begins the display CSS property.
L06409: completes the current CSS property value.
L06411: sets or begins the gap CSS property.
L06412: completes the current CSS property value.
L06414: closes the current CSS declaration block.
L06417: selects elements and opens their CSS declaration block.
L06419: sets or begins the display CSS property.
L06420: completes the current CSS property value.
L06422: sets or begins the place-items CSS property.
L06423: completes the current CSS property value.
L06425: sets or begins the width CSS property.
L06426: completes the current CSS property value.
L06428: sets or begins the height CSS property.
L06429: completes the current CSS property value.
L06431: sets or begins the border CSS property.
L06432: completes the current CSS property value.
L06434: sets or begins the border-radius CSS property.
L06435: completes the current CSS property value.
L06437: sets or begins the color CSS property.
L06438: completes the current CSS property value.
L06440: sets or begins the background CSS property.
L06441: completes the current CSS property value.
L06443: sets or begins the box-shadow CSS property.
L06444: completes the current CSS property value.
L06446: sets or begins the cursor CSS property.
L06447: completes the current CSS property value.
L06449: sets or begins the transition CSS property.
L06450: continues a grouped selector or multi-line CSS value.
L06451: continues a grouped selector or multi-line CSS value.
L06452: completes the current CSS property value.
L06454: closes the current CSS declaration block.
L06457: selects elements and opens their CSS declaration block.
L06459: sets or begins the transform CSS property.
L06460: completes the current CSS property value.
L06462: sets or begins the background CSS property.
L06463: completes the current CSS property value.
L06465: sets or begins the box-shadow CSS property.
L06466: completes the current CSS property value.
L06468: closes the current CSS declaration block.
L06471: selects elements and opens their CSS declaration block.
L06473: sets or begins the display CSS property.
L06474: completes the current CSS property value.
L06476: closes the current CSS declaration block.
L06479: selects elements and opens their CSS declaration block.
L06481: sets or begins the display CSS property.
L06482: completes the current CSS property value.
L06484: closes the current CSS declaration block.
L06487: selects elements and opens their CSS declaration block.
L06489: sets or begins the display CSS property.
L06490: completes the current CSS property value.
L06492: closes the current CSS declaration block.
L06495: selects elements and opens their CSS declaration block.
L06497: sets or begins the position CSS property.
L06498: completes the current CSS property value.
L06500: sets or begins the width CSS property.
L06501: completes the current CSS property value.
L06503: sets or begins the overflow CSS property.
L06504: completes the current CSS property value.
L06506: sets or begins the mask-image CSS property.
L06507: continues a selector, function, animation step, or property value.
L06508: continues a grouped selector or multi-line CSS value.
L06509: continues a grouped selector or multi-line CSS value.
L06510: continues a grouped selector or multi-line CSS value.
L06511: continues a grouped selector or multi-line CSS value.
L06512: continues a selector, function, animation step, or property value.
L06513: completes the current CSS property value.
L06515: closes the current CSS declaration block.
L06518: selects elements and opens their CSS declaration block.
L06520: sets or begins the display CSS property.
L06521: completes the current CSS property value.
L06523: sets or begins the gap CSS property.
L06524: completes the current CSS property value.
L06526: sets or begins the width CSS property.
L06527: completes the current CSS property value.
L06529: sets or begins the animation CSS property.
L06530: continues a selector, function, animation step, or property value.
L06531: continues a selector, function, animation step, or property value.
L06532: continues a selector, function, animation step, or property value.
L06533: completes the current CSS property value.
L06535: sets or begins the will-change CSS property.
L06536: completes the current CSS property value.
L06538: closes the current CSS declaration block.
L06541: continues a grouped selector or multi-line CSS value.
L06542: continues a grouped selector or multi-line CSS value.
L06543: selects elements and opens their CSS declaration block.
L06545: sets or begins the animation-play-state CSS property.
L06546: completes the current CSS property value.
L06548: closes the current CSS declaration block.
L06551: defines an animation timeline.
L06553: selects elements and opens their CSS declaration block.
L06555: sets or begins the transform CSS property.
L06556: completes the current CSS property value.
L06558: closes the current CSS declaration block.
L06560: selects elements and opens their CSS declaration block.
L06562: sets or begins the transform CSS property.
L06563: completes the current CSS property value.
L06565: closes the current CSS declaration block.
L06567: closes the current CSS declaration block.
L06570: selects elements and opens their CSS declaration block.
L06572: sets or begins the width CSS property.
L06573: completes the current CSS property value.
L06575: sets or begins the flex CSS property.
L06576: completes the current CSS property value.
L06578: sets or begins the border CSS property.
L06579: completes the current CSS property value.
L06581: sets or begins the border-radius CSS property.
L06582: completes the current CSS property value.
L06584: sets or begins the background CSS property.
L06585: completes the current CSS property value.
L06587: sets or begins the box-shadow CSS property.
L06588: completes the current CSS property value.
L06590: sets or begins the overflow CSS property.
L06591: completes the current CSS property value.
L06593: sets or begins the transition CSS property.
L06594: continues a grouped selector or multi-line CSS value.
L06595: completes the current CSS property value.
L06597: closes the current CSS declaration block.
L06600: selects elements and opens their CSS declaration block.
L06602: sets or begins the transform CSS property.
L06603: continues a selector, function, animation step, or property value.
L06604: completes the current CSS property value.
L06606: sets or begins the box-shadow CSS property.
L06607: completes the current CSS property value.
L06609: closes the current CSS declaration block.
L06612: selects elements and opens their CSS declaration block.
L06614: sets or begins the aspect-ratio CSS property.
L06615: completes the current CSS property value.
L06617: sets or begins the background-position CSS property.
L06618: completes the current CSS property value.
L06620: sets or begins the background-size CSS property.
L06621: completes the current CSS property value.
L06623: closes the current CSS declaration block.
L06626: continues CSS documentation for maintainers.
L06627: continues a selector, function, animation step, or property value.
L06628: continues CSS documentation for maintainers.
L06630: selects elements and opens their CSS declaration block.
L06632: sets or begins the background-image CSS property.
L06633: continues a selector, function, animation step, or property value.
L06634: continues a grouped selector or multi-line CSS value.
L06635: continues a grouped selector or multi-line CSS value.
L06636: continues a selector, function, animation step, or property value.
L06637: continues a grouped selector or multi-line CSS value.
L06638: continues a selector, function, animation step, or property value.
L06639: continues a grouped selector or multi-line CSS value.
L06640: continues a grouped selector or multi-line CSS value.
L06641: continues a selector, function, animation step, or property value.
L06642: continues a grouped selector or multi-line CSS value.
L06643: completes the current CSS property value.
L06645: closes the current CSS declaration block.
L06648: selects elements and opens their CSS declaration block.
L06650: sets or begins the background-image CSS property.
L06651: continues a selector, function, animation step, or property value.
L06652: continues a grouped selector or multi-line CSS value.
L06653: continues a grouped selector or multi-line CSS value.
L06654: continues a selector, function, animation step, or property value.
L06655: continues a grouped selector or multi-line CSS value.
L06656: continues a selector, function, animation step, or property value.
L06657: continues a grouped selector or multi-line CSS value.
L06658: continues a grouped selector or multi-line CSS value.
L06659: continues a selector, function, animation step, or property value.
L06660: continues a grouped selector or multi-line CSS value.
L06661: completes the current CSS property value.
L06663: closes the current CSS declaration block.
L06666: selects elements and opens their CSS declaration block.
L06668: sets or begins the background-image CSS property.
L06669: continues a selector, function, animation step, or property value.
L06670: continues a grouped selector or multi-line CSS value.
L06671: continues a grouped selector or multi-line CSS value.
L06672: continues a selector, function, animation step, or property value.
L06673: continues a grouped selector or multi-line CSS value.
L06674: continues a selector, function, animation step, or property value.
L06675: continues a grouped selector or multi-line CSS value.
L06676: continues a grouped selector or multi-line CSS value.
L06677: continues a selector, function, animation step, or property value.
L06678: continues a grouped selector or multi-line CSS value.
L06679: completes the current CSS property value.
L06681: closes the current CSS declaration block.
L06684: selects elements and opens their CSS declaration block.
L06686: sets or begins the background-image CSS property.
L06687: continues a selector, function, animation step, or property value.
L06688: continues a grouped selector or multi-line CSS value.
L06689: continues a grouped selector or multi-line CSS value.
L06690: continues a selector, function, animation step, or property value.
L06691: continues a grouped selector or multi-line CSS value.
L06692: continues a selector, function, animation step, or property value.
L06693: continues a grouped selector or multi-line CSS value.
L06694: continues a grouped selector or multi-line CSS value.
L06695: continues a selector, function, animation step, or property value.
L06696: continues a grouped selector or multi-line CSS value.
L06697: completes the current CSS property value.
L06699: closes the current CSS declaration block.
L06702: selects elements and opens their CSS declaration block.
L06704: sets or begins the background-image CSS property.
L06705: continues a selector, function, animation step, or property value.
L06706: continues a grouped selector or multi-line CSS value.
L06707: continues a grouped selector or multi-line CSS value.
L06708: continues a selector, function, animation step, or property value.
L06709: continues a grouped selector or multi-line CSS value.
L06710: continues a selector, function, animation step, or property value.
L06711: continues a grouped selector or multi-line CSS value.
L06712: continues a grouped selector or multi-line CSS value.
L06713: continues a selector, function, animation step, or property value.
L06714: continues a grouped selector or multi-line CSS value.
L06715: completes the current CSS property value.
L06717: closes the current CSS declaration block.
L06720: selects elements and opens their CSS declaration block.
L06722: sets or begins the background-image CSS property.
L06723: continues a selector, function, animation step, or property value.
L06724: continues a grouped selector or multi-line CSS value.
L06725: continues a grouped selector or multi-line CSS value.
L06726: continues a selector, function, animation step, or property value.
L06727: continues a grouped selector or multi-line CSS value.
L06728: continues a selector, function, animation step, or property value.
L06729: continues a grouped selector or multi-line CSS value.
L06730: continues a grouped selector or multi-line CSS value.
L06731: continues a selector, function, animation step, or property value.
L06732: continues a grouped selector or multi-line CSS value.
L06733: completes the current CSS property value.
L06735: closes the current CSS declaration block.
L06738: selects elements and opens their CSS declaration block.
L06740: sets or begins the background-image CSS property.
L06741: continues a selector, function, animation step, or property value.
L06742: continues a grouped selector or multi-line CSS value.
L06743: continues a grouped selector or multi-line CSS value.
L06744: continues a selector, function, animation step, or property value.
L06745: continues a grouped selector or multi-line CSS value.
L06746: continues a selector, function, animation step, or property value.
L06747: continues a grouped selector or multi-line CSS value.
L06748: continues a grouped selector or multi-line CSS value.
L06749: continues a selector, function, animation step, or property value.
L06750: continues a grouped selector or multi-line CSS value.
L06751: completes the current CSS property value.
L06753: closes the current CSS declaration block.
L06756: selects elements and opens their CSS declaration block.
L06758: sets or begins the background-image CSS property.
L06759: continues a selector, function, animation step, or property value.
L06760: continues a grouped selector or multi-line CSS value.
L06761: continues a grouped selector or multi-line CSS value.
L06762: continues a selector, function, animation step, or property value.
L06763: continues a grouped selector or multi-line CSS value.
L06764: continues a selector, function, animation step, or property value.
L06765: continues a grouped selector or multi-line CSS value.
L06766: continues a grouped selector or multi-line CSS value.
L06767: continues a selector, function, animation step, or property value.
L06768: continues a grouped selector or multi-line CSS value.
L06769: completes the current CSS property value.
L06771: closes the current CSS declaration block.
L06774: selects elements and opens their CSS declaration block.
L06776: sets or begins the display CSS property.
L06777: completes the current CSS property value.
L06779: sets or begins the flex-direction CSS property.
L06780: completes the current CSS property value.
L06782: sets or begins the min-height CSS property.
L06783: completes the current CSS property value.
L06785: sets or begins the justify-content CSS property.
L06786: completes the current CSS property value.
L06788: sets or begins the padding CSS property.
L06789: completes the current CSS property value.
L06791: closes the current CSS declaration block.
L06794: selects elements and opens their CSS declaration block.
L06796: sets or begins the color CSS property.
L06797: completes the current CSS property value.
L06799: sets or begins the font-family CSS property.
L06800: completes the current CSS property value.
L06802: sets or begins the font-size CSS property.
L06803: completes the current CSS property value.
L06805: closes the current CSS declaration block.
L06808: selects elements and opens their CSS declaration block.
L06810: sets or begins the margin-top CSS property.
L06811: completes the current CSS property value.
L06813: sets or begins the color CSS property.
L06814: completes the current CSS property value.
L06816: sets or begins the font-size CSS property.
L06817: completes the current CSS property value.
L06819: closes the current CSS declaration block.
L06822: selects elements and opens their CSS declaration block.
L06824: sets or begins the margin CSS property.
L06825: completes the current CSS property value.
L06827: sets or begins the color CSS property.
L06828: completes the current CSS property value.
L06830: sets or begins the font-size CSS property.
L06831: completes the current CSS property value.
L06833: sets or begins the text-align CSS property.
L06834: completes the current CSS property value.
L06836: closes the current CSS declaration block.
L06839: selects elements and opens their CSS declaration block.
L06841: sets or begins the padding CSS property.
L06842: completes the current CSS property value.
L06844: sets or begins the border-radius CSS property.
L06845: completes the current CSS property value.
L06847: sets or begins the color CSS property.
L06848: completes the current CSS property value.
L06850: sets or begins the background CSS property.
L06851: completes the current CSS property value.
L06853: closes the current CSS declaration block.
L06856: continues CSS documentation for maintainers.
L06857: continues a selector, function, animation step, or property value.
L06858: continues CSS documentation for maintainers.
L06860: selects elements and opens their CSS declaration block.
L06862: sets or begins the background CSS property.
L06863: continues a selector, function, animation step, or property value.
L06864: continues a grouped selector or multi-line CSS value.
L06865: continues a grouped selector or multi-line CSS value.
L06866: continues a selector, function, animation step, or property value.
L06867: continues a grouped selector or multi-line CSS value.
L06868: continues a selector, function, animation step, or property value.
L06869: continues a grouped selector or multi-line CSS value.
L06870: continues a grouped selector or multi-line CSS value.
L06871: continues a selector, function, animation step, or property value.
L06872: completes the current CSS property value.
L06874: closes the current CSS declaration block.
L06877: selects elements and opens their CSS declaration block.
L06879: sets or begins the display CSS property.
L06880: completes the current CSS property value.
L06882: sets or begins the grid-template-columns CSS property.
L06883: continues a selector, function, animation step, or property value.
L06884: completes the current CSS property value.
L06886: sets or begins the gap CSS property.
L06887: completes the current CSS property value.
L06889: closes the current CSS declaration block.
L06892: selects elements and opens their CSS declaration block.
L06894: sets or begins the position CSS property.
L06895: completes the current CSS property value.
L06897: sets or begins the min-height CSS property.
L06898: completes the current CSS property value.
L06900: sets or begins the display CSS property.
L06901: completes the current CSS property value.
L06903: sets or begins the flex-direction CSS property.
L06904: completes the current CSS property value.
L06906: sets or begins the justify-content CSS property.
L06907: completes the current CSS property value.
L06909: sets or begins the padding CSS property.
L06910: completes the current CSS property value.
L06912: sets or begins the border CSS property.
L06913: completes the current CSS property value.
L06915: sets or begins the border-radius CSS property.
L06916: completes the current CSS property value.
L06918: sets or begins the background CSS property.
L06919: completes the current CSS property value.
L06921: sets or begins the box-shadow CSS property.
L06922: completes the current CSS property value.
L06924: sets or begins the overflow CSS property.
L06925: completes the current CSS property value.
L06927: sets or begins the transition CSS property.
L06928: continues a grouped selector or multi-line CSS value.
L06929: continues a grouped selector or multi-line CSS value.
L06930: completes the current CSS property value.
L06932: closes the current CSS declaration block.
L06935: selects elements and opens their CSS declaration block.
L06937: sets or begins the transform CSS property.
L06938: completes the current CSS property value.
L06940: sets or begins the border-color CSS property.
L06941: completes the current CSS property value.
L06943: sets or begins the box-shadow CSS property.
L06944: completes the current CSS property value.
L06946: closes the current CSS declaration block.
L06949: selects elements and opens their CSS declaration block.
L06951: sets or begins the color CSS property.
L06952: completes the current CSS property value.
L06954: sets or begins the border-color CSS property.
L06955: completes the current CSS property value.
L06957: sets or begins the background CSS property.
L06958: continues a selector, function, animation step, or property value.
L06959: continues a grouped selector or multi-line CSS value.
L06960: continues a grouped selector or multi-line CSS value.
L06961: continues a selector, function, animation step, or property value.
L06962: continues a grouped selector or multi-line CSS value.
L06963: continues a selector, function, animation step, or property value.
L06964: continues a grouped selector or multi-line CSS value.
L06965: continues a grouped selector or multi-line CSS value.
L06966: continues a selector, function, animation step, or property value.
L06967: completes the current CSS property value.
L06969: closes the current CSS declaration block.
L06972: selects elements and opens their CSS declaration block.
L06974: sets or begins the position CSS property.
L06975: completes the current CSS property value.
L06977: sets or begins the top CSS property.
L06978: completes the current CSS property value.
L06980: sets or begins the right CSS property.
L06981: completes the current CSS property value.
L06983: sets or begins the color CSS property.
L06984: completes the current CSS property value.
L06986: sets or begins the font-family CSS property.
L06987: completes the current CSS property value.
L06989: sets or begins the font-size CSS property.
L06990: completes the current CSS property value.
L06992: sets or begins the line-height CSS property.
L06993: completes the current CSS property value.
L06995: sets or begins the pointer-events CSS property.
L06996: completes the current CSS property value.
L06998: closes the current CSS declaration block.
L07001: selects elements and opens their CSS declaration block.
L07003: sets or begins the position CSS property.
L07004: completes the current CSS property value.
L07006: sets or begins the z-index CSS property.
L07007: completes the current CSS property value.
L07009: sets or begins the margin-bottom CSS property.
L07010: completes the current CSS property value.
L07012: sets or begins the color CSS property.
L07013: completes the current CSS property value.
L07015: sets or begins the font-family CSS property.
L07016: completes the current CSS property value.
L07018: sets or begins the font-size CSS property.
L07019: completes the current CSS property value.
L07021: sets or begins the font-weight CSS property.
L07022: completes the current CSS property value.
L07024: sets or begins the line-height CSS property.
L07025: completes the current CSS property value.
L07027: closes the current CSS declaration block.
L07030: selects elements and opens their CSS declaration block.
L07032: sets or begins the color CSS property.
L07033: completes the current CSS property value.
L07035: closes the current CSS declaration block.
L07038: selects elements and opens their CSS declaration block.
L07040: sets or begins the color CSS property.
L07041: completes the current CSS property value.
L07043: sets or begins the font-family CSS property.
L07044: completes the current CSS property value.
L07046: sets or begins the font-size CSS property.
L07047: completes the current CSS property value.
L07049: sets or begins the font-weight CSS property.
L07050: completes the current CSS property value.
L07052: closes the current CSS declaration block.
L07055: selects elements and opens their CSS declaration block.
L07057: sets or begins the color CSS property.
L07058: completes the current CSS property value.
L07060: closes the current CSS declaration block.
L07063: selects elements and opens their CSS declaration block.
L07065: sets or begins the margin-top CSS property.
L07066: completes the current CSS property value.
L07068: sets or begins the display CSS property.
L07069: completes the current CSS property value.
L07071: sets or begins the align-items CSS property.
L07072: completes the current CSS property value.
L07074: sets or begins the justify-content CSS property.
L07075: completes the current CSS property value.
L07077: sets or begins the gap CSS property.
L07078: completes the current CSS property value.
L07080: sets or begins the padding CSS property.
L07081: completes the current CSS property value.
L07083: sets or begins the border CSS property.
L07084: completes the current CSS property value.
L07086: sets or begins the border-radius CSS property.
L07087: completes the current CSS property value.
L07089: sets or begins the background CSS property.
L07090: continues a selector, function, animation step, or property value.
L07091: continues a grouped selector or multi-line CSS value.
L07092: continues a grouped selector or multi-line CSS value.
L07093: continues a selector, function, animation step, or property value.
L07094: completes the current CSS property value.
L07096: sets or begins the box-shadow CSS property.
L07097: completes the current CSS property value.
L07099: closes the current CSS declaration block.
L07102: selects elements and opens their CSS declaration block.
L07104: sets or begins the max-width CSS property.
L07105: completes the current CSS property value.
L07107: sets or begins the margin-bottom CSS property.
L07108: completes the current CSS property value.
L07110: closes the current CSS declaration block.
L07113: continues CSS documentation for maintainers.
L07114: continues a selector, function, animation step, or property value.
L07115: continues CSS documentation for maintainers.
L07117: selects elements and opens their CSS declaration block.
L07119: sets or begins the background CSS property.
L07120: continues a selector, function, animation step, or property value.
L07121: continues a grouped selector or multi-line CSS value.
L07122: continues a grouped selector or multi-line CSS value.
L07123: continues a selector, function, animation step, or property value.
L07124: continues a grouped selector or multi-line CSS value.
L07125: continues a selector, function, animation step, or property value.
L07126: continues a grouped selector or multi-line CSS value.
L07127: continues a grouped selector or multi-line CSS value.
L07128: continues a selector, function, animation step, or property value.
L07129: completes the current CSS property value.
L07131: closes the current CSS declaration block.
L07134: selects elements and opens their CSS declaration block.
L07136: sets or begins the display CSS property.
L07137: completes the current CSS property value.
L07139: sets or begins the grid-template-columns CSS property.
L07140: completes the current CSS property value.
L07142: sets or begins the gap CSS property.
L07143: completes the current CSS property value.
L07145: closes the current CSS declaration block.
L07148: selects elements and opens their CSS declaration block.
L07150: sets or begins the position CSS property.
L07151: completes the current CSS property value.
L07153: sets or begins the grid-column CSS property.
L07154: completes the current CSS property value.
L07156: sets or begins the min-height CSS property.
L07157: completes the current CSS property value.
L07159: sets or begins the display CSS property.
L07160: completes the current CSS property value.
L07162: sets or begins the flex-direction CSS property.
L07163: completes the current CSS property value.
L07165: sets or begins the padding CSS property.
L07166: completes the current CSS property value.
L07168: sets or begins the border CSS property.
L07169: completes the current CSS property value.
L07171: sets or begins the border-radius CSS property.
L07172: completes the current CSS property value.
L07174: sets or begins the background CSS property.
L07175: completes the current CSS property value.
L07177: sets or begins the box-shadow CSS property.
L07178: completes the current CSS property value.
L07180: sets or begins the overflow CSS property.
L07181: completes the current CSS property value.
L07183: sets or begins the transition CSS property.
L07184: continues a grouped selector or multi-line CSS value.
L07185: continues a grouped selector or multi-line CSS value.
L07186: completes the current CSS property value.
L07188: closes the current CSS declaration block.
L07191: continues a grouped selector or multi-line CSS value.
L07192: selects elements and opens their CSS declaration block.
L07194: sets or begins the grid-column CSS property.
L07195: completes the current CSS property value.
L07197: closes the current CSS declaration block.
L07200: selects elements and opens their CSS declaration block.
L07202: sets or begins the content CSS property.
L07203: completes the current CSS property value.
L07205: sets or begins the position CSS property.
L07206: completes the current CSS property value.
L07208: sets or begins the inset CSS property.
L07209: completes the current CSS property value.
L07211: sets or begins the width CSS property.
L07212: completes the current CSS property value.
L07214: sets or begins the background CSS property.
L07215: completes the current CSS property value.
L07217: closes the current CSS declaration block.
L07220: selects elements and opens their CSS declaration block.
L07222: sets or begins the background CSS property.
L07223: completes the current CSS property value.
L07225: closes the current CSS declaration block.
L07228: selects elements and opens their CSS declaration block.
L07230: sets or begins the background CSS property.
L07231: completes the current CSS property value.
L07233: closes the current CSS declaration block.
L07236: selects elements and opens their CSS declaration block.
L07238: sets or begins the background CSS property.
L07239: completes the current CSS property value.
L07241: closes the current CSS declaration block.
L07244: selects elements and opens their CSS declaration block.
L07246: sets or begins the background CSS property.
L07247: completes the current CSS property value.
L07249: closes the current CSS declaration block.
L07252: selects elements and opens their CSS declaration block.
L07254: sets or begins the background CSS property.
L07255: completes the current CSS property value.
L07257: closes the current CSS declaration block.
L07260: selects elements and opens their CSS declaration block.
L07262: sets or begins the transform CSS property.
L07263: completes the current CSS property value.
L07265: sets or begins the border-color CSS property.
L07266: completes the current CSS property value.
L07268: sets or begins the box-shadow CSS property.
L07269: completes the current CSS property value.
L07271: closes the current CSS declaration block.
L07274: selects elements and opens their CSS declaration block.
L07276: sets or begins the display CSS property.
L07277: completes the current CSS property value.
L07279: sets or begins the place-items CSS property.
L07280: completes the current CSS property value.
L07282: sets or begins the width CSS property.
L07283: completes the current CSS property value.
L07285: sets or begins the height CSS property.
L07286: completes the current CSS property value.
L07288: sets or begins the margin-bottom CSS property.
L07289: completes the current CSS property value.
L07291: sets or begins the border-radius CSS property.
L07292: completes the current CSS property value.
L07294: sets or begins the color CSS property.
L07295: completes the current CSS property value.
L07297: sets or begins the background CSS property.
L07298: completes the current CSS property value.
L07300: closes the current CSS declaration block.
L07303: selects elements and opens their CSS declaration block.
L07305: sets or begins the color CSS property.
L07306: completes the current CSS property value.
L07308: sets or begins the background CSS property.
L07309: completes the current CSS property value.
L07311: closes the current CSS declaration block.
L07314: selects elements and opens their CSS declaration block.
L07316: sets or begins the color CSS property.
L07317: completes the current CSS property value.
L07319: sets or begins the background CSS property.
L07320: completes the current CSS property value.
L07322: closes the current CSS declaration block.
L07325: selects elements and opens their CSS declaration block.
L07327: sets or begins the color CSS property.
L07328: completes the current CSS property value.
L07330: sets or begins the background CSS property.
L07331: completes the current CSS property value.
L07333: closes the current CSS declaration block.
L07336: selects elements and opens their CSS declaration block.
L07338: sets or begins the width CSS property.
L07339: completes the current CSS property value.
L07341: sets or begins the height CSS property.
L07342: completes the current CSS property value.
L07344: closes the current CSS declaration block.
L07347: selects elements and opens their CSS declaration block.
L07349: sets or begins the margin CSS property.
L07350: completes the current CSS property value.
L07352: closes the current CSS declaration block.
L07355: selects elements and opens their CSS declaration block.
L07357: sets or begins the margin-bottom CSS property.
L07358: completes the current CSS property value.
L07360: closes the current CSS declaration block.
L07363: selects elements and opens their CSS declaration block.
L07365: sets or begins the margin-top CSS property.
L07366: completes the current CSS property value.
L07368: closes the current CSS declaration block.
L07371: selects elements and opens their CSS declaration block.
L07373: sets or begins the margin-top CSS property.
L07374: completes the current CSS property value.
L07376: sets or begins the display CSS property.
L07377: completes the current CSS property value.
L07379: sets or begins the grid-template-columns CSS property.
L07380: continues a selector, function, animation step, or property value.
L07381: completes the current CSS property value.
L07383: sets or begins the align-items CSS property.
L07384: completes the current CSS property value.
L07386: sets or begins the gap CSS property.
L07387: completes the current CSS property value.
L07389: sets or begins the padding CSS property.
L07390: completes the current CSS property value.
L07392: sets or begins the border CSS property.
L07393: completes the current CSS property value.
L07395: sets or begins the border-radius CSS property.
L07396: completes the current CSS property value.
L07398: sets or begins the background CSS property.
L07399: continues a selector, function, animation step, or property value.
L07400: continues a grouped selector or multi-line CSS value.
L07401: continues a grouped selector or multi-line CSS value.
L07402: continues a selector, function, animation step, or property value.
L07403: continues a grouped selector or multi-line CSS value.
L07404: continues a selector, function, animation step, or property value.
L07405: continues a grouped selector or multi-line CSS value.
L07406: continues a grouped selector or multi-line CSS value.
L07407: continues a selector, function, animation step, or property value.
L07408: completes the current CSS property value.
L07410: sets or begins the box-shadow CSS property.
L07411: completes the current CSS property value.
L07413: closes the current CSS declaration block.
L07416: selects elements and opens their CSS declaration block.
L07418: sets or begins the margin-bottom CSS property.
L07419: completes the current CSS property value.
L07421: closes the current CSS declaration block.
L07424: selects elements and opens their CSS declaration block.
L07426: sets or begins the margin-bottom CSS property.
L07427: completes the current CSS property value.
L07429: closes the current CSS declaration block.
L07432: selects elements and opens their CSS declaration block.
L07434: sets or begins the display CSS property.
L07435: completes the current CSS property value.
L07437: sets or begins the gap CSS property.
L07438: completes the current CSS property value.
L07440: closes the current CSS declaration block.
L07443: continues CSS documentation for maintainers.
L07444: continues a selector, function, animation step, or property value.
L07445: continues CSS documentation for maintainers.
L07447: selects elements and opens their CSS declaration block.
L07449: sets or begins the background CSS property.
L07450: continues a selector, function, animation step, or property value.
L07451: continues a grouped selector or multi-line CSS value.
L07452: continues a grouped selector or multi-line CSS value.
L07453: continues a selector, function, animation step, or property value.
L07454: continues a grouped selector or multi-line CSS value.
L07455: continues a selector, function, animation step, or property value.
L07456: continues a grouped selector or multi-line CSS value.
L07457: continues a grouped selector or multi-line CSS value.
L07458: continues a selector, function, animation step, or property value.
L07459: completes the current CSS property value.
L07461: closes the current CSS declaration block.
L07464: selects elements and opens their CSS declaration block.
L07466: sets or begins the display CSS property.
L07467: completes the current CSS property value.
L07469: sets or begins the grid-template-columns CSS property.
L07470: completes the current CSS property value.
L07472: sets or begins the gap CSS property.
L07473: completes the current CSS property value.
L07475: closes the current CSS declaration block.
L07478: selects elements and opens their CSS declaration block.
L07480: sets or begins the border CSS property.
L07481: completes the current CSS property value.
L07483: sets or begins the border-radius CSS property.
L07484: completes the current CSS property value.
L07486: sets or begins the background CSS property.
L07487: completes the current CSS property value.
L07489: sets or begins the box-shadow CSS property.
L07490: completes the current CSS property value.
L07492: sets or begins the overflow CSS property.
L07493: completes the current CSS property value.
L07495: sets or begins the transition CSS property.
L07496: continues a grouped selector or multi-line CSS value.
L07497: continues a grouped selector or multi-line CSS value.
L07498: completes the current CSS property value.
L07500: closes the current CSS declaration block.
L07503: selects elements and opens their CSS declaration block.
L07505: sets or begins the transform CSS property.
L07506: completes the current CSS property value.
L07508: sets or begins the border-color CSS property.
L07509: completes the current CSS property value.
L07511: sets or begins the box-shadow CSS property.
L07512: completes the current CSS property value.
L07514: closes the current CSS declaration block.
L07517: selects elements and opens their CSS declaration block.
L07519: sets or begins the aspect-ratio CSS property.
L07520: completes the current CSS property value.
L07522: sets or begins the background-position CSS property.
L07523: completes the current CSS property value.
L07525: sets or begins the background-size CSS property.
L07526: completes the current CSS property value.
L07528: closes the current CSS declaration block.
L07531: selects elements and opens their CSS declaration block.
L07533: sets or begins the background-image CSS property.
L07534: continues a selector, function, animation step, or property value.
L07535: continues a grouped selector or multi-line CSS value.
L07536: continues a grouped selector or multi-line CSS value.
L07537: continues a selector, function, animation step, or property value.
L07538: continues a grouped selector or multi-line CSS value.
L07539: continues a selector, function, animation step, or property value.
L07540: continues a grouped selector or multi-line CSS value.
L07541: continues a grouped selector or multi-line CSS value.
L07542: continues a selector, function, animation step, or property value.
L07543: continues a grouped selector or multi-line CSS value.
L07544: completes the current CSS property value.
L07546: closes the current CSS declaration block.
L07549: selects elements and opens their CSS declaration block.
L07551: sets or begins the background-image CSS property.
L07552: continues a selector, function, animation step, or property value.
L07553: continues a grouped selector or multi-line CSS value.
L07554: continues a grouped selector or multi-line CSS value.
L07555: continues a selector, function, animation step, or property value.
L07556: continues a grouped selector or multi-line CSS value.
L07557: continues a selector, function, animation step, or property value.
L07558: continues a grouped selector or multi-line CSS value.
L07559: continues a grouped selector or multi-line CSS value.
L07560: continues a selector, function, animation step, or property value.
L07561: continues a grouped selector or multi-line CSS value.
L07562: completes the current CSS property value.
L07564: closes the current CSS declaration block.
L07567: selects elements and opens their CSS declaration block.
L07569: sets or begins the background-image CSS property.
L07570: continues a selector, function, animation step, or property value.
L07571: continues a grouped selector or multi-line CSS value.
L07572: continues a grouped selector or multi-line CSS value.
L07573: continues a selector, function, animation step, or property value.
L07574: continues a grouped selector or multi-line CSS value.
L07575: continues a selector, function, animation step, or property value.
L07576: continues a grouped selector or multi-line CSS value.
L07577: continues a grouped selector or multi-line CSS value.
L07578: continues a selector, function, animation step, or property value.
L07579: continues a grouped selector or multi-line CSS value.
L07580: completes the current CSS property value.
L07582: closes the current CSS declaration block.
L07585: selects elements and opens their CSS declaration block.
L07587: sets or begins the padding CSS property.
L07588: completes the current CSS property value.
L07590: closes the current CSS declaration block.
L07593: selects elements and opens their CSS declaration block.
L07595: sets or begins the color CSS property.
L07596: completes the current CSS property value.
L07598: sets or begins the font-family CSS property.
L07599: completes the current CSS property value.
L07601: sets or begins the font-size CSS property.
L07602: completes the current CSS property value.
L07604: sets or begins the font-weight CSS property.
L07605: completes the current CSS property value.
L07607: sets or begins the letter-spacing CSS property.
L07608: completes the current CSS property value.
L07610: sets or begins the text-transform CSS property.
L07611: completes the current CSS property value.
L07613: closes the current CSS declaration block.
L07616: selects elements and opens their CSS declaration block.
L07618: sets or begins the margin CSS property.
L07619: completes the current CSS property value.
L07621: closes the current CSS declaration block.
L07624: selects elements and opens their CSS declaration block.
L07626: sets or begins the margin-bottom CSS property.
L07627: completes the current CSS property value.
L07629: closes the current CSS declaration block.
L07632: continues CSS documentation for maintainers.
L07633: continues a selector, function, animation step, or property value.
L07634: continues CSS documentation for maintainers.
L07636: selects elements and opens their CSS declaration block.
L07638: sets or begins the background CSS property.
L07639: continues a selector, function, animation step, or property value.
L07640: continues a grouped selector or multi-line CSS value.
L07641: continues a grouped selector or multi-line CSS value.
L07642: continues a selector, function, animation step, or property value.
L07643: completes the current CSS property value.
L07645: closes the current CSS declaration block.
L07648: selects elements and opens their CSS declaration block.
L07650: sets or begins the display CSS property.
L07651: completes the current CSS property value.
L07653: sets or begins the grid-template-columns CSS property.
L07654: continues a selector, function, animation step, or property value.
L07655: completes the current CSS property value.
L07657: sets or begins the gap CSS property.
L07658: completes the current CSS property value.
L07660: sets or begins the align-items CSS property.
L07661: completes the current CSS property value.
L07663: closes the current CSS declaration block.
L07666: selects elements and opens their CSS declaration block.
L07668: sets or begins the position CSS property.
L07669: completes the current CSS property value.
L07671: sets or begins the top CSS property.
L07672: completes the current CSS property value.
L07674: sets or begins the margin-bottom CSS property.
L07675: completes the current CSS property value.
L07677: closes the current CSS declaration block.
L07680: selects elements and opens their CSS declaration block.
L07682: sets or begins the display CSS property.
L07683: completes the current CSS property value.
L07685: sets or begins the gap CSS property.
L07686: completes the current CSS property value.
L07688: closes the current CSS declaration block.
L07691: selects elements and opens their CSS declaration block.
L07693: sets or begins the border CSS property.
L07694: completes the current CSS property value.
L07696: sets or begins the border-radius CSS property.
L07697: completes the current CSS property value.
L07699: sets or begins the background CSS property.
L07700: completes the current CSS property value.
L07702: sets or begins the box-shadow CSS property.
L07703: completes the current CSS property value.
L07705: sets or begins the overflow CSS property.
L07706: completes the current CSS property value.
L07708: closes the current CSS declaration block.
L07711: selects elements and opens their CSS declaration block.
L07713: sets or begins the margin CSS property.
L07714: completes the current CSS property value.
L07716: closes the current CSS declaration block.
L07719: selects elements and opens their CSS declaration block.
L07721: sets or begins the width CSS property.
L07722: completes the current CSS property value.
L07724: sets or begins the display CSS property.
L07725: completes the current CSS property value.
L07727: sets or begins the align-items CSS property.
L07728: completes the current CSS property value.
L07730: sets or begins the justify-content CSS property.
L07731: completes the current CSS property value.
L07733: sets or begins the gap CSS property.
L07734: completes the current CSS property value.
L07736: sets or begins the min-height CSS property.
L07737: completes the current CSS property value.
L07739: sets or begins the padding CSS property.
L07740: completes the current CSS property value.
L07742: sets or begins the border CSS property.
L07743: completes the current CSS property value.
L07745: sets or begins the color CSS property.
L07746: completes the current CSS property value.
L07748: sets or begins the background CSS property.
L07749: completes the current CSS property value.
L07751: sets or begins the font-family CSS property.
L07752: completes the current CSS property value.
L07754: sets or begins the font-size CSS property.
L07755: completes the current CSS property value.
L07757: sets or begins the font-weight CSS property.
L07758: completes the current CSS property value.
L07760: sets or begins the text-align CSS property.
L07761: completes the current CSS property value.
L07763: sets or begins the cursor CSS property.
L07764: completes the current CSS property value.
L07766: closes the current CSS declaration block.
L07769: selects elements and opens their CSS declaration block.
L07771: sets or begins the display CSS property.
L07772: completes the current CSS property value.
L07774: sets or begins the place-items CSS property.
L07775: completes the current CSS property value.
L07777: sets or begins the width CSS property.
L07778: completes the current CSS property value.
L07780: sets or begins the height CSS property.
L07781: completes the current CSS property value.
L07783: sets or begins the flex CSS property.
L07784: completes the current CSS property value.
L07786: sets or begins the border-radius CSS property.
L07787: completes the current CSS property value.
L07789: sets or begins the color CSS property.
L07790: completes the current CSS property value.
L07792: sets or begins the background CSS property.
L07793: completes the current CSS property value.
L07795: sets or begins the font-size CSS property.
L07796: completes the current CSS property value.
L07798: sets or begins the transition CSS property.
L07799: continues a grouped selector or multi-line CSS value.
L07800: completes the current CSS property value.
L07802: closes the current CSS declaration block.
L07805: selects elements and opens their CSS declaration block.
L07807: sets or begins the transform CSS property.
L07808: completes the current CSS property value.
L07810: sets or begins the background CSS property.
L07811: completes the current CSS property value.
L07813: closes the current CSS declaration block.
L07816: selects elements and opens their CSS declaration block.
L07818: sets or begins the padding CSS property.
L07819: completes the current CSS property value.
L07821: closes the current CSS declaration block.
L07824: selects elements and opens their CSS declaration block.
L07826: sets or begins the margin-bottom CSS property.
L07827: completes the current CSS property value.
L07829: closes the current CSS declaration block.
L07832: continues a grouped selector or multi-line CSS value.
L07833: selects elements and opens their CSS declaration block.
L07835: sets or begins the padding CSS property.
L07836: completes the current CSS property value.
L07838: sets or begins the border CSS property.
L07839: completes the current CSS property value.
L07841: sets or begins the color CSS property.
L07842: completes the current CSS property value.
L07844: sets or begins the background CSS property.
L07845: completes the current CSS property value.
L07847: sets or begins the font-family CSS property.
L07848: completes the current CSS property value.
L07850: sets or begins the font-size CSS property.
L07851: completes the current CSS property value.
L07853: sets or begins the font-weight CSS property.
L07854: completes the current CSS property value.
L07856: sets or begins the text-decoration CSS property.
L07857: completes the current CSS property value.
L07859: sets or begins the cursor CSS property.
L07860: completes the current CSS property value.
L07862: closes the current CSS declaration block.
L07865: continues CSS documentation for maintainers.
L07866: continues a selector, function, animation step, or property value.
L07867: continues CSS documentation for maintainers.
L07869: selects elements and opens their CSS declaration block.
L07871: sets or begins the background CSS property.
L07872: continues a selector, function, animation step, or property value.
L07873: continues a grouped selector or multi-line CSS value.
L07874: continues a grouped selector or multi-line CSS value.
L07875: continues a selector, function, animation step, or property value.
L07876: continues a grouped selector or multi-line CSS value.
L07877: continues a selector, function, animation step, or property value.
L07878: continues a grouped selector or multi-line CSS value.
L07879: continues a grouped selector or multi-line CSS value.
L07880: continues a selector, function, animation step, or property value.
L07881: continues a grouped selector or multi-line CSS value.
L07882: continues a selector, function, animation step, or property value.
L07883: continues a grouped selector or multi-line CSS value.
L07884: continues a grouped selector or multi-line CSS value.
L07885: continues a selector, function, animation step, or property value.
L07886: completes the current CSS property value.
L07888: closes the current CSS declaration block.
L07891: selects elements and opens their CSS declaration block.
L07893: sets or begins the display CSS property.
L07894: completes the current CSS property value.
L07896: sets or begins the grid-template-columns CSS property.
L07897: continues a selector, function, animation step, or property value.
L07898: completes the current CSS property value.
L07900: sets or begins the gap CSS property.
L07901: completes the current CSS property value.
L07903: closes the current CSS declaration block.
L07906: selects elements and opens their CSS declaration block.
L07908: sets or begins the display CSS property.
L07909: completes the current CSS property value.
L07911: sets or begins the align-content CSS property.
L07912: completes the current CSS property value.
L07914: sets or begins the gap CSS property.
L07915: completes the current CSS property value.
L07917: closes the current CSS declaration block.
L07920: selects elements and opens their CSS declaration block.
L07922: sets or begins the display CSS property.
L07923: completes the current CSS property value.
L07925: sets or begins the align-items CSS property.
L07926: completes the current CSS property value.
L07928: sets or begins the gap CSS property.
L07929: completes the current CSS property value.
L07931: sets or begins the min-height CSS property.
L07932: completes the current CSS property value.
L07934: sets or begins the padding CSS property.
L07935: completes the current CSS property value.
L07937: sets or begins the border CSS property.
L07938: completes the current CSS property value.
L07940: sets or begins the border-radius CSS property.
L07941: completes the current CSS property value.
L07943: sets or begins the background CSS property.
L07944: completes the current CSS property value.
L07946: sets or begins the box-shadow CSS property.
L07947: completes the current CSS property value.
L07949: closes the current CSS declaration block.
L07952: selects elements and opens their CSS declaration block.
L07954: sets or begins the display CSS property.
L07955: completes the current CSS property value.
L07957: sets or begins the place-items CSS property.
L07958: completes the current CSS property value.
L07960: sets or begins the width CSS property.
L07961: completes the current CSS property value.
L07963: sets or begins the height CSS property.
L07964: completes the current CSS property value.
L07966: sets or begins the flex CSS property.
L07967: completes the current CSS property value.
L07969: sets or begins the border-radius CSS property.
L07970: completes the current CSS property value.
L07972: sets or begins the color CSS property.
L07973: completes the current CSS property value.
L07975: sets or begins the background CSS property.
L07976: completes the current CSS property value.
L07978: closes the current CSS declaration block.
L07981: selects elements and opens their CSS declaration block.
L07983: sets or begins the width CSS property.
L07984: completes the current CSS property value.
L07986: sets or begins the height CSS property.
L07987: completes the current CSS property value.
L07989: closes the current CSS declaration block.
L07992: selects elements and opens their CSS declaration block.
L07994: sets or begins the display CSS property.
L07995: completes the current CSS property value.
L07997: sets or begins the flex-direction CSS property.
L07998: completes the current CSS property value.
L08000: closes the current CSS declaration block.
L08003: selects elements and opens their CSS declaration block.
L08005: sets or begins the color CSS property.
L08006: completes the current CSS property value.
L08008: sets or begins the font-size CSS property.
L08009: completes the current CSS property value.
L08011: closes the current CSS declaration block.
L08014: continues a grouped selector or multi-line CSS value.
L08015: selects elements and opens their CSS declaration block.
L08017: sets or begins the color CSS property.
L08018: completes the current CSS property value.
L08020: sets or begins the font-family CSS property.
L08021: completes the current CSS property value.
L08023: sets or begins the font-size CSS property.
L08024: completes the current CSS property value.
L08026: sets or begins the font-weight CSS property.
L08027: completes the current CSS property value.
L08029: sets or begins the text-decoration CSS property.
L08030: completes the current CSS property value.
L08032: closes the current CSS declaration block.
L08035: selects elements and opens their CSS declaration block.
L08037: sets or begins the color CSS property.
L08038: completes the current CSS property value.
L08040: closes the current CSS declaration block.
L08043: selects elements and opens their CSS declaration block.
L08045: sets or begins the margin-top CSS property.
L08046: completes the current CSS property value.
L08048: sets or begins the padding CSS property.
L08049: completes the current CSS property value.
L08051: sets or begins the border CSS property.
L08052: completes the current CSS property value.
L08054: sets or begins the border-radius CSS property.
L08055: completes the current CSS property value.
L08057: sets or begins the background CSS property.
L08058: continues a selector, function, animation step, or property value.
L08059: continues a grouped selector or multi-line CSS value.
L08060: continues a grouped selector or multi-line CSS value.
L08061: continues a selector, function, animation step, or property value.
L08062: completes the current CSS property value.
L08064: sets or begins the box-shadow CSS property.
L08065: completes the current CSS property value.
L08067: closes the current CSS declaration block.
L08070: selects elements and opens their CSS declaration block.
L08072: sets or begins the margin-left CSS property.
L08073: completes the current CSS property value.
L08075: sets or begins the color CSS property.
L08076: completes the current CSS property value.
L08078: sets or begins the font-family CSS property.
L08079: completes the current CSS property value.
L08081: closes the current CSS declaration block.
L08084: selects elements and opens their CSS declaration block.
L08086: sets or begins the margin CSS property.
L08087: completes the current CSS property value.
L08089: sets or begins the font-size CSS property.
L08090: completes the current CSS property value.
L08092: closes the current CSS declaration block.
L08095: selects elements and opens their CSS declaration block.
L08097: sets or begins the display CSS property.
L08098: completes the current CSS property value.
L08100: sets or begins the align-items CSS property.
L08101: completes the current CSS property value.
L08103: sets or begins the gap CSS property.
L08104: completes the current CSS property value.
L08106: sets or begins the min-height CSS property.
L08107: completes the current CSS property value.
L08109: sets or begins the padding CSS property.
L08110: completes the current CSS property value.
L08112: sets or begins the border-radius CSS property.
L08113: completes the current CSS property value.
L08115: sets or begins the color CSS property.
L08116: completes the current CSS property value.
L08118: sets or begins the background CSS property.
L08119: continues a selector, function, animation step, or property value.
L08120: continues a grouped selector or multi-line CSS value.
L08121: continues a grouped selector or multi-line CSS value.
L08122: continues a selector, function, animation step, or property value.
L08123: completes the current CSS property value.
L08125: sets or begins the box-shadow CSS property.
L08126: completes the current CSS property value.
L08128: sets or begins the font-family CSS property.
L08129: completes the current CSS property value.
L08131: sets or begins the font-size CSS property.
L08132: completes the current CSS property value.
L08134: sets or begins the font-weight CSS property.
L08135: completes the current CSS property value.
L08137: sets or begins the text-decoration CSS property.
L08138: completes the current CSS property value.
L08140: closes the current CSS declaration block.
L08143: selects elements and opens their CSS declaration block.
L08145: sets or begins the padding CSS property.
L08146: completes the current CSS property value.
L08148: sets or begins the border CSS property.
L08149: completes the current CSS property value.
L08151: sets or begins the border-radius CSS property.
L08152: completes the current CSS property value.
L08154: sets or begins the background CSS property.
L08155: completes the current CSS property value.
L08157: sets or begins the box-shadow CSS property.
L08158: completes the current CSS property value.
L08160: closes the current CSS declaration block.
L08163: selects elements and opens their CSS declaration block.
L08165: sets or begins the margin-bottom CSS property.
L08166: completes the current CSS property value.
L08168: closes the current CSS declaration block.
L08171: selects elements and opens their CSS declaration block.
L08173: sets or begins the color CSS property.
L08174: completes the current CSS property value.
L08176: sets or begins the font-family CSS property.
L08177: completes the current CSS property value.
L08179: sets or begins the font-size CSS property.
L08180: completes the current CSS property value.
L08182: sets or begins the font-weight CSS property.
L08183: completes the current CSS property value.
L08185: sets or begins the letter-spacing CSS property.
L08186: completes the current CSS property value.
L08188: sets or begins the text-transform CSS property.
L08189: completes the current CSS property value.
L08191: closes the current CSS declaration block.
L08194: selects elements and opens their CSS declaration block.
L08196: sets or begins the margin CSS property.
L08197: completes the current CSS property value.
L08199: closes the current CSS declaration block.
L08202: selects elements and opens their CSS declaration block.
L08204: sets or begins the display CSS property.
L08205: completes the current CSS property value.
L08207: sets or begins the grid-template-columns CSS property.
L08208: completes the current CSS property value.
L08210: sets or begins the gap CSS property.
L08211: completes the current CSS property value.
L08213: closes the current CSS declaration block.
L08216: selects elements and opens their CSS declaration block.
L08218: sets or begins the display CSS property.
L08219: completes the current CSS property value.
L08221: sets or begins the flex-direction CSS property.
L08222: completes the current CSS property value.
L08224: sets or begins the gap CSS property.
L08225: completes the current CSS property value.
L08227: sets or begins the margin-bottom CSS property.
L08228: completes the current CSS property value.
L08230: closes the current CSS declaration block.
L08233: selects elements and opens their CSS declaration block.
L08235: sets or begins the color CSS property.
L08236: completes the current CSS property value.
L08238: sets or begins the font-family CSS property.
L08239: completes the current CSS property value.
L08241: sets or begins the font-size CSS property.
L08242: completes the current CSS property value.
L08244: sets or begins the font-weight CSS property.
L08245: completes the current CSS property value.
L08247: closes the current CSS declaration block.
L08250: continues a grouped selector or multi-line CSS value.
L08251: continues a grouped selector or multi-line CSS value.
L08252: continues a grouped selector or multi-line CSS value.
L08253: selects elements and opens their CSS declaration block.
L08255: sets or begins the width CSS property.
L08256: completes the current CSS property value.
L08258: sets or begins the border CSS property.
L08259: completes the current CSS property value.
L08261: sets or begins the border-radius CSS property.
L08262: completes the current CSS property value.
L08264: sets or begins the color CSS property.
L08265: completes the current CSS property value.
L08267: sets or begins the background CSS property.
L08268: completes the current CSS property value.
L08270: sets or begins the transition CSS property.
L08271: continues a grouped selector or multi-line CSS value.
L08272: continues a grouped selector or multi-line CSS value.
L08273: completes the current CSS property value.
L08275: closes the current CSS declaration block.
L08278: continues a grouped selector or multi-line CSS value.
L08279: selects elements and opens their CSS declaration block.
L08281: sets or begins the min-height CSS property.
L08282: completes the current CSS property value.
L08284: sets or begins the padding CSS property.
L08285: completes the current CSS property value.
L08287: closes the current CSS declaration block.
L08290: selects elements and opens their CSS declaration block.
L08292: sets or begins the min-height CSS property.
L08293: completes the current CSS property value.
L08295: sets or begins the padding CSS property.
L08296: completes the current CSS property value.
L08298: sets or begins the resize CSS property.
L08299: completes the current CSS property value.
L08301: closes the current CSS declaration block.
L08304: continues a grouped selector or multi-line CSS value.
L08305: continues a grouped selector or multi-line CSS value.
L08306: continues a grouped selector or multi-line CSS value.
L08307: selects elements and opens their CSS declaration block.
L08309: sets or begins the outline CSS property.
L08310: completes the current CSS property value.
L08312: sets or begins the border-color CSS property.
L08313: completes the current CSS property value.
L08315: sets or begins the background CSS property.
L08316: completes the current CSS property value.
L08318: sets or begins the box-shadow CSS property.
L08319: completes the current CSS property value.
L08321: closes the current CSS declaration block.
L08324: continues a grouped selector or multi-line CSS value.
L08325: selects elements and opens their CSS declaration block.
L08327: sets or begins the border-color CSS property.
L08328: completes the current CSS property value.
L08330: sets or begins the box-shadow CSS property.
L08331: completes the current CSS property value.
L08333: closes the current CSS declaration block.
L08336: selects elements and opens their CSS declaration block.
L08338: sets or begins the min-height CSS property.
L08339: completes the current CSS property value.
L08341: sets or begins the color CSS property.
L08342: completes the current CSS property value.
L08344: sets or begins the font-size CSS property.
L08345: completes the current CSS property value.
L08347: closes the current CSS declaration block.
L08350: selects elements and opens their CSS declaration block.
L08352: sets or begins the display CSS property.
L08353: completes the current CSS property value.
L08355: sets or begins the align-items CSS property.
L08356: completes the current CSS property value.
L08358: sets or begins the gap CSS property.
L08359: completes the current CSS property value.
L08361: sets or begins the margin-top CSS property.
L08362: completes the current CSS property value.
L08364: closes the current CSS declaration block.
L08367: selects elements and opens their CSS declaration block.
L08369: sets or begins the max-width CSS property.
L08370: completes the current CSS property value.
L08372: sets or begins the margin CSS property.
L08373: completes the current CSS property value.
L08375: sets or begins the color CSS property.
L08376: completes the current CSS property value.
L08378: sets or begins the font-size CSS property.
L08379: completes the current CSS property value.
L08381: sets or begins the line-height CSS property.
L08382: completes the current CSS property value.
L08384: closes the current CSS declaration block.
L08387: continues CSS documentation for maintainers.
L08388: continues a selector, function, animation step, or property value.
L08389: continues CSS documentation for maintainers.
L08391: selects elements and opens their CSS declaration block.
L08393: sets or begins the position CSS property.
L08394: completes the current CSS property value.
L08396: sets or begins the color CSS property.
L08397: completes the current CSS property value.
L08399: sets or begins the background CSS property.
L08400: continues a selector, function, animation step, or property value.
L08401: continues a grouped selector or multi-line CSS value.
L08402: continues a grouped selector or multi-line CSS value.
L08403: continues a selector, function, animation step, or property value.
L08404: continues a grouped selector or multi-line CSS value.
L08405: continues a selector, function, animation step, or property value.
L08406: continues a grouped selector or multi-line CSS value.
L08407: continues a grouped selector or multi-line CSS value.
L08408: continues a grouped selector or multi-line CSS value.
L08409: continues a selector, function, animation step, or property value.
L08410: completes the current CSS property value.
L08412: sets or begins the overflow CSS property.
L08413: completes the current CSS property value.
L08415: closes the current CSS declaration block.
L08418: selects elements and opens their CSS declaration block.
L08420: sets or begins the content CSS property.
L08421: completes the current CSS property value.
L08423: sets or begins the position CSS property.
L08424: completes the current CSS property value.
L08426: sets or begins the inset CSS property.
L08427: completes the current CSS property value.
L08429: sets or begins the background-image CSS property.
L08430: continues a selector, function, animation step, or property value.
L08431: continues a grouped selector or multi-line CSS value.
L08432: continues a selector, function, animation step, or property value.
L08433: continues a grouped selector or multi-line CSS value.
L08434: continues a selector, function, animation step, or property value.
L08435: continues a grouped selector or multi-line CSS value.
L08436: continues a grouped selector or multi-line CSS value.
L08437: continues a selector, function, animation step, or property value.
L08438: completes the current CSS property value.
L08440: sets or begins the background-size CSS property.
L08441: completes the current CSS property value.
L08443: sets or begins the pointer-events CSS property.
L08444: completes the current CSS property value.
L08446: closes the current CSS declaration block.
L08449: continues a grouped selector or multi-line CSS value.
L08450: selects elements and opens their CSS declaration block.
L08452: sets or begins the position CSS property.
L08453: completes the current CSS property value.
L08455: sets or begins the z-index CSS property.
L08456: completes the current CSS property value.
L08458: closes the current CSS declaration block.
L08461: selects elements and opens their CSS declaration block.
L08463: sets or begins the display CSS property.
L08464: completes the current CSS property value.
L08466: sets or begins the grid-template-columns CSS property.
L08467: continues a selector, function, animation step, or property value.
L08468: continues a selector, function, animation step, or property value.
L08469: completes the current CSS property value.
L08471: sets or begins the gap CSS property.
L08472: completes the current CSS property value.
L08474: sets or begins the padding-block CSS property.
L08475: completes the current CSS property value.
L08477: closes the current CSS declaration block.
L08480: selects elements and opens their CSS declaration block.
L08482: sets or begins the width CSS property.
L08483: completes the current CSS property value.
L08485: sets or begins the height CSS property.
L08486: completes the current CSS property value.
L08488: sets or begins the flex-basis CSS property.
L08489: completes the current CSS property value.
L08491: closes the current CSS declaration block.
L08494: selects elements and opens their CSS declaration block.
L08496: sets or begins the max-width CSS property.
L08497: completes the current CSS property value.
L08499: sets or begins the margin CSS property.
L08500: completes the current CSS property value.
L08502: sets or begins the color CSS property.
L08503: completes the current CSS property value.
L08505: closes the current CSS declaration block.
L08508: selects elements and opens their CSS declaration block.
L08510: sets or begins the display CSS property.
L08511: completes the current CSS property value.
L08513: sets or begins the flex-wrap CSS property.
L08514: completes the current CSS property value.
L08516: sets or begins the gap CSS property.
L08517: completes the current CSS property value.
L08519: closes the current CSS declaration block.
L08522: selects elements and opens their CSS declaration block.
L08524: sets or begins the color CSS property.
L08525: completes the current CSS property value.
L08527: sets or begins the font-family CSS property.
L08528: completes the current CSS property value.
L08530: sets or begins the font-size CSS property.
L08531: completes the current CSS property value.
L08533: sets or begins the font-weight CSS property.
L08534: completes the current CSS property value.
L08536: sets or begins the text-decoration CSS property.
L08537: completes the current CSS property value.
L08539: closes the current CSS declaration block.
L08542: selects elements and opens their CSS declaration block.
L08544: sets or begins the display CSS property.
L08545: completes the current CSS property value.
L08547: sets or begins the flex-direction CSS property.
L08548: completes the current CSS property value.
L08550: sets or begins the gap CSS property.
L08551: completes the current CSS property value.
L08553: closes the current CSS declaration block.
L08556: continues a grouped selector or multi-line CSS value.
L08557: selects elements and opens their CSS declaration block.
L08559: sets or begins the margin-bottom CSS property.
L08560: completes the current CSS property value.
L08562: sets or begins the color CSS property.
L08563: completes the current CSS property value.
L08565: sets or begins the font-size CSS property.
L08566: completes the current CSS property value.
L08568: closes the current CSS declaration block.
L08571: selects elements and opens their CSS declaration block.
L08573: sets or begins the width CSS property.
L08574: completes the current CSS property value.
L08576: sets or begins the color CSS property.
L08577: completes the current CSS property value.
L08579: sets or begins the font-size CSS property.
L08580: completes the current CSS property value.
L08582: sets or begins the text-decoration CSS property.
L08583: completes the current CSS property value.
L08585: sets or begins the transition CSS property.
L08586: continues a grouped selector or multi-line CSS value.
L08587: completes the current CSS property value.
L08589: closes the current CSS declaration block.
L08592: selects elements and opens their CSS declaration block.
L08594: sets or begins the color CSS property.
L08595: completes the current CSS property value.
L08597: sets or begins the transform CSS property.
L08598: completes the current CSS property value.
L08600: closes the current CSS declaration block.
L08603: selects elements and opens their CSS declaration block.
L08605: sets or begins the color CSS property.
L08606: completes the current CSS property value.
L08608: sets or begins the font-size CSS property.
L08609: completes the current CSS property value.
L08611: closes the current CSS declaration block.
L08614: selects elements and opens their CSS declaration block.
L08616: sets or begins the display CSS property.
L08617: completes the current CSS property value.
L08619: sets or begins the grid-template-columns CSS property.
L08620: continues a selector, function, animation step, or property value.
L08621: completes the current CSS property value.
L08623: sets or begins the gap CSS property.
L08624: completes the current CSS property value.
L08626: sets or begins the padding CSS property.
L08627: completes the current CSS property value.
L08629: sets or begins the border CSS property.
L08630: completes the current CSS property value.
L08632: sets or begins the border-radius CSS property.
L08633: completes the current CSS property value.
L08635: sets or begins the background CSS property.
L08636: completes the current CSS property value.
L08638: closes the current CSS declaration block.
L08641: selects elements and opens their CSS declaration block.
L08643: sets or begins the min-height CSS property.
L08644: completes the current CSS property value.
L08646: sets or begins the padding CSS property.
L08647: completes the current CSS property value.
L08649: sets or begins the border CSS property.
L08650: completes the current CSS property value.
L08652: sets or begins the color CSS property.
L08653: completes the current CSS property value.
L08655: sets or begins the background CSS property.
L08656: completes the current CSS property value.
L08658: closes the current CSS declaration block.
L08661: selects elements and opens their CSS declaration block.
L08663: sets or begins the color CSS property.
L08664: completes the current CSS property value.
L08666: closes the current CSS declaration block.
L08669: selects elements and opens their CSS declaration block.
L08671: sets or begins the display CSS property.
L08672: completes the current CSS property value.
L08674: sets or begins the place-items CSS property.
L08675: completes the current CSS property value.
L08677: sets or begins the width CSS property.
L08678: completes the current CSS property value.
L08680: sets or begins the height CSS property.
L08681: completes the current CSS property value.
L08683: sets or begins the border CSS property.
L08684: completes the current CSS property value.
L08686: sets or begins the border-radius CSS property.
L08687: completes the current CSS property value.
L08689: sets or begins the color CSS property.
L08690: completes the current CSS property value.
L08692: sets or begins the background CSS property.
L08693: completes the current CSS property value.
L08695: sets or begins the cursor CSS property.
L08696: completes the current CSS property value.
L08698: closes the current CSS declaration block.
L08701: selects elements and opens their CSS declaration block.
L08703: sets or begins the min-height CSS property.
L08704: completes the current CSS property value.
L08706: sets or begins the display CSS property.
L08707: completes the current CSS property value.
L08709: sets or begins the align-items CSS property.
L08710: completes the current CSS property value.
L08712: sets or begins the justify-content CSS property.
L08713: completes the current CSS property value.
L08715: sets or begins the gap CSS property.
L08716: completes the current CSS property value.
L08718: sets or begins the padding-block CSS property.
L08719: completes the current CSS property value.
L08721: sets or begins the border-top CSS property.
L08722: completes the current CSS property value.
L08724: closes the current CSS declaration block.
L08727: selects elements and opens their CSS declaration block.
L08729: sets or begins the margin CSS property.
L08730: completes the current CSS property value.
L08732: sets or begins the color CSS property.
L08733: completes the current CSS property value.
L08735: sets or begins the font-size CSS property.
L08736: completes the current CSS property value.
L08738: closes the current CSS declaration block.
L08741: selects elements and opens their CSS declaration block.
L08743: sets or begins the display CSS property.
L08744: completes the current CSS property value.
L08746: sets or begins the flex-wrap CSS property.
L08747: completes the current CSS property value.
L08749: sets or begins the gap CSS property.
L08750: completes the current CSS property value.
L08752: closes the current CSS declaration block.
L08755: selects elements and opens their CSS declaration block.
L08757: sets or begins the padding CSS property.
L08758: completes the current CSS property value.
L08760: sets or begins the border CSS property.
L08761: completes the current CSS property value.
L08763: sets or begins the color CSS property.
L08764: completes the current CSS property value.
L08766: sets or begins the background CSS property.
L08767: completes the current CSS property value.
L08769: sets or begins the font-size CSS property.
L08770: completes the current CSS property value.
L08772: sets or begins the cursor CSS property.
L08773: completes the current CSS property value.
L08775: closes the current CSS declaration block.
L08778: selects elements and opens their CSS declaration block.
L08780: sets or begins the color CSS property.
L08781: completes the current CSS property value.
L08783: closes the current CSS declaration block.
L08786: continues CSS documentation for maintainers.
L08787: continues a selector, function, animation step, or property value.
L08788: continues CSS documentation for maintainers.
L08790: selects elements and opens their CSS declaration block.
L08792: sets or begins the position CSS property.
L08793: completes the current CSS property value.
L08795: sets or begins the right CSS property.
L08796: completes the current CSS property value.
L08798: sets or begins the bottom CSS property.
L08799: completes the current CSS property value.
L08801: sets or begins the z-index CSS property.
L08802: completes the current CSS property value.
L08804: sets or begins the display CSS property.
L08805: completes the current CSS property value.
L08807: sets or begins the flex-direction CSS property.
L08808: completes the current CSS property value.
L08810: sets or begins the align-items CSS property.
L08811: completes the current CSS property value.
L08813: closes the current CSS declaration block.
L08816: selects elements and opens their CSS declaration block.
L08818: sets or begins the display CSS property.
L08819: completes the current CSS property value.
L08821: sets or begins the align-items CSS property.
L08822: completes the current CSS property value.
L08824: sets or begins the gap CSS property.
L08825: completes the current CSS property value.
L08827: sets or begins the min-height CSS property.
L08828: completes the current CSS property value.
L08830: sets or begins the padding CSS property.
L08831: completes the current CSS property value.
L08833: sets or begins the border CSS property.
L08834: completes the current CSS property value.
L08836: sets or begins the border-radius CSS property.
L08837: completes the current CSS property value.
L08839: sets or begins the color CSS property.
L08840: completes the current CSS property value.
L08842: sets or begins the background CSS property.
L08843: continues a selector, function, animation step, or property value.
L08844: continues a grouped selector or multi-line CSS value.
L08845: continues a grouped selector or multi-line CSS value.
L08846: continues a selector, function, animation step, or property value.
L08847: completes the current CSS property value.
L08849: sets or begins the box-shadow CSS property.
L08850: completes the current CSS property value.
L08852: sets or begins the font-family CSS property.
L08853: completes the current CSS property value.
L08855: sets or begins the font-size CSS property.
L08856: completes the current CSS property value.
L08858: sets or begins the font-weight CSS property.
L08859: completes the current CSS property value.
L08861: sets or begins the cursor CSS property.
L08862: completes the current CSS property value.
L08864: sets or begins the transition CSS property.
L08865: continues a grouped selector or multi-line CSS value.
L08866: completes the current CSS property value.
L08868: closes the current CSS declaration block.
L08871: selects elements and opens their CSS declaration block.
L08873: sets or begins the transform CSS property.
L08874: completes the current CSS property value.
L08876: sets or begins the box-shadow CSS property.
L08877: completes the current CSS property value.
L08879: closes the current CSS declaration block.
L08882: selects elements and opens their CSS declaration block.
L08884: sets or begins the width CSS property.
L08885: completes the current CSS property value.
L08887: sets or begins the margin-bottom CSS property.
L08888: completes the current CSS property value.
L08890: sets or begins the padding CSS property.
L08891: completes the current CSS property value.
L08893: sets or begins the border CSS property.
L08894: completes the current CSS property value.
L08896: sets or begins the border-radius CSS property.
L08897: completes the current CSS property value.
L08899: sets or begins the background CSS property.
L08900: completes the current CSS property value.
L08902: sets or begins the box-shadow CSS property.
L08903: completes the current CSS property value.
L08905: sets or begins the backdrop-filter CSS property.
L08906: completes the current CSS property value.
L08908: sets or begins the animation CSS property.
L08909: continues a selector, function, animation step, or property value.
L08910: continues a selector, function, animation step, or property value.
L08911: completes the current CSS property value.
L08913: closes the current CSS declaration block.
L08916: defines an animation timeline.
L08918: selects elements and opens their CSS declaration block.
L08920: sets or begins the opacity CSS property.
L08921: completes the current CSS property value.
L08923: sets or begins the transform CSS property.
L08924: continues a selector, function, animation step, or property value.
L08925: completes the current CSS property value.
L08927: closes the current CSS declaration block.
L08929: selects elements and opens their CSS declaration block.
L08931: sets or begins the opacity CSS property.
L08932: completes the current CSS property value.
L08934: sets or begins the transform CSS property.
L08935: continues a selector, function, animation step, or property value.
L08936: completes the current CSS property value.
L08938: closes the current CSS declaration block.
L08940: closes the current CSS declaration block.
L08943: selects elements and opens their CSS declaration block.
L08945: sets or begins the display CSS property.
L08946: completes the current CSS property value.
L08948: sets or begins the align-items CSS property.
L08949: completes the current CSS property value.
L08951: sets or begins the gap CSS property.
L08952: completes the current CSS property value.
L08954: sets or begins the min-height CSS property.
L08955: completes the current CSS property value.
L08957: sets or begins the padding CSS property.
L08958: completes the current CSS property value.
L08960: sets or begins the border-radius CSS property.
L08961: completes the current CSS property value.
L08963: sets or begins the color CSS property.
L08964: completes the current CSS property value.
L08966: sets or begins the font-family CSS property.
L08967: completes the current CSS property value.
L08969: sets or begins the font-size CSS property.
L08970: completes the current CSS property value.
L08972: sets or begins the font-weight CSS property.
L08973: completes the current CSS property value.
L08975: sets or begins the text-decoration CSS property.
L08976: completes the current CSS property value.
L08978: closes the current CSS declaration block.
L08981: selects elements and opens their CSS declaration block.
L08983: sets or begins the background CSS property.
L08984: completes the current CSS property value.
L08986: closes the current CSS declaration block.
L08989: selects elements and opens their CSS declaration block.
L08991: sets or begins the color CSS property.
L08992: completes the current CSS property value.
L08994: sets or begins the background CSS property.
L08995: completes the current CSS property value.
L08997: closes the current CSS declaration block.
L09000: selects elements and opens their CSS declaration block.
L09002: sets or begins the position CSS property.
L09003: completes the current CSS property value.
L09005: sets or begins the right CSS property.
L09006: completes the current CSS property value.
L09008: sets or begins the bottom CSS property.
L09009: completes the current CSS property value.
L09011: sets or begins the z-index CSS property.
L09012: completes the current CSS property value.
L09014: sets or begins the display CSS property.
L09015: completes the current CSS property value.
L09017: sets or begins the place-items CSS property.
L09018: completes the current CSS property value.
L09020: sets or begins the width CSS property.
L09021: completes the current CSS property value.
L09023: sets or begins the height CSS property.
L09024: completes the current CSS property value.
L09026: sets or begins the border CSS property.
L09027: completes the current CSS property value.
L09029: sets or begins the border-radius CSS property.
L09030: completes the current CSS property value.
L09032: sets or begins the color CSS property.
L09033: completes the current CSS property value.
L09035: sets or begins the background CSS property.
L09036: completes the current CSS property value.
L09038: sets or begins the box-shadow CSS property.
L09039: completes the current CSS property value.
L09041: sets or begins the opacity CSS property.
L09042: completes the current CSS property value.
L09044: sets or begins the visibility CSS property.
L09045: completes the current CSS property value.
L09047: sets or begins the transform CSS property.
L09048: completes the current CSS property value.
L09050: sets or begins the cursor CSS property.
L09051: completes the current CSS property value.
L09053: sets or begins the transition CSS property.
L09054: continues a grouped selector or multi-line CSS value.
L09055: continues a grouped selector or multi-line CSS value.
L09056: completes the current CSS property value.
L09058: closes the current CSS declaration block.
L09061: selects elements and opens their CSS declaration block.
L09063: sets or begins the opacity CSS property.
L09064: completes the current CSS property value.
L09066: sets or begins the visibility CSS property.
L09067: completes the current CSS property value.
L09069: sets or begins the transform CSS property.
L09070: completes the current CSS property value.
L09072: closes the current CSS declaration block.
L09075: selects elements and opens their CSS declaration block.
L09077: sets or begins the transform CSS property.
L09078: completes the current CSS property value.
L09080: closes the current CSS declaration block.
L09083: continues CSS documentation for maintainers.
L09084: continues a selector, function, animation step, or property value.
L09085: continues CSS documentation for maintainers.
L09087: selects elements and opens their CSS declaration block.
L09089: sets or begins the position CSS property.
L09090: completes the current CSS property value.
L09092: sets or begins the inset CSS property.
L09093: completes the current CSS property value.
L09095: sets or begins the z-index CSS property.
L09096: completes the current CSS property value.
L09098: sets or begins the display CSS property.
L09099: completes the current CSS property value.
L09101: sets or begins the place-items CSS property.
L09102: completes the current CSS property value.
L09104: sets or begins the padding CSS property.
L09105: completes the current CSS property value.
L09107: closes the current CSS declaration block.
L09110: selects elements and opens their CSS declaration block.
L09112: sets or begins the position CSS property.
L09113: completes the current CSS property value.
L09115: sets or begins the inset CSS property.
L09116: completes the current CSS property value.
L09118: sets or begins the background CSS property.
L09119: completes the current CSS property value.
L09121: sets or begins the backdrop-filter CSS property.
L09122: completes the current CSS property value.
L09124: sets or begins the animation CSS property.
L09125: continues a selector, function, animation step, or property value.
L09126: continues a selector, function, animation step, or property value.
L09127: completes the current CSS property value.
L09129: closes the current CSS declaration block.
L09132: selects elements and opens their CSS declaration block.
L09134: sets or begins the position CSS property.
L09135: completes the current CSS property value.
L09137: sets or begins the z-index CSS property.
L09138: completes the current CSS property value.
L09140: sets or begins the width CSS property.
L09141: completes the current CSS property value.
L09143: sets or begins the max-height CSS property.
L09144: continues a selector, function, animation step, or property value.
L09145: continues a grouped selector or multi-line CSS value.
L09146: continues a selector, function, animation step, or property value.
L09147: completes the current CSS property value.
L09149: sets or begins the overflow-y CSS property.
L09150: completes the current CSS property value.
L09152: sets or begins the padding CSS property.
L09153: completes the current CSS property value.
L09155: sets or begins the border CSS property.
L09156: completes the current CSS property value.
L09158: sets or begins the border-radius CSS property.
L09159: completes the current CSS property value.
L09161: sets or begins the background CSS property.
L09162: continues a selector, function, animation step, or property value.
L09163: continues a grouped selector or multi-line CSS value.
L09164: continues a grouped selector or multi-line CSS value.
L09165: continues a selector, function, animation step, or property value.
L09166: continues a grouped selector or multi-line CSS value.
L09167: completes the current CSS property value.
L09169: sets or begins the box-shadow CSS property.
L09170: completes the current CSS property value.
L09172: sets or begins the animation CSS property.
L09173: continues a selector, function, animation step, or property value.
L09174: continues a selector, function, animation step, or property value.
L09175: completes the current CSS property value.
L09177: closes the current CSS declaration block.
L09180: defines an animation timeline.
L09182: selects elements and opens their CSS declaration block.
L09184: sets or begins the opacity CSS property.
L09185: completes the current CSS property value.
L09187: closes the current CSS declaration block.
L09189: selects elements and opens their CSS declaration block.
L09191: sets or begins the opacity CSS property.
L09192: completes the current CSS property value.
L09194: closes the current CSS declaration block.
L09196: closes the current CSS declaration block.
L09199: defines an animation timeline.
L09201: selects elements and opens their CSS declaration block.
L09203: sets or begins the opacity CSS property.
L09204: completes the current CSS property value.
L09206: sets or begins the transform CSS property.
L09207: continues a selector, function, animation step, or property value.
L09208: completes the current CSS property value.
L09210: closes the current CSS declaration block.
L09212: selects elements and opens their CSS declaration block.
L09214: sets or begins the opacity CSS property.
L09215: completes the current CSS property value.
L09217: sets or begins the transform CSS property.
L09218: continues a selector, function, animation step, or property value.
L09219: completes the current CSS property value.
L09221: closes the current CSS declaration block.
L09223: closes the current CSS declaration block.
L09226: selects elements and opens their CSS declaration block.
L09228: sets or begins the position CSS property.
L09229: completes the current CSS property value.
L09231: sets or begins the top CSS property.
L09232: completes the current CSS property value.
L09234: sets or begins the right CSS property.
L09235: completes the current CSS property value.
L09237: sets or begins the display CSS property.
L09238: completes the current CSS property value.
L09240: sets or begins the place-items CSS property.
L09241: completes the current CSS property value.
L09243: sets or begins the width CSS property.
L09244: completes the current CSS property value.
L09246: sets or begins the height CSS property.
L09247: completes the current CSS property value.
L09249: sets or begins the border CSS property.
L09250: completes the current CSS property value.
L09252: sets or begins the border-radius CSS property.
L09253: completes the current CSS property value.
L09255: sets or begins the color CSS property.
L09256: completes the current CSS property value.
L09258: sets or begins the background CSS property.
L09259: completes the current CSS property value.
L09261: sets or begins the cursor CSS property.
L09262: completes the current CSS property value.
L09264: closes the current CSS declaration block.
L09267: selects elements and opens their CSS declaration block.
L09269: sets or begins the margin-bottom CSS property.
L09270: completes the current CSS property value.
L09272: sets or begins the color CSS property.
L09273: completes the current CSS property value.
L09275: sets or begins the font-family CSS property.
L09276: completes the current CSS property value.
L09278: sets or begins the font-size CSS property.
L09279: completes the current CSS property value.
L09281: sets or begins the font-weight CSS property.
L09282: completes the current CSS property value.
L09284: sets or begins the letter-spacing CSS property.
L09285: completes the current CSS property value.
L09287: sets or begins the text-transform CSS property.
L09288: completes the current CSS property value.
L09290: closes the current CSS declaration block.
L09293: selects elements and opens their CSS declaration block.
L09295: sets or begins the max-width CSS property.
L09296: completes the current CSS property value.
L09298: sets or begins the margin-bottom CSS property.
L09299: completes the current CSS property value.
L09301: sets or begins the padding-right CSS property.
L09302: completes the current CSS property value.
L09304: closes the current CSS declaration block.
L09307: selects elements and opens their CSS declaration block.
L09309: sets or begins the color CSS property.
L09310: completes the current CSS property value.
L09312: closes the current CSS declaration block.
L09315: selects elements and opens their CSS declaration block.
L09317: sets or begins the margin CSS property.
L09318: completes the current CSS property value.
L09320: sets or begins the font-size CSS property.
L09321: completes the current CSS property value.
L09323: closes the current CSS declaration block.
L09326: selects elements and opens their CSS declaration block.
L09328: sets or begins the padding-left CSS property.
L09329: completes the current CSS property value.
L09331: closes the current CSS declaration block.
L09334: selects elements and opens their CSS declaration block.
L09336: sets or begins the margin-bottom CSS property.
L09337: completes the current CSS property value.
L09339: closes the current CSS declaration block.
L09342: selects elements and opens their CSS declaration block.
L09344: sets or begins the display CSS property.
L09345: completes the current CSS property value.
L09347: sets or begins the flex-wrap CSS property.
L09348: completes the current CSS property value.
L09350: sets or begins the gap CSS property.
L09351: completes the current CSS property value.
L09353: sets or begins the margin-top CSS property.
L09354: completes the current CSS property value.
L09356: closes the current CSS declaration block.
L09359: continues a grouped selector or multi-line CSS value.
L09360: selects elements and opens their CSS declaration block.
L09362: sets or begins the min-height CSS property.
L09363: completes the current CSS property value.
L09365: sets or begins the display CSS property.
L09366: completes the current CSS property value.
L09368: sets or begins the align-items CSS property.
L09369: completes the current CSS property value.
L09371: sets or begins the justify-content CSS property.
L09372: completes the current CSS property value.
L09374: sets or begins the padding CSS property.
L09375: completes the current CSS property value.
L09377: sets or begins the border CSS property.
L09378: completes the current CSS property value.
L09380: sets or begins the border-radius CSS property.
L09381: completes the current CSS property value.
L09383: sets or begins the color CSS property.
L09384: completes the current CSS property value.
L09386: sets or begins the background CSS property.
L09387: completes the current CSS property value.
L09389: sets or begins the font-family CSS property.
L09390: completes the current CSS property value.
L09392: sets or begins the font-size CSS property.
L09393: completes the current CSS property value.
L09395: sets or begins the font-weight CSS property.
L09396: completes the current CSS property value.
L09398: sets or begins the text-decoration CSS property.
L09399: completes the current CSS property value.
L09401: sets or begins the cursor CSS property.
L09402: completes the current CSS property value.
L09404: closes the current CSS declaration block.
L09407: selects elements and opens their CSS declaration block.
L09409: sets or begins the color CSS property.
L09410: completes the current CSS property value.
L09412: sets or begins the border-color CSS property.
L09413: completes the current CSS property value.
L09415: sets or begins the background CSS property.
L09416: continues a selector, function, animation step, or property value.
L09417: continues a grouped selector or multi-line CSS value.
L09418: continues a grouped selector or multi-line CSS value.
L09419: continues a selector, function, animation step, or property value.
L09420: completes the current CSS property value.
L09422: closes the current CSS declaration block.
L09425: continues CSS documentation for maintainers.
L09426: continues a selector, function, animation step, or property value.
L09427: continues CSS documentation for maintainers.
L09429: selects elements and opens their CSS declaration block.
L09431: sets or begins the position CSS property.
L09432: completes the current CSS property value.
L09434: sets or begins the top CSS property.
L09435: completes the current CSS property value.
L09437: sets or begins the right CSS property.
L09438: completes the current CSS property value.
L09440: sets or begins the z-index CSS property.
L09441: completes the current CSS property value.
L09443: sets or begins the display CSS property.
L09444: completes the current CSS property value.
L09446: sets or begins the gap CSS property.
L09447: completes the current CSS property value.
L09449: sets or begins the width CSS property.
L09450: completes the current CSS property value.
L09452: sets or begins the pointer-events CSS property.
L09453: completes the current CSS property value.
L09455: closes the current CSS declaration block.
L09458: selects elements and opens their CSS declaration block.
L09460: sets or begins the display CSS property.
L09461: completes the current CSS property value.
L09463: sets or begins the align-items CSS property.
L09464: completes the current CSS property value.
L09466: sets or begins the gap CSS property.
L09467: completes the current CSS property value.
L09469: sets or begins the padding CSS property.
L09470: completes the current CSS property value.
L09472: sets or begins the border CSS property.
L09473: completes the current CSS property value.
L09475: sets or begins the border-left CSS property.
L09476: completes the current CSS property value.
L09478: sets or begins the border-radius CSS property.
L09479: completes the current CSS property value.
L09481: sets or begins the color CSS property.
L09482: completes the current CSS property value.
L09484: sets or begins the background CSS property.
L09485: completes the current CSS property value.
L09487: sets or begins the box-shadow CSS property.
L09488: completes the current CSS property value.
L09490: sets or begins the backdrop-filter CSS property.
L09491: completes the current CSS property value.
L09493: sets or begins the pointer-events CSS property.
L09494: completes the current CSS property value.
L09496: sets or begins the animation CSS property.
L09497: continues a selector, function, animation step, or property value.
L09498: continues a selector, function, animation step, or property value.
L09499: completes the current CSS property value.
L09501: closes the current CSS declaration block.
L09504: selects elements and opens their CSS declaration block.
L09506: sets or begins the border-left-color CSS property.
L09507: completes the current CSS property value.
L09509: closes the current CSS declaration block.
L09512: selects elements and opens their CSS declaration block.
L09514: sets or begins the border-left-color CSS property.
L09515: completes the current CSS property value.
L09517: closes the current CSS declaration block.
L09520: selects elements and opens their CSS declaration block.
L09522: sets or begins the border-left-color CSS property.
L09523: completes the current CSS property value.
L09525: closes the current CSS declaration block.
L09528: selects elements and opens their CSS declaration block.
L09530: sets or begins the display CSS property.
L09531: completes the current CSS property value.
L09533: sets or begins the color CSS property.
L09534: completes the current CSS property value.
L09536: sets or begins the font-family CSS property.
L09537: completes the current CSS property value.
L09539: sets or begins the font-size CSS property.
L09540: completes the current CSS property value.
L09542: closes the current CSS declaration block.
L09545: selects elements and opens their CSS declaration block.
L09547: sets or begins the margin CSS property.
L09548: completes the current CSS property value.
L09550: sets or begins the font-size CSS property.
L09551: completes the current CSS property value.
L09553: closes the current CSS declaration block.
L09556: selects elements and opens their CSS declaration block.
L09558: sets or begins the margin-left CSS property.
L09559: completes the current CSS property value.
L09561: sets or begins the padding CSS property.
L09562: completes the current CSS property value.
L09564: sets or begins the border CSS property.
L09565: completes the current CSS property value.
L09567: sets or begins the color CSS property.
L09568: completes the current CSS property value.
L09570: sets or begins the background CSS property.
L09571: completes the current CSS property value.
L09573: sets or begins the cursor CSS property.
L09574: completes the current CSS property value.
L09576: closes the current CSS declaration block.
L09579: defines an animation timeline.
L09581: selects elements and opens their CSS declaration block.
L09583: sets or begins the opacity CSS property.
L09584: completes the current CSS property value.
L09586: sets or begins the transform CSS property.
L09587: continues a selector, function, animation step, or property value.
L09588: completes the current CSS property value.
L09590: closes the current CSS declaration block.
L09592: selects elements and opens their CSS declaration block.
L09594: sets or begins the opacity CSS property.
L09595: completes the current CSS property value.
L09597: sets or begins the transform CSS property.
L09598: continues a selector, function, animation step, or property value.
L09599: completes the current CSS property value.
L09601: closes the current CSS declaration block.
L09603: closes the current CSS declaration block.
L09606: continues CSS documentation for maintainers.
L09607: continues a selector, function, animation step, or property value.
L09608: continues CSS documentation for maintainers.
L09610: starts a responsive media query.
L09612: selects elements and opens their CSS declaration block.
L09614: sets or begins the main-header-height CSS property.
L09615: completes the current CSS property value.
L09617: closes the current CSS declaration block.
L09620: selects elements and opens their CSS declaration block.
L09622: sets or begins the display CSS property.
L09623: completes the current CSS property value.
L09625: closes the current CSS declaration block.
L09628: selects elements and opens their CSS declaration block.
L09630: sets or begins the display CSS property.
L09631: completes the current CSS property value.
L09633: sets or begins the flex CSS property.
L09634: completes the current CSS property value.
L09636: closes the current CSS declaration block.
L09639: selects elements and opens their CSS declaration block.
L09641: sets or begins the position CSS property.
L09642: completes the current CSS property value.
L09644: sets or begins the top CSS property.
L09645: completes the current CSS property value.
L09647: sets or begins the right CSS property.
L09648: completes the current CSS property value.
L09650: sets or begins the z-index CSS property.
L09651: completes the current CSS property value.
L09653: sets or begins the display CSS property.
L09654: completes the current CSS property value.
L09656: sets or begins the flex-direction CSS property.
L09657: completes the current CSS property value.
L09659: sets or begins the width CSS property.
L09660: completes the current CSS property value.
L09662: sets or begins the height CSS property.
L09663: completes the current CSS property value.
L09665: sets or begins the padding CSS property.
L09666: completes the current CSS property value.
L09668: sets or begins the color CSS property.
L09669: completes the current CSS property value.
L09671: sets or begins the background CSS property.
L09672: continues a selector, function, animation step, or property value.
L09673: continues a grouped selector or multi-line CSS value.
L09674: continues a grouped selector or multi-line CSS value.
L09675: continues a selector, function, animation step, or property value.
L09676: continues a grouped selector or multi-line CSS value.
L09677: completes the current CSS property value.
L09679: sets or begins the box-shadow CSS property.
L09680: completes the current CSS property value.
L09682: sets or begins the transform CSS property.
L09683: completes the current CSS property value.
L09685: sets or begins the transition CSS property.
L09686: completes the current CSS property value.
L09688: sets or begins the overflow-y CSS property.
L09689: completes the current CSS property value.
L09691: closes the current CSS declaration block.
L09694: selects elements and opens their CSS declaration block.
L09696: sets or begins the transform CSS property.
L09697: completes the current CSS property value.
L09699: closes the current CSS declaration block.
L09702: selects elements and opens their CSS declaration block.
L09704: sets or begins the position CSS property.
L09705: completes the current CSS property value.
L09707: sets or begins the inset CSS property.
L09708: completes the current CSS property value.
L09710: sets or begins the z-index CSS property.
L09711: completes the current CSS property value.
L09713: sets or begins the display CSS property.
L09714: completes the current CSS property value.
L09716: sets or begins the background CSS property.
L09717: completes the current CSS property value.
L09719: sets or begins the backdrop-filter CSS property.
L09720: completes the current CSS property value.
L09722: sets or begins the opacity CSS property.
L09723: completes the current CSS property value.
L09725: sets or begins the visibility CSS property.
L09726: completes the current CSS property value.
L09728: sets or begins the transition CSS property.
L09729: continues a grouped selector or multi-line CSS value.
L09730: completes the current CSS property value.
L09732: closes the current CSS declaration block.
L09735: selects elements and opens their CSS declaration block.
L09737: sets or begins the opacity CSS property.
L09738: completes the current CSS property value.
L09740: sets or begins the visibility CSS property.
L09741: completes the current CSS property value.
L09743: closes the current CSS declaration block.
L09746: selects elements and opens their CSS declaration block.
L09748: sets or begins the display CSS property.
L09749: completes the current CSS property value.
L09751: sets or begins the align-items CSS property.
L09752: completes the current CSS property value.
L09754: sets or begins the justify-content CSS property.
L09755: completes the current CSS property value.
L09757: sets or begins the gap CSS property.
L09758: completes the current CSS property value.
L09760: sets or begins the padding CSS property.
L09761: completes the current CSS property value.
L09763: sets or begins the border-bottom CSS property.
L09764: completes the current CSS property value.
L09766: sets or begins the color CSS property.
L09767: completes the current CSS property value.
L09769: sets or begins the font-family CSS property.
L09770: completes the current CSS property value.
L09772: sets or begins the font-weight CSS property.
L09773: completes the current CSS property value.
L09775: closes the current CSS declaration block.
L09778: selects elements and opens their CSS declaration block.
L09780: sets or begins the display CSS property.
L09781: completes the current CSS property value.
L09783: sets or begins the place-items CSS property.
L09784: completes the current CSS property value.
L09786: sets or begins the width CSS property.
L09787: completes the current CSS property value.
L09789: sets or begins the height CSS property.
L09790: completes the current CSS property value.
L09792: sets or begins the border CSS property.
L09793: completes the current CSS property value.
L09795: sets or begins the border-radius CSS property.
L09796: completes the current CSS property value.
L09798: sets or begins the color CSS property.
L09799: completes the current CSS property value.
L09801: sets or begins the background CSS property.
L09802: completes the current CSS property value.
L09804: sets or begins the cursor CSS property.
L09805: completes the current CSS property value.
L09807: closes the current CSS declaration block.
L09810: selects elements and opens their CSS declaration block.
L09812: sets or begins the display CSS property.
L09813: completes the current CSS property value.
L09815: sets or begins the margin-top CSS property.
L09816: completes the current CSS property value.
L09818: closes the current CSS declaration block.
L09821: selects elements and opens their CSS declaration block.
L09823: sets or begins the display CSS property.
L09824: completes the current CSS property value.
L09826: sets or begins the align-items CSS property.
L09827: completes the current CSS property value.
L09829: sets or begins the gap CSS property.
L09830: completes the current CSS property value.
L09832: sets or begins the min-height CSS property.
L09833: completes the current CSS property value.
L09835: sets or begins the padding CSS property.
L09836: completes the current CSS property value.
L09838: sets or begins the border-bottom CSS property.
L09839: completes the current CSS property value.
L09841: sets or begins the color CSS property.
L09842: completes the current CSS property value.
L09844: sets or begins the font-family CSS property.
L09845: completes the current CSS property value.
L09847: sets or begins the font-weight CSS property.
L09848: completes the current CSS property value.
L09850: sets or begins the text-decoration CSS property.
L09851: completes the current CSS property value.
L09853: closes the current CSS declaration block.
L09856: selects elements and opens their CSS declaration block.
L09858: sets or begins the color CSS property.
L09859: completes the current CSS property value.
L09861: sets or begins the font-size CSS property.
L09862: completes the current CSS property value.
L09864: closes the current CSS declaration block.
L09867: selects elements and opens their CSS declaration block.
L09869: sets or begins the color CSS property.
L09870: completes the current CSS property value.
L09872: sets or begins the background CSS property.
L09873: completes the current CSS property value.
L09875: closes the current CSS declaration block.
L09878: selects elements and opens their CSS declaration block.
L09880: sets or begins the margin-top CSS property.
L09881: completes the current CSS property value.
L09883: sets or begins the padding CSS property.
L09884: completes the current CSS property value.
L09886: sets or begins the border CSS property.
L09887: completes the current CSS property value.
L09889: sets or begins the border-radius CSS property.
L09890: completes the current CSS property value.
L09892: sets or begins the background CSS property.
L09893: completes the current CSS property value.
L09895: closes the current CSS declaration block.
L09898: selects elements and opens their CSS declaration block.
L09900: sets or begins the display CSS property.
L09901: completes the current CSS property value.
L09903: sets or begins the color CSS property.
L09904: completes the current CSS property value.
L09906: sets or begins the font-family CSS property.
L09907: completes the current CSS property value.
L09909: sets or begins the font-size CSS property.
L09910: completes the current CSS property value.
L09912: closes the current CSS declaration block.
L09915: selects elements and opens their CSS declaration block.
L09917: sets or begins the display CSS property.
L09918: completes the current CSS property value.
L09920: sets or begins the margin-top CSS property.
L09921: completes the current CSS property value.
L09923: sets or begins the color CSS property.
L09924: completes the current CSS property value.
L09926: sets or begins the font-family CSS property.
L09927: completes the current CSS property value.
L09929: sets or begins the font-size CSS property.
L09930: completes the current CSS property value.
L09932: sets or begins the font-weight CSS property.
L09933: completes the current CSS property value.
L09935: sets or begins the text-decoration CSS property.
L09936: completes the current CSS property value.
L09938: closes the current CSS declaration block.
L09941: selects elements and opens their CSS declaration block.
L09943: sets or begins the grid-template-columns CSS property.
L09944: continues a selector, function, animation step, or property value.
L09945: completes the current CSS property value.
L09947: sets or begins the gap CSS property.
L09948: completes the current CSS property value.
L09950: closes the current CSS declaration block.
L09953: selects elements and opens their CSS declaration block.
L09955: sets or begins the grid-template-columns CSS property.
L09956: completes the current CSS property value.
L09958: closes the current CSS declaration block.
L09961: continues a grouped selector or multi-line CSS value.
L09962: selects elements and opens their CSS declaration block.
L09964: sets or begins the border-top CSS property.
L09965: completes the current CSS property value.
L09967: closes the current CSS declaration block.
L09970: selects elements and opens their CSS declaration block.
L09972: sets or begins the grid-template-columns CSS property.
L09973: completes the current CSS property value.
L09975: closes the current CSS declaration block.
L09978: selects elements and opens their CSS declaration block.
L09980: sets or begins the grid-template-columns CSS property.
L09981: completes the current CSS property value.
L09983: closes the current CSS declaration block.
L09986: selects elements and opens their CSS declaration block.
L09988: sets or begins the grid-column CSS property.
L09989: completes the current CSS property value.
L09991: closes the current CSS declaration block.
L09994: selects elements and opens their CSS declaration block.
L09996: sets or begins the grid-column CSS property.
L09997: completes the current CSS property value.
L09999: closes the current CSS declaration block.
L10002: selects elements and opens their CSS declaration block.
L10004: sets or begins the grid-template-columns CSS property.
L10005: continues a selector, function, animation step, or property value.
L10006: completes the current CSS property value.
L10008: closes the current CSS declaration block.
L10011: selects elements and opens their CSS declaration block.
L10013: sets or begins the grid-column CSS property.
L10014: completes the current CSS property value.
L10016: sets or begins the max-width CSS property.
L10017: completes the current CSS property value.
L10019: closes the current CSS declaration block.
L10021: closes the current CSS declaration block.
L10024: continues CSS documentation for maintainers.
L10025: continues a selector, function, animation step, or property value.
L10026: continues CSS documentation for maintainers.
L10028: starts a responsive media query.
L10030: selects elements and opens their CSS declaration block.
L10032: sets or begins the min-height CSS property.
L10033: completes the current CSS property value.
L10035: sets or begins the padding-top CSS property.
L10036: completes the current CSS property value.
L10038: closes the current CSS declaration block.
L10041: selects elements and opens their CSS declaration block.
L10043: sets or begins the grid-template-columns CSS property.
L10044: completes the current CSS property value.
L10046: closes the current CSS declaration block.
L10049: selects elements and opens their CSS declaration block.
L10051: sets or begins the text-align CSS property.
L10052: completes the current CSS property value.
L10054: closes the current CSS declaration block.
L10057: continues a grouped selector or multi-line CSS value.
L10058: selects elements and opens their CSS declaration block.
L10060: sets or begins the margin-inline CSS property.
L10061: completes the current CSS property value.
L10063: closes the current CSS declaration block.
L10066: selects elements and opens their CSS declaration block.
L10068: sets or begins the justify-content CSS property.
L10069: completes the current CSS property value.
L10071: closes the current CSS declaration block.
L10074: selects elements and opens their CSS declaration block.
L10076: sets or begins the max-width CSS property.
L10077: completes the current CSS property value.
L10079: sets or begins the margin-inline CSS property.
L10080: completes the current CSS property value.
L10082: closes the current CSS declaration block.
L10085: selects elements and opens their CSS declaration block.
L10087: sets or begins the width CSS property.
L10088: completes the current CSS property value.
L10090: sets or begins the margin-inline CSS property.
L10091: completes the current CSS property value.
L10093: closes the current CSS declaration block.
L10096: selects elements and opens their CSS declaration block.
L10098: sets or begins the display CSS property.
L10099: completes the current CSS property value.
L10101: closes the current CSS declaration block.
L10104: selects elements and opens their CSS declaration block.
L10106: sets or begins the margin-top CSS property.
L10107: completes the current CSS property value.
L10109: closes the current CSS declaration block.
L10112: selects elements and opens their CSS declaration block.
L10114: sets or begins the grid-template-columns CSS property.
L10115: completes the current CSS property value.
L10117: closes the current CSS declaration block.
L10120: selects elements and opens their CSS declaration block.
L10122: sets or begins the border-top CSS property.
L10123: completes the current CSS property value.
L10125: sets or begins the border-left CSS property.
L10126: completes the current CSS property value.
L10128: closes the current CSS declaration block.
L10131: selects elements and opens their CSS declaration block.
L10133: sets or begins the border-left CSS property.
L10134: completes the current CSS property value.
L10136: closes the current CSS declaration block.
L10139: selects elements and opens their CSS declaration block.
L10141: sets or begins the border-top CSS property.
L10142: completes the current CSS property value.
L10144: closes the current CSS declaration block.
L10147: selects elements and opens their CSS declaration block.
L10149: sets or begins the grid-column CSS property.
L10150: completes the current CSS property value.
L10152: closes the current CSS declaration block.
L10155: selects elements and opens their CSS declaration block.
L10157: sets or begins the grid-template-columns CSS property.
L10158: completes the current CSS property value.
L10160: sets or begins the align-items CSS property.
L10161: completes the current CSS property value.
L10163: sets or begins the gap CSS property.
L10164: completes the current CSS property value.
L10166: closes the current CSS declaration block.
L10169: continues a grouped selector or multi-line CSS value.
L10170: selects elements and opens their CSS declaration block.
L10172: sets or begins the justify-self CSS property.
L10173: completes the current CSS property value.
L10175: closes the current CSS declaration block.
L10178: selects elements and opens their CSS declaration block.
L10180: sets or begins the grid-template-columns CSS property.
L10181: completes the current CSS property value.
L10183: closes the current CSS declaration block.
L10186: selects elements and opens their CSS declaration block.
L10188: sets or begins the grid-row CSS property.
L10189: completes the current CSS property value.
L10191: sets or begins the min-height CSS property.
L10192: completes the current CSS property value.
L10194: closes the current CSS declaration block.
L10197: selects elements and opens their CSS declaration block.
L10199: sets or begins the grid-template-columns CSS property.
L10200: completes the current CSS property value.
L10202: sets or begins the row-gap CSS property.
L10203: completes the current CSS property value.
L10205: closes the current CSS declaration block.
L10208: selects elements and opens their CSS declaration block.
L10210: sets or begins the display CSS property.
L10211: completes the current CSS property value.
L10213: closes the current CSS declaration block.
L10216: continues a grouped selector or multi-line CSS value.
L10217: selects elements and opens their CSS declaration block.
L10219: sets or begins the grid-template-columns CSS property.
L10220: completes the current CSS property value.
L10222: closes the current CSS declaration block.
L10225: selects elements and opens their CSS declaration block.
L10227: sets or begins the grid-template-columns CSS property.
L10228: completes the current CSS property value.
L10230: closes the current CSS declaration block.
L10233: selects elements and opens their CSS declaration block.
L10235: sets or begins the grid-template-columns CSS property.
L10236: continues a selector, function, animation step, or property value.
L10237: continues a selector, function, animation step, or property value.
L10238: completes the current CSS property value.
L10240: closes the current CSS declaration block.
L10243: selects elements and opens their CSS declaration block.
L10245: sets or begins the grid-column CSS property.
L10246: completes the current CSS property value.
L10248: sets or begins the justify-self CSS property.
L10249: completes the current CSS property value.
L10251: closes the current CSS declaration block.
L10254: selects elements and opens their CSS declaration block.
L10256: sets or begins the align-items CSS property.
L10257: completes the current CSS property value.
L10259: sets or begins the flex-direction CSS property.
L10260: completes the current CSS property value.
L10262: closes the current CSS declaration block.
L10265: selects elements and opens their CSS declaration block.
L10267: sets or begins the grid-template-columns CSS property.
L10268: completes the current CSS property value.
L10270: closes the current CSS declaration block.
L10273: selects elements and opens their CSS declaration block.
L10275: sets or begins the grid-column CSS property.
L10276: completes the current CSS property value.
L10278: closes the current CSS declaration block.
L10281: selects elements and opens their CSS declaration block.
L10283: sets or begins the grid-template-columns CSS property.
L10284: completes the current CSS property value.
L10286: closes the current CSS declaration block.
L10289: continues a grouped selector or multi-line CSS value.
L10290: continues a grouped selector or multi-line CSS value.
L10291: selects elements and opens their CSS declaration block.
L10293: sets or begins the grid-column CSS property.
L10294: completes the current CSS property value.
L10296: closes the current CSS declaration block.
L10299: selects elements and opens their CSS declaration block.
L10301: sets or begins the grid-column CSS property.
L10302: completes the current CSS property value.
L10304: closes the current CSS declaration block.
L10307: selects elements and opens their CSS declaration block.
L10309: sets or begins the grid-template-columns CSS property.
L10310: completes the current CSS property value.
L10312: closes the current CSS declaration block.
L10315: selects elements and opens their CSS declaration block.
L10317: sets or begins the grid-template-columns CSS property.
L10318: completes the current CSS property value.
L10320: closes the current CSS declaration block.
L10323: selects elements and opens their CSS declaration block.
L10325: sets or begins the grid-column CSS property.
L10326: completes the current CSS property value.
L10328: closes the current CSS declaration block.
L10331: selects elements and opens their CSS declaration block.
L10333: sets or begins the grid-template-columns CSS property.
L10334: completes the current CSS property value.
L10336: sets or begins the gap CSS property.
L10337: completes the current CSS property value.
L10339: closes the current CSS declaration block.
L10342: selects elements and opens their CSS declaration block.
L10344: sets or begins the position CSS property.
L10345: completes the current CSS property value.
L10347: closes the current CSS declaration block.
L10350: selects elements and opens their CSS declaration block.
L10352: sets or begins the grid-template-columns CSS property.
L10353: completes the current CSS property value.
L10355: closes the current CSS declaration block.
L10358: selects elements and opens their CSS declaration block.
L10360: sets or begins the grid-template-columns CSS property.
L10361: completes the current CSS property value.
L10363: closes the current CSS declaration block.
L10366: selects elements and opens their CSS declaration block.
L10368: sets or begins the grid-column CSS property.
L10369: completes the current CSS property value.
L10371: sets or begins the max-width CSS property.
L10372: completes the current CSS property value.
L10374: closes the current CSS declaration block.
L10376: closes the current CSS declaration block.
L10379: continues CSS documentation for maintainers.
L10380: continues a selector, function, animation step, or property value.
L10381: continues CSS documentation for maintainers.
L10383: starts a responsive media query.
L10385: selects elements and opens their CSS declaration block.
L10387: sets or begins the page-gutter CSS property.
L10388: completes the current CSS property value.
L10390: sets or begins the emergency-bar-height CSS property.
L10391: completes the current CSS property value.
L10393: sets or begins the main-header-height CSS property.
L10394: completes the current CSS property value.
L10396: sets or begins the sticky-offset CSS property.
L10397: completes the current CSS property value.
L10399: closes the current CSS declaration block.
L10402: selects elements and opens their CSS declaration block.
L10404: sets or begins the min-height CSS property.
L10405: completes the current CSS property value.
L10407: sets or begins the justify-content CSS property.
L10408: completes the current CSS property value.
L10410: sets or begins the padding-block CSS property.
L10411: completes the current CSS property value.
L10413: sets or begins the text-align CSS property.
L10414: completes the current CSS property value.
L10416: closes the current CSS declaration block.
L10419: selects elements and opens their CSS declaration block.
L10421: sets or begins the display CSS property.
L10422: completes the current CSS property value.
L10424: closes the current CSS declaration block.
L10427: selects elements and opens their CSS declaration block.
L10429: sets or begins the flex-wrap CSS property.
L10430: completes the current CSS property value.
L10432: sets or begins the justify-content CSS property.
L10433: completes the current CSS property value.
L10435: sets or begins the row-gap CSS property.
L10436: completes the current CSS property value.
L10438: closes the current CSS declaration block.
L10441: selects elements and opens their CSS declaration block.
L10443: sets or begins the min-height CSS property.
L10444: completes the current CSS property value.
L10446: closes the current CSS declaration block.
L10449: selects elements and opens their CSS declaration block.
L10451: sets or begins the width CSS property.
L10452: completes the current CSS property value.
L10454: sets or begins the height CSS property.
L10455: completes the current CSS property value.
L10457: sets or begins the flex-basis CSS property.
L10458: completes the current CSS property value.
L10460: sets or begins the border-radius CSS property.
L10461: completes the current CSS property value.
L10463: closes the current CSS declaration block.
L10466: selects elements and opens their CSS declaration block.
L10468: sets or begins the font-size CSS property.
L10469: completes the current CSS property value.
L10471: closes the current CSS declaration block.
L10474: selects elements and opens their CSS declaration block.
L10476: sets or begins the font-size CSS property.
L10477: completes the current CSS property value.
L10479: closes the current CSS declaration block.
L10482: selects elements and opens their CSS declaration block.
L10484: sets or begins the padding-top CSS property.
L10485: completes the current CSS property value.
L10487: sets or begins the padding-bottom CSS property.
L10488: completes the current CSS property value.
L10490: closes the current CSS declaration block.
L10493: selects elements and opens their CSS declaration block.
L10495: sets or begins the justify-content CSS property.
L10496: completes the current CSS property value.
L10498: sets or begins the font-size CSS property.
L10499: completes the current CSS property value.
L10501: sets or begins the letter-spacing CSS property.
L10502: completes the current CSS property value.
L10504: closes the current CSS declaration block.
L10507: selects elements and opens their CSS declaration block.
L10509: sets or begins the font-size CSS property.
L10510: completes the current CSS property value.
L10512: closes the current CSS declaration block.
L10515: selects elements and opens their CSS declaration block.
L10517: sets or begins the font-size CSS property.
L10518: completes the current CSS property value.
L10520: sets or begins the line-height CSS property.
L10521: completes the current CSS property value.
L10523: closes the current CSS declaration block.
L10526: selects elements and opens their CSS declaration block.
L10528: sets or begins the display CSS property.
L10529: completes the current CSS property value.
L10531: sets or begins the grid-template-columns CSS property.
L10532: completes the current CSS property value.
L10534: closes the current CSS declaration block.
L10537: selects elements and opens their CSS declaration block.
L10539: sets or begins the width CSS property.
L10540: completes the current CSS property value.
L10542: closes the current CSS declaration block.
L10545: selects elements and opens their CSS declaration block.
L10547: sets or begins the width CSS property.
L10548: completes the current CSS property value.
L10550: sets or begins the justify-self CSS property.
L10551: completes the current CSS property value.
L10553: closes the current CSS declaration block.
L10556: selects elements and opens their CSS declaration block.
L10558: sets or begins the grid-template-columns CSS property.
L10559: completes the current CSS property value.
L10561: closes the current CSS declaration block.
L10564: selects elements and opens their CSS declaration block.
L10566: sets or begins the min-height CSS property.
L10567: completes the current CSS property value.
L10569: closes the current CSS declaration block.
L10572: selects elements and opens their CSS declaration block.
L10574: sets or begins the min-height CSS property.
L10575: completes the current CSS property value.
L10577: closes the current CSS declaration block.
L10580: selects elements and opens their CSS declaration block.
L10582: sets or begins the width CSS property.
L10583: completes the current CSS property value.
L10585: closes the current CSS declaration block.
L10588: selects elements and opens their CSS declaration block.
L10590: sets or begins the width CSS property.
L10591: completes the current CSS property value.
L10593: sets or begins the min-height CSS property.
L10594: completes the current CSS property value.
L10596: sets or begins the padding CSS property.
L10597: completes the current CSS property value.
L10599: sets or begins the font-size CSS property.
L10600: completes the current CSS property value.
L10602: closes the current CSS declaration block.
L10605: selects elements and opens their CSS declaration block.
L10607: sets or begins the left CSS property.
L10608: completes the current CSS property value.
L10610: closes the current CSS declaration block.
L10613: selects elements and opens their CSS declaration block.
L10615: sets or begins the right CSS property.
L10616: completes the current CSS property value.
L10618: closes the current CSS declaration block.
L10621: selects elements and opens their CSS declaration block.
L10623: sets or begins the left CSS property.
L10624: completes the current CSS property value.
L10626: closes the current CSS declaration block.
L10629: selects elements and opens their CSS declaration block.
L10631: sets or begins the right CSS property.
L10632: completes the current CSS property value.
L10634: closes the current CSS declaration block.
L10637: selects elements and opens their CSS declaration block.
L10639: sets or begins the grid-template-columns CSS property.
L10640: completes the current CSS property value.
L10642: closes the current CSS declaration block.
L10645: continues a grouped selector or multi-line CSS value.
L10646: continues a grouped selector or multi-line CSS value.
L10647: selects elements and opens their CSS declaration block.
L10649: sets or begins the border-top CSS property.
L10650: completes the current CSS property value.
L10652: sets or begins the border-left CSS property.
L10653: completes the current CSS property value.
L10655: closes the current CSS declaration block.
L10658: selects elements and opens their CSS declaration block.
L10660: sets or begins the border-top CSS property.
L10661: completes the current CSS property value.
L10663: closes the current CSS declaration block.
L10666: selects elements and opens their CSS declaration block.
L10668: sets or begins the margin-bottom CSS property.
L10669: completes the current CSS property value.
L10671: closes the current CSS declaration block.
L10674: selects elements and opens their CSS declaration block.
L10676: sets or begins the font-size CSS property.
L10677: completes the current CSS property value.
L10679: closes the current CSS declaration block.
L10682: continues a grouped selector or multi-line CSS value.
L10683: continues a grouped selector or multi-line CSS value.
L10684: continues a grouped selector or multi-line CSS value.
L10685: continues a grouped selector or multi-line CSS value.
L10686: continues a grouped selector or multi-line CSS value.
L10687: selects elements and opens their CSS declaration block.
L10689: sets or begins the grid-template-columns CSS property.
L10690: completes the current CSS property value.
L10692: closes the current CSS declaration block.
L10695: selects elements and opens their CSS declaration block.
L10697: sets or begins the min-height CSS property.
L10698: completes the current CSS property value.
L10700: closes the current CSS declaration block.
L10703: selects elements and opens their CSS declaration block.
L10705: sets or begins the grid-template-columns CSS property.
L10706: completes the current CSS property value.
L10708: sets or begins the gap CSS property.
L10709: completes the current CSS property value.
L10711: closes the current CSS declaration block.
L10714: selects elements and opens their CSS declaration block.
L10716: sets or begins the display CSS property.
L10717: completes the current CSS property value.
L10719: sets or begins the grid-template-columns CSS property.
L10720: continues a selector, function, animation step, or property value.
L10721: completes the current CSS property value.
L10723: sets or begins the grid-template-rows CSS property.
L10724: completes the current CSS property value.
L10726: sets or begins the column-gap CSS property.
L10727: completes the current CSS property value.
L10729: sets or begins the text-align CSS property.
L10730: completes the current CSS property value.
L10732: closes the current CSS declaration block.
L10735: selects elements and opens their CSS declaration block.
L10737: sets or begins the grid-row CSS property.
L10738: completes the current CSS property value.
L10740: sets or begins the margin-bottom CSS property.
L10741: completes the current CSS property value.
L10743: closes the current CSS declaration block.
L10746: continues a grouped selector or multi-line CSS value.
L10747: selects elements and opens their CSS declaration block.
L10749: sets or begins the align-self CSS property.
L10750: completes the current CSS property value.
L10752: closes the current CSS declaration block.
L10755: selects elements and opens their CSS declaration block.
L10757: sets or begins the grid-template-columns CSS property.
L10758: continues a selector, function, animation step, or property value.
L10759: completes the current CSS property value.
L10761: closes the current CSS declaration block.
L10764: selects elements and opens their CSS declaration block.
L10766: sets or begins the grid-column CSS property.
L10767: completes the current CSS property value.
L10769: sets or begins the padding-left CSS property.
L10770: completes the current CSS property value.
L10772: closes the current CSS declaration block.
L10775: selects elements and opens their CSS declaration block.
L10777: sets or begins the white-space CSS property.
L10778: completes the current CSS property value.
L10780: closes the current CSS declaration block.
L10783: selects elements and opens their CSS declaration block.
L10785: sets or begins the width CSS property.
L10786: completes the current CSS property value.
L10788: closes the current CSS declaration block.
L10791: continues a grouped selector or multi-line CSS value.
L10792: continues a grouped selector or multi-line CSS value.
L10793: continues a grouped selector or multi-line CSS value.
L10794: continues a grouped selector or multi-line CSS value.
L10795: selects elements and opens their CSS declaration block.
L10797: sets or begins the align-items CSS property.
L10798: completes the current CSS property value.
L10800: sets or begins the flex-direction CSS property.
L10801: completes the current CSS property value.
L10803: closes the current CSS declaration block.
L10806: selects elements and opens their CSS declaration block.
L10808: sets or begins the grid-template-columns CSS property.
L10809: completes the current CSS property value.
L10811: sets or begins the gap CSS property.
L10812: completes the current CSS property value.
L10814: sets or begins the padding CSS property.
L10815: completes the current CSS property value.
L10817: closes the current CSS declaration block.
L10820: selects elements and opens their CSS declaration block.
L10822: sets or begins the grid-column CSS property.
L10823: completes the current CSS property value.
L10825: closes the current CSS declaration block.
L10828: selects elements and opens their CSS declaration block.
L10830: sets or begins the width CSS property.
L10831: completes the current CSS property value.
L10833: sets or begins the overflow-x CSS property.
L10834: completes the current CSS property value.
L10836: sets or begins the scrollbar-width CSS property.
L10837: completes the current CSS property value.
L10839: closes the current CSS declaration block.
L10842: selects elements and opens their CSS declaration block.
L10844: sets or begins the display CSS property.
L10845: completes the current CSS property value.
L10847: closes the current CSS declaration block.
L10850: continues a grouped selector or multi-line CSS value.
L10851: selects elements and opens their CSS declaration block.
L10853: sets or begins the grid-column CSS property.
L10854: completes the current CSS property value.
L10856: closes the current CSS declaration block.
L10859: selects elements and opens their CSS declaration block.
L10861: sets or begins the width CSS property.
L10862: completes the current CSS property value.
L10864: closes the current CSS declaration block.
L10867: selects elements and opens their CSS declaration block.
L10869: sets or begins the grid-column CSS property.
L10870: completes the current CSS property value.
L10872: closes the current CSS declaration block.
L10875: selects elements and opens their CSS declaration block.
L10877: sets or begins the grid-template-columns CSS property.
L10878: completes the current CSS property value.
L10880: sets or begins the gap CSS property.
L10881: completes the current CSS property value.
L10883: closes the current CSS declaration block.
L10886: selects elements and opens their CSS declaration block.
L10888: sets or begins the align-items CSS property.
L10889: completes the current CSS property value.
L10891: sets or begins the flex-direction CSS property.
L10892: completes the current CSS property value.
L10894: closes the current CSS declaration block.
L10897: selects elements and opens their CSS declaration block.
L10899: sets or begins the width CSS property.
L10900: completes the current CSS property value.
L10902: closes the current CSS declaration block.
L10905: selects elements and opens their CSS declaration block.
L10907: sets or begins the grid-template-columns CSS property.
L10908: completes the current CSS property value.
L10910: closes the current CSS declaration block.
L10913: selects elements and opens their CSS declaration block.
L10915: sets or begins the text-align CSS property.
L10916: completes the current CSS property value.
L10918: closes the current CSS declaration block.
L10921: selects elements and opens their CSS declaration block.
L10923: sets or begins the justify-content CSS property.
L10924: completes the current CSS property value.
L10926: closes the current CSS declaration block.
L10929: selects elements and opens their CSS declaration block.
L10931: sets or begins the right CSS property.
L10932: completes the current CSS property value.
L10934: sets or begins the bottom CSS property.
L10935: completes the current CSS property value.
L10937: closes the current CSS declaration block.
L10940: selects elements and opens their CSS declaration block.
L10942: sets or begins the display CSS property.
L10943: completes the current CSS property value.
L10945: closes the current CSS declaration block.
L10948: selects elements and opens their CSS declaration block.
L10950: sets or begins the width CSS property.
L10951: completes the current CSS property value.
L10953: sets or begins the padding CSS property.
L10954: completes the current CSS property value.
L10956: sets or begins the justify-content CSS property.
L10957: completes the current CSS property value.
L10959: closes the current CSS declaration block.
L10962: selects elements and opens their CSS declaration block.
L10964: sets or begins the right CSS property.
L10965: completes the current CSS property value.
L10967: sets or begins the bottom CSS property.
L10968: completes the current CSS property value.
L10970: closes the current CSS declaration block.
L10973: selects elements and opens their CSS declaration block.
L10975: sets or begins the top CSS property.
L10976: completes the current CSS property value.
L10978: sets or begins the right CSS property.
L10979: completes the current CSS property value.
L10981: sets or begins the width CSS property.
L10982: completes the current CSS property value.
L10984: closes the current CSS declaration block.
L10986: closes the current CSS declaration block.
L10989: continues CSS documentation for maintainers.
L10990: continues a selector, function, animation step, or property value.
L10991: continues CSS documentation for maintainers.
L10993: starts a responsive media query.
L10995: selects elements and opens their CSS declaration block.
L10997: sets or begins the display CSS property.
L10998: completes the current CSS property value.
L11000: closes the current CSS declaration block.
L11003: selects elements and opens their CSS declaration block.
L11005: sets or begins the font-size CSS property.
L11006: completes the current CSS property value.
L11008: closes the current CSS declaration block.
L11011: selects elements and opens their CSS declaration block.
L11013: sets or begins the min-height CSS property.
L11014: completes the current CSS property value.
L11016: closes the current CSS declaration block.
L11019: selects elements and opens their CSS declaration block.
L11021: sets or begins the width CSS property.
L11022: completes the current CSS property value.
L11024: closes the current CSS declaration block.
L11027: selects elements and opens their CSS declaration block.
L11029: sets or begins the width CSS property.
L11030: completes the current CSS property value.
L11032: sets or begins the font-size CSS property.
L11033: completes the current CSS property value.
L11035: closes the current CSS declaration block.
L11038: selects elements and opens their CSS declaration block.
L11040: sets or begins the display CSS property.
L11041: completes the current CSS property value.
L11043: closes the current CSS declaration block.
L11046: selects elements and opens their CSS declaration block.
L11048: sets or begins the padding CSS property.
L11049: completes the current CSS property value.
L11051: closes the current CSS declaration block.
L11054: selects elements and opens their CSS declaration block.
L11056: sets or begins the padding CSS property.
L11057: completes the current CSS property value.
L11059: closes the current CSS declaration block.
L11061: closes the current CSS declaration block.
L11064: continues CSS documentation for maintainers.
L11065: continues a selector, function, animation step, or property value.
L11066: continues CSS documentation for maintainers.
L11068: starts a responsive media query.
L11070: continues a grouped selector or multi-line CSS value.
L11071: continues a grouped selector or multi-line CSS value.
L11072: continues a grouped selector or multi-line CSS value.
L11073: continues a grouped selector or multi-line CSS value.
L11074: continues a grouped selector or multi-line CSS value.
L11075: continues a grouped selector or multi-line CSS value.
L11076: continues a grouped selector or multi-line CSS value.
L11077: continues a grouped selector or multi-line CSS value.
L11078: continues a grouped selector or multi-line CSS value.
L11079: continues a grouped selector or multi-line CSS value.
L11080: continues a grouped selector or multi-line CSS value.
L11081: continues a grouped selector or multi-line CSS value.
L11082: continues a grouped selector or multi-line CSS value.
L11083: continues a grouped selector or multi-line CSS value.
L11084: continues a grouped selector or multi-line CSS value.
L11085: continues a grouped selector or multi-line CSS value.
L11086: continues a grouped selector or multi-line CSS value.
L11087: continues a grouped selector or multi-line CSS value.
L11088: selects elements and opens their CSS declaration block.
L11090: sets or begins the display CSS property.
L11091: completes the current CSS property value.
L11093: closes the current CSS declaration block.
L11096: selects elements and opens their CSS declaration block.
L11098: sets or begins the color CSS property.
L11099: completes the current CSS property value.
L11101: sets or begins the background CSS property.
L11102: completes the current CSS property value.
L11104: closes the current CSS declaration block.
L11107: selects elements and opens their CSS declaration block.
L11109: sets or begins the color CSS property.
L11110: completes the current CSS property value.
L11112: sets or begins the background CSS property.
L11113: completes the current CSS property value.
L11115: closes the current CSS declaration block.
L11118: selects elements and opens their CSS declaration block.
L11120: sets or begins the display CSS property.
L11121: completes the current CSS property value.
L11123: closes the current CSS declaration block.
L11126: selects elements and opens their CSS declaration block.
L11128: sets or begins the break-inside CSS property.
L11129: completes the current CSS property value.
L11131: sets or begins the color CSS property.
L11132: completes the current CSS property value.
L11134: sets or begins the border CSS property.
L11135: completes the current CSS property value.
L11137: sets or begins the background CSS property.
L11138: completes the current CSS property value.
L11140: closes the current CSS declaration block.
L11143: continues a grouped selector or multi-line CSS value.
L11144: continues a grouped selector or multi-line CSS value.
L11145: continues a grouped selector or multi-line CSS value.
L11146: selects elements and opens their CSS declaration block.
L11148: sets or begins the color CSS property.
L11149: completes the current CSS property value.
L11151: closes the current CSS declaration block.
L11153: closes the current CSS declaration block.
L11156: continues CSS documentation for maintainers.
L11157: continues a selector, function, animation step, or property value.
L11158: continues CSS documentation for maintainers.
L11160: starts a responsive media query.
L11162: selects elements and opens their CSS declaration block.
L11164: sets or begins the scroll-behavior CSS property.
L11165: completes the current CSS property value.
L11167: closes the current CSS declaration block.
L11170: continues CSS documentation for maintainers.
L11171: continues CSS documentation for maintainers.
L11172: continues CSS documentation for maintainers.
L11174: sets or begins the animation-duration CSS property.
L11175: completes the current CSS property value.
L11177: sets or begins the animation-iteration-count CSS property.
L11178: completes the current CSS property value.
L11180: sets or begins the scroll-behavior CSS property.
L11181: completes the current CSS property value.
L11183: sets or begins the transition-duration CSS property.
L11184: completes the current CSS property value.
L11186: closes the current CSS declaration block.
L11189: selects elements and opens their CSS declaration block.
L11191: sets or begins the opacity CSS property.
L11192: completes the current CSS property value.
L11194: sets or begins the transform CSS property.
L11195: completes the current CSS property value.
L11197: closes the current CSS declaration block.
L11200: selects elements and opens their CSS declaration block.
L11202: sets or begins the animation CSS property.
L11203: completes the current CSS property value.
L11205: closes the current CSS declaration block.
L11207: closes the current CSS declaration block.
L11212: continues CSS documentation for maintainers.
L11213: continues a selector, function, animation step, or property value.
L11215: continues a selector, function, animation step, or property value.
L11216: continues a selector, function, animation step, or property value.
L11217: continues CSS documentation for maintainers.
L11220: continues CSS documentation for maintainers.
L11221: continues a selector, function, animation step, or property value.
L11222: continues CSS documentation for maintainers.
L11224: selects elements and opens their CSS declaration block.
L11225: sets or begins the color CSS property.
L11226: sets or begins the background CSS property.
L11227: sets or begins the text-shadow CSS property.
L11228: closes the current CSS declaration block.
L11230: selects elements and opens their CSS declaration block.
L11231: sets or begins the color CSS property.
L11232: sets or begins the background CSS property.
L11233: sets or begins the text-shadow CSS property.
L11234: closes the current CSS declaration block.
L11236: continues a grouped selector or multi-line CSS value.
L11237: continues a grouped selector or multi-line CSS value.
L11238: continues a grouped selector or multi-line CSS value.
L11239: continues a grouped selector or multi-line CSS value.
L11240: continues a grouped selector or multi-line CSS value.
L11241: selects elements and opens their CSS declaration block.
L11242: sets or begins the color CSS property.
L11243: sets or begins the background CSS property.
L11244: closes the current CSS declaration block.
L11246: continues a grouped selector or multi-line CSS value.
L11247: continues a grouped selector or multi-line CSS value.
L11248: continues a grouped selector or multi-line CSS value.
L11249: continues a grouped selector or multi-line CSS value.
L11250: continues a grouped selector or multi-line CSS value.
L11251: selects elements and opens their CSS declaration block.
L11252: sets or begins the color CSS property.
L11253: sets or begins the background CSS property.
L11254: closes the current CSS declaration block.
L11256: continues a grouped selector or multi-line CSS value.
L11257: continues a grouped selector or multi-line CSS value.
L11258: continues a grouped selector or multi-line CSS value.
L11259: continues a grouped selector or multi-line CSS value.
L11260: continues a grouped selector or multi-line CSS value.
L11261: continues a grouped selector or multi-line CSS value.
L11262: continues a grouped selector or multi-line CSS value.
L11263: selects elements and opens their CSS declaration block.
L11264: sets or begins the color CSS property.
L11265: closes the current CSS declaration block.
L11267: continues a grouped selector or multi-line CSS value.
L11268: continues a grouped selector or multi-line CSS value.
L11269: continues a grouped selector or multi-line CSS value.
L11270: selects elements and opens their CSS declaration block.
L11271: sets or begins the outline-color CSS property.
L11272: closes the current CSS declaration block.
L11275: continues CSS documentation for maintainers.
L11276: continues a selector, function, animation step, or property value.
L11277: continues CSS documentation for maintainers.
L11279: selects elements and opens their CSS declaration block.
L11280: sets or begins the position CSS property.
L11281: sets or begins the z-index CSS property.
L11282: sets or begins the padding CSS property.
L11283: sets or begins the color CSS property.
L11284: sets or begins the background CSS property.
L11285: sets or begins the border-bottom CSS property.
L11286: sets or begins the font-family CSS property.
L11287: sets or begins the font-size CSS property.
L11288: sets or begins the font-weight CSS property.
L11289: sets or begins the text-align CSS property.
L11290: closes the current CSS declaration block.
L11293: continues CSS documentation for maintainers.
L11294: continues a selector, function, animation step, or property value.
L11295: continues CSS documentation for maintainers.
L11297: selects elements and opens their CSS declaration block.
L11298: sets or begins the background CSS property.
L11299: continues a grouped selector or multi-line CSS value.
L11300: continues a grouped selector or multi-line CSS value.
L11301: continues a grouped selector or multi-line CSS value.
L11302: continues a grouped selector or multi-line CSS value.
L11303: completes the current CSS property value.
L11304: closes the current CSS declaration block.
L11306: selects elements and opens their CSS declaration block.
L11307: sets or begins the position CSS property.
L11308: sets or begins the top CSS property.
L11309: sets or begins the left CSS property.
L11310: sets or begins the width CSS property.
L11311: sets or begins the height CSS property.
L11312: sets or begins the display CSS property.
L11313: sets or begins the border-radius CSS property.
L11314: sets or begins the filter CSS property.
L11315: sets or begins the opacity CSS property.
L11316: sets or begins the background CSS property.
L11317: sets or begins the animation CSS property.
L11318: closes the current CSS declaration block.
L11320: selects elements and opens their CSS declaration block.
L11321: sets or begins the position CSS property.
L11322: sets or begins the display CSS property.
L11323: sets or begins the width CSS property.
L11324: sets or begins the height CSS property.
L11325: sets or begins the border CSS property.
L11326: sets or begins the border-radius CSS property.
L11327: sets or begins the opacity CSS property.
L11328: sets or begins the pointer-events CSS property.
L11329: closes the current CSS declaration block.
L11331: selects elements and opens their CSS declaration block.
L11332: sets or begins the top CSS property.
L11333: sets or begins the left CSS property.
L11334: sets or begins the background CSS property.
L11335: sets or begins the animation CSS property.
L11336: closes the current CSS declaration block.
L11338: selects elements and opens their CSS declaration block.
L11339: sets or begins the right CSS property.
L11340: sets or begins the bottom CSS property.
L11341: sets or begins the background CSS property.
L11342: sets or begins the animation CSS property.
L11343: closes the current CSS declaration block.
L11345: selects elements and opens their CSS declaration block.
L11346: sets or begins the position CSS property.
L11347: sets or begins the inset CSS property.
L11348: sets or begins the opacity CSS property.
L11349: sets or begins the pointer-events CSS property.
L11350: sets or begins the background-image CSS property.
L11351: continues a grouped selector or multi-line CSS value.
L11352: continues a grouped selector or multi-line CSS value.
L11353: continues a grouped selector or multi-line CSS value.
L11354: completes the current CSS property value.
L11355: sets or begins the background-size CSS property.
L11356: sets or begins the animation CSS property.
L11357: closes the current CSS declaration block.
L11359: defines an animation timeline.
L11360: continues a selector, function, animation step, or property value.
L11361: continues a selector, function, animation step, or property value.
L11362: continues a selector, function, animation step, or property value.
L11363: closes the current CSS declaration block.
L11365: defines an animation timeline.
L11366: continues a selector, function, animation step, or property value.
L11367: continues a selector, function, animation step, or property value.
L11368: closes the current CSS declaration block.
L11370: defines an animation timeline.
L11371: continues a selector, function, animation step, or property value.
L11372: continues a selector, function, animation step, or property value.
L11373: closes the current CSS declaration block.
L11375: defines an animation timeline.
L11376: continues a selector, function, animation step, or property value.
L11377: continues a selector, function, animation step, or property value.
L11378: closes the current CSS declaration block.
L11381: continues CSS documentation for maintainers.
L11382: continues a selector, function, animation step, or property value.
L11383: continues CSS documentation for maintainers.
L11385: selects elements and opens their CSS declaration block.
L11386: sets or begins the min-height CSS property.
L11387: sets or begins the background CSS property.
L11388: continues a grouped selector or multi-line CSS value.
L11389: continues a grouped selector or multi-line CSS value.
L11390: continues a grouped selector or multi-line CSS value.
L11391: completes the current CSS property value.
L11392: closes the current CSS declaration block.
L11394: continues a grouped selector or multi-line CSS value.
L11395: selects elements and opens their CSS declaration block.
L11396: sets or begins the content CSS property.
L11397: sets or begins the position CSS property.
L11398: sets or begins the pointer-events CSS property.
L11399: sets or begins the border-radius CSS property.
L11400: closes the current CSS declaration block.
L11402: selects elements and opens their CSS declaration block.
L11403: sets or begins the top CSS property.
L11404: sets or begins the left CSS property.
L11405: sets or begins the width CSS property.
L11406: sets or begins the height CSS property.
L11407: sets or begins the border CSS property.
L11408: sets or begins the box-shadow CSS property.
L11409: closes the current CSS declaration block.
L11411: selects elements and opens their CSS declaration block.
L11412: sets or begins the right CSS property.
L11413: sets or begins the bottom CSS property.
L11414: sets or begins the width CSS property.
L11415: sets or begins the height CSS property.
L11416: sets or begins the border CSS property.
L11417: sets or begins the box-shadow CSS property.
L11418: closes the current CSS declaration block.
L11420: continues a grouped selector or multi-line CSS value.
L11421: continues a grouped selector or multi-line CSS value.
L11422: continues a grouped selector or multi-line CSS value.
L11423: continues a grouped selector or multi-line CSS value.
L11424: continues a grouped selector or multi-line CSS value.
L11425: continues a grouped selector or multi-line CSS value.
L11426: continues a grouped selector or multi-line CSS value.
L11427: selects elements and opens their CSS declaration block.
L11428: sets or begins the isolation CSS property.
L11429: closes the current CSS declaration block.
L11431: selects elements and opens their CSS declaration block.
L11432: sets or begins the background CSS property.
L11433: continues a grouped selector or multi-line CSS value.
L11434: continues a grouped selector or multi-line CSS value.
L11435: completes the current CSS property value.
L11436: closes the current CSS declaration block.
L11438: selects elements and opens their CSS declaration block.
L11439: sets or begins the background CSS property.
L11440: continues a grouped selector or multi-line CSS value.
L11441: continues a grouped selector or multi-line CSS value.
L11442: completes the current CSS property value.
L11443: closes the current CSS declaration block.
L11445: selects elements and opens their CSS declaration block.
L11446: sets or begins the background CSS property.
L11447: continues a grouped selector or multi-line CSS value.
L11448: continues a grouped selector or multi-line CSS value.
L11449: completes the current CSS property value.
L11450: closes the current CSS declaration block.
L11452: selects elements and opens their CSS declaration block.
L11453: sets or begins the background CSS property.
L11454: continues a grouped selector or multi-line CSS value.
L11455: continues a grouped selector or multi-line CSS value.
L11456: completes the current CSS property value.
L11457: closes the current CSS declaration block.
L11459: selects elements and opens their CSS declaration block.
L11460: sets or begins the background CSS property.
L11461: continues a grouped selector or multi-line CSS value.
L11462: continues a grouped selector or multi-line CSS value.
L11463: completes the current CSS property value.
L11464: closes the current CSS declaration block.
L11466: selects elements and opens their CSS declaration block.
L11467: sets or begins the background CSS property.
L11468: continues a grouped selector or multi-line CSS value.
L11469: continues a grouped selector or multi-line CSS value.
L11470: completes the current CSS property value.
L11471: closes the current CSS declaration block.
L11473: selects elements and opens their CSS declaration block.
L11474: sets or begins the background CSS property.
L11475: continues a grouped selector or multi-line CSS value.
L11476: continues a grouped selector or multi-line CSS value.
L11477: completes the current CSS property value.
L11478: closes the current CSS declaration block.
L11480: selects elements and opens their CSS declaration block.
L11481: sets or begins the background CSS property.
L11482: continues a grouped selector or multi-line CSS value.
L11483: continues a grouped selector or multi-line CSS value.
L11484: continues a grouped selector or multi-line CSS value.
L11485: completes the current CSS property value.
L11486: closes the current CSS declaration block.
L11488: continues a grouped selector or multi-line CSS value.
L11489: continues a grouped selector or multi-line CSS value.
L11490: continues a grouped selector or multi-line CSS value.
L11491: continues a grouped selector or multi-line CSS value.
L11492: continues a grouped selector or multi-line CSS value.
L11493: continues a grouped selector or multi-line CSS value.
L11494: continues a grouped selector or multi-line CSS value.
L11495: selects elements and opens their CSS declaration block.
L11496: sets or begins the content CSS property.
L11497: sets or begins the position CSS property.
L11498: sets or begins the inset CSS property.
L11499: sets or begins the z-index CSS property.
L11500: sets or begins the pointer-events CSS property.
L11501: sets or begins the opacity CSS property.
L11502: sets or begins the background-image CSS property.
L11503: sets or begins the background-size CSS property.
L11504: sets or begins the mask-image CSS property.
L11505: closes the current CSS declaration block.
L11507: continues a grouped selector or multi-line CSS value.
L11508: continues a grouped selector or multi-line CSS value.
L11509: continues a grouped selector or multi-line CSS value.
L11510: continues a grouped selector or multi-line CSS value.
L11511: continues a grouped selector or multi-line CSS value.
L11512: continues a grouped selector or multi-line CSS value.
L11513: continues a grouped selector or multi-line CSS value.
L11514: selects elements and opens their CSS declaration block.
L11515: sets or begins the content CSS property.
L11516: sets or begins the position CSS property.
L11517: sets or begins the top CSS property.
L11518: sets or begins the left CSS property.
L11519: sets or begins the width CSS property.
L11520: sets or begins the height CSS property.
L11521: sets or begins the transform CSS property.
L11522: sets or begins the background CSS property.
L11523: sets or begins the pointer-events CSS property.
L11524: closes the current CSS declaration block.
L11527: continues CSS documentation for maintainers.
L11528: continues a selector, function, animation step, or property value.
L11529: continues CSS documentation for maintainers.
L11531: continues a grouped selector or multi-line CSS value.
L11532: selects elements and opens their CSS declaration block.
L11533: sets or begins the display CSS property.
L11534: closes the current CSS declaration block.
L11536: starts a responsive media query.
L11537: selects elements and opens their CSS declaration block.
L11538: sets or begins the position CSS property.
L11539: sets or begins the top CSS property.
L11540: sets or begins the right CSS property.
L11541: sets or begins the z-index CSS property.
L11542: sets or begins the display CSS property.
L11543: sets or begins the flex-direction CSS property.
L11544: sets or begins the width CSS property.
L11545: sets or begins the height CSS property.
L11546: sets or begins the padding CSS property.
L11547: sets or begins the color CSS property.
L11548: sets or begins the background CSS property.
L11549: continues a grouped selector or multi-line CSS value.
L11550: continues a grouped selector or multi-line CSS value.
L11551: completes the current CSS property value.
L11552: sets or begins the box-shadow CSS property.
L11553: sets or begins the opacity CSS property.
L11554: sets or begins the visibility CSS property.
L11555: sets or begins the pointer-events CSS property.
L11556: sets or begins the transform CSS property.
L11557: sets or begins the transition CSS property.
L11558: sets or begins the overflow-y CSS property.
L11559: sets or begins the overscroll-behavior CSS property.
L11560: sets or begins the -webkit-overflow-scrolling CSS property.
L11561: closes the current CSS declaration block.
L11563: selects elements and opens their CSS declaration block.
L11564: sets or begins the position CSS property.
L11565: sets or begins the inset CSS property.
L11566: sets or begins the z-index CSS property.
L11567: sets or begins the display CSS property.
L11568: sets or begins the opacity CSS property.
L11569: sets or begins the visibility CSS property.
L11570: sets or begins the pointer-events CSS property.
L11571: sets or begins the background CSS property.
L11572: sets or begins the backdrop-filter CSS property.
L11573: sets or begins the transition CSS property.
L11574: closes the current CSS declaration block.
L11576: continues a grouped selector or multi-line CSS value.
L11577: continues a grouped selector or multi-line CSS value.
L11578: selects elements and opens their CSS declaration block.
L11579: sets or begins the animation CSS property.
L11580: closes the current CSS declaration block.
L11582: continues a selector, function, animation step, or property value.
L11583: continues a selector, function, animation step, or property value.
L11585: defines an animation timeline.
L11586: continues a selector, function, animation step, or property value.
L11587: continues a selector, function, animation step, or property value.
L11588: closes the current CSS declaration block.
L11589: closes the current CSS declaration block.
L11591: starts a responsive media query.
L11592: selects elements and opens their CSS declaration block.
L11593: sets or begins the height CSS property.
L11594: closes the current CSS declaration block.
L11595: closes the current CSS declaration block.
L11598: continues CSS documentation for maintainers.
L11599: continues a selector, function, animation step, or property value.
L11600: continues CSS documentation for maintainers.
L11602: selects elements and opens their CSS declaration block.
L11603: sets or begins the position CSS property.
L11604: sets or begins the z-index CSS property.
L11605: sets or begins the display CSS property.
L11606: sets or begins the grid-template-columns CSS property.
L11607: sets or begins the align-items CSS property.
L11608: sets or begins the gap CSS property.
L11609: sets or begins the margin-bottom CSS property.
L11610: sets or begins the padding CSS property.
L11611: sets or begins the border CSS property.
L11612: sets or begins the border-radius CSS property.
L11613: sets or begins the background CSS property.
L11614: sets or begins the box-shadow CSS property.
L11615: sets or begins the backdrop-filter CSS property.
L11616: closes the current CSS declaration block.
L11618: selects elements and opens their CSS declaration block.
L11619: sets or begins the margin-bottom CSS property.
L11620: sets or begins the color CSS property.
L11621: sets or begins the font-family CSS property.
L11622: sets or begins the font-size CSS property.
L11623: sets or begins the font-weight CSS property.
L11624: sets or begins the letter-spacing CSS property.
L11625: sets or begins the text-transform CSS property.
L11626: closes the current CSS declaration block.
L11628: selects elements and opens their CSS declaration block.
L11629: sets or begins the margin-bottom CSS property.
L11630: sets or begins the color CSS property.
L11631: sets or begins the font-size CSS property.
L11632: closes the current CSS declaration block.
L11634: selects elements and opens their CSS declaration block.
L11635: sets or begins the margin-bottom CSS property.
L11636: sets or begins the color CSS property.
L11637: sets or begins the font-size CSS property.
L11638: closes the current CSS declaration block.
L11640: selects elements and opens their CSS declaration block.
L11641: sets or begins the display CSS property.
L11642: sets or begins the grid-template-columns CSS property.
L11643: sets or begins the gap CSS property.
L11644: closes the current CSS declaration block.
L11646: selects elements and opens their CSS declaration block.
L11647: sets or begins the position CSS property.
L11648: sets or begins the display CSS property.
L11649: sets or begins the grid-template-columns CSS property.
L11650: sets or begins the align-items CSS property.
L11651: sets or begins the gap CSS property.
L11652: sets or begins the min-height CSS property.
L11653: sets or begins the padding CSS property.
L11654: sets or begins the border CSS property.
L11655: sets or begins the border-radius CSS property.
L11656: sets or begins the color CSS property.
L11657: sets or begins the background CSS property.
L11658: sets or begins the text-decoration CSS property.
L11659: sets or begins the overflow CSS property.
L11660: sets or begins the transition CSS property.
L11661: closes the current CSS declaration block.
L11663: selects elements and opens their CSS declaration block.
L11664: sets or begins the content CSS property.
L11665: sets or begins the position CSS property.
L11666: sets or begins the inset CSS property.
L11667: sets or begins the opacity CSS property.
L11668: sets or begins the transition CSS property.
L11669: closes the current CSS declaration block.
L11671: continues a selector, function, animation step, or property value.
L11672: continues a selector, function, animation step, or property value.
L11673: continues a selector, function, animation step, or property value.
L11674: continues a selector, function, animation step, or property value.
L11675: continues a selector, function, animation step, or property value.
L11677: selects elements and opens their CSS declaration block.
L11678: sets or begins the transform CSS property.
L11679: sets or begins the border-color CSS property.
L11680: sets or begins the background CSS property.
L11681: sets or begins the box-shadow CSS property.
L11682: closes the current CSS declaration block.
L11684: continues a selector, function, animation step, or property value.
L11685: continues a selector, function, animation step, or property value.
L11687: selects elements and opens their CSS declaration block.
L11688: sets or begins the display CSS property.
L11689: sets or begins the place-items CSS property.
L11690: sets or begins the width CSS property.
L11691: sets or begins the height CSS property.
L11692: sets or begins the border-radius CSS property.
L11693: sets or begins the color CSS property.
L11694: sets or begins the background CSS property.
L11695: closes the current CSS declaration block.
L11697: continues a selector, function, animation step, or property value.
L11699: selects elements and opens their CSS declaration block.
L11700: sets or begins the display CSS property.
L11701: sets or begins the flex-direction CSS property.
L11702: closes the current CSS declaration block.
L11704: selects elements and opens their CSS declaration block.
L11705: sets or begins the color CSS property.
L11706: sets or begins the font-family CSS property.
L11707: sets or begins the font-size CSS property.
L11708: closes the current CSS declaration block.
L11710: selects elements and opens their CSS declaration block.
L11711: sets or begins the margin-top CSS property.
L11712: sets or begins the color CSS property.
L11713: sets or begins the font-size CSS property.
L11714: closes the current CSS declaration block.
L11716: selects elements and opens their CSS declaration block.
L11717: sets or begins the color CSS property.
L11718: sets or begins the font-size CSS property.
L11719: closes the current CSS declaration block.
L11722: continues CSS documentation for maintainers.
L11723: continues a selector, function, animation step, or property value.
L11724: continues CSS documentation for maintainers.
L11726: continues a selector, function, animation step, or property value.
L11728: starts a responsive media query.
L11729: continues a selector, function, animation step, or property value.
L11730: closes the current CSS declaration block.
L11732: starts a responsive media query.
L11733: continues a selector, function, animation step, or property value.
L11735: selects elements and opens their CSS declaration block.
L11736: sets or begins the position CSS property.
L11737: sets or begins the right CSS property.
L11738: sets or begins the bottom CSS property.
L11739: sets or begins the left CSS property.
L11740: sets or begins the z-index CSS property.
L11741: sets or begins the display CSS property.
L11742: sets or begins the grid-template-columns CSS property.
L11743: sets or begins the min-height CSS property.
L11744: sets or begins the padding CSS property.
L11745: sets or begins the border CSS property.
L11746: sets or begins the border-radius CSS property.
L11747: sets or begins the background CSS property.
L11748: sets or begins the box-shadow CSS property.
L11749: sets or begins the backdrop-filter CSS property.
L11750: closes the current CSS declaration block.
L11752: selects elements and opens their CSS declaration block.
L11753: sets or begins the display CSS property.
L11754: sets or begins the flex-direction CSS property.
L11755: sets or begins the align-items CSS property.
L11756: sets or begins the justify-content CSS property.
L11757: sets or begins the gap CSS property.
L11758: sets or begins the min-width CSS property.
L11759: sets or begins the min-height CSS property.
L11760: sets or begins the border-radius CSS property.
L11761: sets or begins the color CSS property.
L11762: sets or begins the font-family CSS property.
L11763: sets or begins the font-size CSS property.
L11764: sets or begins the font-weight CSS property.
L11765: sets or begins the text-decoration CSS property.
L11766: sets or begins the transition CSS property.
L11767: closes the current CSS declaration block.
L11769: continues a selector, function, animation step, or property value.
L11771: continues a grouped selector or multi-line CSS value.
L11772: continues a grouped selector or multi-line CSS value.
L11773: selects elements and opens their CSS declaration block.
L11774: sets or begins the color CSS property.
L11775: sets or begins the background CSS property.
L11776: sets or begins the transform CSS property.
L11777: closes the current CSS declaration block.
L11779: continues a selector, function, animation step, or property value.
L11781: selects elements and opens their CSS declaration block.
L11782: sets or begins the right CSS property.
L11783: sets or begins the bottom CSS property.
L11784: closes the current CSS declaration block.
L11786: selects elements and opens their CSS declaration block.
L11787: sets or begins the right CSS property.
L11788: sets or begins the bottom CSS property.
L11789: closes the current CSS declaration block.
L11790: closes the current CSS declaration block.
L11793: continues CSS documentation for maintainers.
L11794: continues a selector, function, animation step, or property value.
L11795: continues CSS documentation for maintainers.
L11797: starts a browser feature support query.
L11798: continues a grouped selector or multi-line CSS value.
L11799: continues a grouped selector or multi-line CSS value.
L11800: continues a grouped selector or multi-line CSS value.
L11801: selects elements and opens their CSS declaration block.
L11802: sets or begins the background-color CSS property.
L11803: closes the current CSS declaration block.
L11805: continues a grouped selector or multi-line CSS value.
L11806: selects elements and opens their CSS declaration block.
L11807: sets or begins the background-color CSS property.
L11808: closes the current CSS declaration block.
L11809: closes the current CSS declaration block.
L11811: starts a responsive media query.
L11812: continues a selector, function, animation step, or property value.
L11814: continues a grouped selector or multi-line CSS value.
L11815: continues a grouped selector or multi-line CSS value.
L11816: continues a grouped selector or multi-line CSS value.
L11817: continues a grouped selector or multi-line CSS value.
L11818: continues a grouped selector or multi-line CSS value.
L11819: continues a grouped selector or multi-line CSS value.
L11820: continues a grouped selector or multi-line CSS value.
L11821: selects elements and opens their CSS declaration block.
L11822: sets or begins the border-color CSS property.
L11823: closes the current CSS declaration block.
L11825: continues a selector, function, animation step, or property value.
L11826: closes the current CSS declaration block.
L11831: continues CSS documentation for maintainers.
L11832: continues a grouped selector or multi-line CSS value.
L11833: continues a selector, function, animation step, or property value.
L11835: continues a selector, function, animation step, or property value.
L11836: continues a selector, function, animation step, or property value.
L11837: continues a selector, function, animation step, or property value.
L11838: continues a selector, function, animation step, or property value.
L11839: continues a selector, function, animation step, or property value.
L11840: continues a selector, function, animation step, or property value.
L11841: continues a selector, function, animation step, or property value.
L11842: continues CSS documentation for maintainers.
L11845: continues CSS documentation for maintainers.
L11846: continues a selector, function, animation step, or property value.
L11847: continues a selector, function, animation step, or property value.
L11848: sets or begins the Green CSS property.
L11849: sets or begins the Red CSS property.
L11850: sets or begins the Yellow CSS property.
L11851: sets or begins the Teal CSS property.
L11852: sets or begins the Blue CSS property.
L11853: continues CSS documentation for maintainers.
L11855: selects elements and opens their CSS declaration block.
L11857: sets or begins the logo-green CSS property.
L11858: completes the current CSS property value.
L11860: sets or begins the logo-red CSS property.
L11861: completes the current CSS property value.
L11863: sets or begins the logo-yellow CSS property.
L11864: completes the current CSS property value.
L11866: sets or begins the logo-teal CSS property.
L11867: completes the current CSS property value.
L11869: sets or begins the logo-blue CSS property.
L11870: completes the current CSS property value.
L11873: continues CSS documentation for maintainers.
L11875: sets or begins the navy-950 CSS property.
L11876: completes the current CSS property value.
L11878: sets or begins the navy-900 CSS property.
L11879: completes the current CSS property value.
L11881: sets or begins the navy-850 CSS property.
L11882: completes the current CSS property value.
L11884: sets or begins the navy-800 CSS property.
L11885: completes the current CSS property value.
L11887: sets or begins the blue-700 CSS property.
L11888: completes the current CSS property value.
L11890: sets or begins the blue-600 CSS property.
L11891: completes the current CSS property value.
L11893: sets or begins the blue-500 CSS property.
L11894: completes the current CSS property value.
L11896: sets or begins the gold-600 CSS property.
L11897: completes the current CSS property value.
L11899: sets or begins the gold-500 CSS property.
L11900: completes the current CSS property value.
L11902: sets or begins the gold-400 CSS property.
L11903: completes the current CSS property value.
L11905: sets or begins the gold-300 CSS property.
L11906: completes the current CSS property value.
L11908: sets or begins the teal-700 CSS property.
L11909: completes the current CSS property value.
L11911: sets or begins the teal-600 CSS property.
L11912: completes the current CSS property value.
L11914: sets or begins the success-600 CSS property.
L11915: completes the current CSS property value.
L11917: sets or begins the success-500 CSS property.
L11918: completes the current CSS property value.
L11920: sets or begins the danger-700 CSS property.
L11921: completes the current CSS property value.
L11923: sets or begins the danger-600 CSS property.
L11924: completes the current CSS property value.
L11926: closes the current CSS declaration block.
L11929: continues CSS documentation for maintainers.
L11930: continues a selector, function, animation step, or property value.
L11931: continues CSS documentation for maintainers.
L11933: selects elements and opens their CSS declaration block.
L11935: sets or begins the border CSS property.
L11936: completes the current CSS property value.
L11938: sets or begins the background CSS property.
L11939: continues a selector, function, animation step, or property value.
L11940: continues a grouped selector or multi-line CSS value.
L11941: continues a grouped selector or multi-line CSS value.
L11942: continues a selector, function, animation step, or property value.
L11943: completes the current CSS property value.
L11945: sets or begins the box-shadow CSS property.
L11946: continues a grouped selector or multi-line CSS value.
L11947: continues a grouped selector or multi-line CSS value.
L11948: completes the current CSS property value.
L11950: closes the current CSS declaration block.
L11953: continues a grouped selector or multi-line CSS value.
L11954: selects elements and opens their CSS declaration block.
L11956: sets or begins the object-fit CSS property.
L11957: completes the current CSS property value.
L11959: sets or begins the object-position CSS property.
L11960: completes the current CSS property value.
L11962: sets or begins the image-rendering CSS property.
L11963: completes the current CSS property value.
L11965: closes the current CSS declaration block.
L11968: continues CSS documentation for maintainers.
L11969: continues a selector, function, animation step, or property value.
L11970: continues a selector, function, animation step, or property value.
L11971: continues a selector, function, animation step, or property value.
L11972: continues a selector, function, animation step, or property value.
L11973: continues a selector, function, animation step, or property value.
L11974: continues CSS documentation for maintainers.
L11976: selects elements and opens their CSS declaration block.
L11978: sets or begins the min-height CSS property.
L11979: completes the current CSS property value.
L11981: closes the current CSS declaration block.
L11984: selects elements and opens their CSS declaration block.
L11986: sets or begins the animation CSS property.
L11987: continues a selector, function, animation step, or property value.
L11988: continues a selector, function, animation step, or property value.
L11989: continues a selector, function, animation step, or property value.
L11990: completes the current CSS property value.
L11992: closes the current CSS declaration block.
L11995: selects elements and opens their CSS declaration block.
L11997: sets or begins the display CSS property.
L11998: completes the current CSS property value.
L12000: closes the current CSS declaration block.
L12003: defines an animation timeline.
L12005: selects elements and opens their CSS declaration block.
L12007: sets or begins the opacity CSS property.
L12008: completes the current CSS property value.
L12010: sets or begins the transform CSS property.
L12011: completes the current CSS property value.
L12013: closes the current CSS declaration block.
L12015: selects elements and opens their CSS declaration block.
L12017: sets or begins the opacity CSS property.
L12018: completes the current CSS property value.
L12020: sets or begins the transform CSS property.
L12021: completes the current CSS property value.
L12023: closes the current CSS declaration block.
L12025: closes the current CSS declaration block.
L12028: continues a grouped selector or multi-line CSS value.
L12029: continues a grouped selector or multi-line CSS value.
L12030: selects elements and opens their CSS declaration block.
L12032: sets or begins the color CSS property.
L12033: completes the current CSS property value.
L12035: closes the current CSS declaration block.
L12038: selects elements and opens their CSS declaration block.
L12040: sets or begins the width CSS property.
L12041: completes the current CSS property value.
L12043: closes the current CSS declaration block.
L12046: selects elements and opens their CSS declaration block.
L12048: sets or begins the color CSS property.
L12049: completes the current CSS property value.
L12051: closes the current CSS declaration block.
L12054: selects elements and opens their CSS declaration block.
L12056: sets or begins the content CSS property.
L12057: completes the current CSS property value.
L12059: sets or begins the margin-right CSS property.
L12060: completes the current CSS property value.
L12062: sets or begins the font-size CSS property.
L12063: completes the current CSS property value.
L12065: closes the current CSS declaration block.
L12068: continues CSS documentation for maintainers.
L12069: continues a selector, function, animation step, or property value.
L12070: continues CSS documentation for maintainers.
L12072: selects elements and opens their CSS declaration block.
L12074: sets or begins the display CSS property.
L12075: completes the current CSS property value.
L12077: sets or begins the align-items CSS property.
L12078: completes the current CSS property value.
L12080: sets or begins the gap CSS property.
L12081: completes the current CSS property value.
L12083: sets or begins the max-width CSS property.
L12084: completes the current CSS property value.
L12086: sets or begins the margin-top CSS property.
L12087: completes the current CSS property value.
L12089: sets or begins the padding CSS property.
L12090: completes the current CSS property value.
L12092: sets or begins the border CSS property.
L12093: completes the current CSS property value.
L12095: sets or begins the border-radius CSS property.
L12096: completes the current CSS property value.
L12098: sets or begins the color CSS property.
L12099: completes the current CSS property value.
L12101: sets or begins the background CSS property.
L12102: continues a selector, function, animation step, or property value.
L12103: continues a grouped selector or multi-line CSS value.
L12104: continues a grouped selector or multi-line CSS value.
L12105: continues a selector, function, animation step, or property value.
L12106: completes the current CSS property value.
L12108: sets or begins the box-shadow CSS property.
L12109: completes the current CSS property value.
L12111: sets or begins the backdrop-filter CSS property.
L12112: completes the current CSS property value.
L12114: closes the current CSS declaration block.
L12117: selects elements and opens their CSS declaration block.
L12119: sets or begins the display CSS property.
L12120: completes the current CSS property value.
L12122: sets or begins the margin-bottom CSS property.
L12123: completes the current CSS property value.
L12125: sets or begins the color CSS property.
L12126: completes the current CSS property value.
L12128: sets or begins the font-family CSS property.
L12129: completes the current CSS property value.
L12131: closes the current CSS declaration block.
L12134: selects elements and opens their CSS declaration block.
L12136: sets or begins the color CSS property.
L12137: completes the current CSS property value.
L12139: closes the current CSS declaration block.
L12142: selects elements and opens their CSS declaration block.
L12144: sets or begins the display CSS property.
L12145: completes the current CSS property value.
L12147: sets or begins the place-items CSS property.
L12148: completes the current CSS property value.
L12150: sets or begins the width CSS property.
L12151: completes the current CSS property value.
L12153: sets or begins the height CSS property.
L12154: completes the current CSS property value.
L12156: sets or begins the flex CSS property.
L12157: completes the current CSS property value.
L12159: sets or begins the border-radius CSS property.
L12160: completes the current CSS property value.
L12162: sets or begins the color CSS property.
L12163: completes the current CSS property value.
L12165: sets or begins the background CSS property.
L12166: continues a selector, function, animation step, or property value.
L12167: continues a grouped selector or multi-line CSS value.
L12168: continues a grouped selector or multi-line CSS value.
L12169: continues a selector, function, animation step, or property value.
L12170: completes the current CSS property value.
L12172: closes the current CSS declaration block.
L12175: continues CSS documentation for maintainers.
L12176: continues a selector, function, animation step, or property value.
L12177: continues CSS documentation for maintainers.
L12179: selects elements and opens their CSS declaration block.
L12181: sets or begins the display CSS property.
L12182: completes the current CSS property value.
L12184: sets or begins the grid-template-columns CSS property.
L12185: continues a selector, function, animation step, or property value.
L12186: continues a selector, function, animation step, or property value.
L12187: completes the current CSS property value.
L12189: sets or begins the align-items CSS property.
L12190: completes the current CSS property value.
L12192: sets or begins the gap CSS property.
L12193: completes the current CSS property value.
L12195: sets or begins the margin-bottom CSS property.
L12196: completes the current CSS property value.
L12198: sets or begins the padding CSS property.
L12199: completes the current CSS property value.
L12201: sets or begins the border CSS property.
L12202: completes the current CSS property value.
L12204: sets or begins the border-left CSS property.
L12205: completes the current CSS property value.
L12207: sets or begins the border-radius CSS property.
L12208: completes the current CSS property value.
L12210: sets or begins the background CSS property.
L12211: continues a selector, function, animation step, or property value.
L12212: continues a grouped selector or multi-line CSS value.
L12213: continues a grouped selector or multi-line CSS value.
L12214: continues a selector, function, animation step, or property value.
L12215: completes the current CSS property value.
L12217: sets or begins the box-shadow CSS property.
L12218: completes the current CSS property value.
L12220: closes the current CSS declaration block.
L12223: selects elements and opens their CSS declaration block.
L12225: sets or begins the display CSS property.
L12226: completes the current CSS property value.
L12228: sets or begins the place-items CSS property.
L12229: completes the current CSS property value.
L12231: sets or begins the width CSS property.
L12232: completes the current CSS property value.
L12234: sets or begins the height CSS property.
L12235: completes the current CSS property value.
L12237: sets or begins the border-radius CSS property.
L12238: completes the current CSS property value.
L12240: sets or begins the color CSS property.
L12241: completes the current CSS property value.
L12243: sets or begins the background CSS property.
L12244: continues a selector, function, animation step, or property value.
L12245: continues a grouped selector or multi-line CSS value.
L12246: continues a grouped selector or multi-line CSS value.
L12247: continues a selector, function, animation step, or property value.
L12248: completes the current CSS property value.
L12250: sets or begins the box-shadow CSS property.
L12251: completes the current CSS property value.
L12253: closes the current CSS declaration block.
L12256: selects elements and opens their CSS declaration block.
L12258: sets or begins the margin-bottom CSS property.
L12259: completes the current CSS property value.
L12261: sets or begins the color CSS property.
L12262: completes the current CSS property value.
L12264: sets or begins the font-family CSS property.
L12265: completes the current CSS property value.
L12267: sets or begins the font-size CSS property.
L12268: completes the current CSS property value.
L12270: sets or begins the font-weight CSS property.
L12271: completes the current CSS property value.
L12273: sets or begins the letter-spacing CSS property.
L12274: completes the current CSS property value.
L12276: sets or begins the text-transform CSS property.
L12277: completes the current CSS property value.
L12279: closes the current CSS declaration block.
L12282: selects elements and opens their CSS declaration block.
L12284: sets or begins the margin-bottom CSS property.
L12285: completes the current CSS property value.
L12287: sets or begins the color CSS property.
L12288: completes the current CSS property value.
L12290: closes the current CSS declaration block.
L12293: selects elements and opens their CSS declaration block.
L12295: sets or begins the margin-bottom CSS property.
L12296: completes the current CSS property value.
L12298: closes the current CSS declaration block.
L12301: continues CSS documentation for maintainers.
L12302: continues a selector, function, animation step, or property value.
L12303: continues CSS documentation for maintainers.
L12305: selects elements and opens their CSS declaration block.
L12307: sets or begins the color CSS property.
L12308: completes the current CSS property value.
L12310: sets or begins the font-weight CSS property.
L12311: completes the current CSS property value.
L12313: closes the current CSS declaration block.
L12316: selects elements and opens their CSS declaration block.
L12318: sets or begins the content CSS property.
L12319: completes the current CSS property value.
L12321: closes the current CSS declaration block.
L12324: selects elements and opens their CSS declaration block.
L12326: sets or begins the border CSS property.
L12327: completes the current CSS property value.
L12329: sets or begins the border-radius CSS property.
L12330: completes the current CSS property value.
L12332: sets or begins the padding CSS property.
L12333: completes the current CSS property value.
L12335: sets or begins the background CSS property.
L12336: completes the current CSS property value.
L12338: closes the current CSS declaration block.
L12341: continues a grouped selector or multi-line CSS value.
L12342: selects elements and opens their CSS declaration block.
L12344: sets or begins the content CSS property.
L12345: completes the current CSS property value.
L12347: sets or begins the color CSS property.
L12348: completes the current CSS property value.
L12350: sets or begins the font-size CSS property.
L12351: completes the current CSS property value.
L12353: sets or begins the font-weight CSS property.
L12354: completes the current CSS property value.
L12356: sets or begins the text-transform CSS property.
L12357: completes the current CSS property value.
L12359: closes the current CSS declaration block.
L12362: continues CSS documentation for maintainers.
L12363: continues a selector, function, animation step, or property value.
L12364: continues CSS documentation for maintainers.
L12366: selects elements and opens their CSS declaration block.
L12368: sets or begins the background CSS property.
L12369: continues a selector, function, animation step, or property value.
L12370: continues a grouped selector or multi-line CSS value.
L12371: continues a grouped selector or multi-line CSS value.
L12372: continues a selector, function, animation step, or property value.
L12373: continues a grouped selector or multi-line CSS value.
L12374: continues a selector, function, animation step, or property value.
L12375: continues a grouped selector or multi-line CSS value.
L12376: continues a grouped selector or multi-line CSS value.
L12377: continues a selector, function, animation step, or property value.
L12378: continues a grouped selector or multi-line CSS value.
L12379: continues a selector, function, animation step, or property value.
L12380: continues a grouped selector or multi-line CSS value.
L12381: continues a grouped selector or multi-line CSS value.
L12382: continues a selector, function, animation step, or property value.
L12383: completes the current CSS property value.
L12385: closes the current CSS declaration block.
L12388: selects elements and opens their CSS declaration block.
L12390: sets or begins the display CSS property.
L12391: completes the current CSS property value.
L12393: sets or begins the grid-template-columns CSS property.
L12394: continues a selector, function, animation step, or property value.
L12395: completes the current CSS property value.
L12397: sets or begins the gap CSS property.
L12398: completes the current CSS property value.
L12400: closes the current CSS declaration block.
L12403: selects elements and opens their CSS declaration block.
L12405: sets or begins the position CSS property.
L12406: completes the current CSS property value.
L12408: sets or begins the overflow CSS property.
L12409: completes the current CSS property value.
L12411: sets or begins the padding CSS property.
L12412: completes the current CSS property value.
L12414: sets or begins the border CSS property.
L12415: completes the current CSS property value.
L12417: sets or begins the border-radius CSS property.
L12418: completes the current CSS property value.
L12420: sets or begins the background CSS property.
L12421: completes the current CSS property value.
L12423: sets or begins the box-shadow CSS property.
L12424: completes the current CSS property value.
L12426: closes the current CSS declaration block.
L12429: selects elements and opens their CSS declaration block.
L12431: sets or begins the content CSS property.
L12432: completes the current CSS property value.
L12434: sets or begins the position CSS property.
L12435: completes the current CSS property value.
L12437: sets or begins the inset CSS property.
L12438: completes the current CSS property value.
L12440: sets or begins the pointer-events CSS property.
L12441: completes the current CSS property value.
L12443: sets or begins the background CSS property.
L12444: continues a selector, function, animation step, or property value.
L12445: continues a grouped selector or multi-line CSS value.
L12446: continues a grouped selector or multi-line CSS value.
L12447: continues a grouped selector or multi-line CSS value.
L12448: continues a selector, function, animation step, or property value.
L12449: completes the current CSS property value.
L12451: closes the current CSS declaration block.
L12454: selects elements and opens their CSS declaration block.
L12456: sets or begins the position CSS property.
L12457: completes the current CSS property value.
L12459: closes the current CSS declaration block.
L12462: selects elements and opens their CSS declaration block.
L12464: sets or begins the color CSS property.
L12465: completes the current CSS property value.
L12467: sets or begins the background CSS property.
L12468: continues a selector, function, animation step, or property value.
L12469: continues a grouped selector or multi-line CSS value.
L12470: continues a grouped selector or multi-line CSS value.
L12471: continues a selector, function, animation step, or property value.
L12472: completes the current CSS property value.
L12474: sets or begins the border-color CSS property.
L12475: completes the current CSS property value.
L12477: closes the current CSS declaration block.
L12480: continues a grouped selector or multi-line CSS value.
L12481: continues a grouped selector or multi-line CSS value.
L12482: continues a grouped selector or multi-line CSS value.
L12483: selects elements and opens their CSS declaration block.
L12485: sets or begins the color CSS property.
L12486: completes the current CSS property value.
L12488: closes the current CSS declaration block.
L12491: continues a grouped selector or multi-line CSS value.
L12492: selects elements and opens their CSS declaration block.
L12494: sets or begins the color CSS property.
L12495: completes the current CSS property value.
L12497: closes the current CSS declaration block.
L12500: selects elements and opens their CSS declaration block.
L12502: sets or begins the grid-column CSS property.
L12503: completes the current CSS property value.
L12505: sets or begins the background CSS property.
L12506: continues a selector, function, animation step, or property value.
L12507: continues a grouped selector or multi-line CSS value.
L12508: continues a grouped selector or multi-line CSS value.
L12509: continues a selector, function, animation step, or property value.
L12510: completes the current CSS property value.
L12512: closes the current CSS declaration block.
L12515: selects elements and opens their CSS declaration block.
L12517: sets or begins the display CSS property.
L12518: completes the current CSS property value.
L12520: sets or begins the place-items CSS property.
L12521: completes the current CSS property value.
L12523: sets or begins the width CSS property.
L12524: completes the current CSS property value.
L12526: sets or begins the height CSS property.
L12527: completes the current CSS property value.
L12529: sets or begins the margin-bottom CSS property.
L12530: completes the current CSS property value.
L12532: sets or begins the border-radius CSS property.
L12533: completes the current CSS property value.
L12535: sets or begins the color CSS property.
L12536: completes the current CSS property value.
L12538: sets or begins the background CSS property.
L12539: continues a selector, function, animation step, or property value.
L12540: continues a grouped selector or multi-line CSS value.
L12541: continues a grouped selector or multi-line CSS value.
L12542: continues a selector, function, animation step, or property value.
L12543: completes the current CSS property value.
L12545: sets or begins the box-shadow CSS property.
L12546: completes the current CSS property value.
L12548: closes the current CSS declaration block.
L12551: selects elements and opens their CSS declaration block.
L12553: sets or begins the display CSS property.
L12554: completes the current CSS property value.
L12556: sets or begins the gap CSS property.
L12557: completes the current CSS property value.
L12559: sets or begins the padding CSS property.
L12560: completes the current CSS property value.
L12562: sets or begins the margin CSS property.
L12563: completes the current CSS property value.
L12565: sets or begins the list-style CSS property.
L12566: completes the current CSS property value.
L12568: closes the current CSS declaration block.
L12571: selects elements and opens their CSS declaration block.
L12573: sets or begins the display CSS property.
L12574: completes the current CSS property value.
L12576: sets or begins the grid-template-columns CSS property.
L12577: continues a selector, function, animation step, or property value.
L12578: completes the current CSS property value.
L12580: sets or begins the gap CSS property.
L12581: completes the current CSS property value.
L12583: sets or begins the align-items CSS property.
L12584: completes the current CSS property value.
L12586: closes the current CSS declaration block.
L12589: selects elements and opens their CSS declaration block.
L12591: sets or begins the width CSS property.
L12592: completes the current CSS property value.
L12594: sets or begins the height CSS property.
L12595: completes the current CSS property value.
L12597: sets or begins the color CSS property.
L12598: completes the current CSS property value.
L12600: closes the current CSS declaration block.
L12603: selects elements and opens their CSS declaration block.
L12605: sets or begins the display CSS property.
L12606: completes the current CSS property value.
L12608: sets or begins the gap CSS property.
L12609: completes the current CSS property value.
L12611: sets or begins the margin-top CSS property.
L12612: completes the current CSS property value.
L12614: closes the current CSS declaration block.
L12617: selects elements and opens their CSS declaration block.
L12619: sets or begins the color CSS property.
L12620: completes the current CSS property value.
L12622: sets or begins the font-family CSS property.
L12623: completes the current CSS property value.
L12625: sets or begins the font-size CSS property.
L12626: completes the current CSS property value.
L12628: sets or begins the font-weight CSS property.
L12629: completes the current CSS property value.
L12631: closes the current CSS declaration block.
L12634: selects elements and opens their CSS declaration block.
L12636: sets or begins the width CSS property.
L12637: completes the current CSS property value.
L12639: sets or begins the min-height CSS property.
L12640: completes the current CSS property value.
L12642: sets or begins the padding CSS property.
L12643: completes the current CSS property value.
L12645: sets or begins the border CSS property.
L12646: completes the current CSS property value.
L12648: sets or begins the border-radius CSS property.
L12649: completes the current CSS property value.
L12651: sets or begins the color CSS property.
L12652: completes the current CSS property value.
L12654: sets or begins the background CSS property.
L12655: completes the current CSS property value.
L12657: sets or begins the box-shadow CSS property.
L12658: completes the current CSS property value.
L12660: closes the current CSS declaration block.
L12663: selects elements and opens their CSS declaration block.
L12665: sets or begins the border-color CSS property.
L12666: completes the current CSS property value.
L12668: sets or begins the outline CSS property.
L12669: completes the current CSS property value.
L12671: closes the current CSS declaration block.
L12674: selects elements and opens their CSS declaration block.
L12676: sets or begins the margin-top CSS property.
L12677: completes the current CSS property value.
L12679: sets or begins the padding CSS property.
L12680: completes the current CSS property value.
L12682: sets or begins the border CSS property.
L12683: completes the current CSS property value.
L12685: sets or begins the border-radius CSS property.
L12686: completes the current CSS property value.
L12688: sets or begins the color CSS property.
L12689: completes the current CSS property value.
L12691: sets or begins the background CSS property.
L12692: completes the current CSS property value.
L12694: sets or begins the font-weight CSS property.
L12695: completes the current CSS property value.
L12697: closes the current CSS declaration block.
L12700: selects elements and opens their CSS declaration block.
L12702: sets or begins the color CSS property.
L12703: completes the current CSS property value.
L12705: sets or begins the background CSS property.
L12706: completes the current CSS property value.
L12708: sets or begins the border-color CSS property.
L12709: completes the current CSS property value.
L12711: closes the current CSS declaration block.
L12714: selects elements and opens their CSS declaration block.
L12716: sets or begins the color CSS property.
L12717: completes the current CSS property value.
L12719: sets or begins the background CSS property.
L12720: completes the current CSS property value.
L12722: sets or begins the border-color CSS property.
L12723: completes the current CSS property value.
L12725: closes the current CSS declaration block.
L12728: selects elements and opens their CSS declaration block.
L12730: sets or begins the display CSS property.
L12731: completes the current CSS property value.
L12733: sets or begins the grid-template-columns CSS property.
L12734: completes the current CSS property value.
L12736: sets or begins the gap CSS property.
L12737: completes the current CSS property value.
L12739: sets or begins the margin-top CSS property.
L12740: completes the current CSS property value.
L12742: closes the current CSS declaration block.
L12745: selects elements and opens their CSS declaration block.
L12747: sets or begins the padding CSS property.
L12748: completes the current CSS property value.
L12750: sets or begins the border CSS property.
L12751: completes the current CSS property value.
L12753: sets or begins the border-radius CSS property.
L12754: completes the current CSS property value.
L12756: sets or begins the background CSS property.
L12757: completes the current CSS property value.
L12759: closes the current CSS declaration block.
L12762: selects elements and opens their CSS declaration block.
L12764: sets or begins the display CSS property.
L12765: completes the current CSS property value.
L12767: sets or begins the margin-bottom CSS property.
L12768: completes the current CSS property value.
L12770: sets or begins the color CSS property.
L12771: completes the current CSS property value.
L12773: sets or begins the font-family CSS property.
L12774: completes the current CSS property value.
L12776: closes the current CSS declaration block.
L12779: selects elements and opens their CSS declaration block.
L12781: sets or begins the color CSS property.
L12782: completes the current CSS property value.
L12784: closes the current CSS declaration block.
L12787: continues CSS documentation for maintainers.
L12788: continues a selector, function, animation step, or property value.
L12789: continues CSS documentation for maintainers.
L12791: starts a responsive media query.
L12793: selects elements and opens their CSS declaration block.
L12795: sets or begins the grid-template-columns CSS property.
L12796: continues a selector, function, animation step, or property value.
L12797: completes the current CSS property value.
L12799: closes the current CSS declaration block.
L12802: selects elements and opens their CSS declaration block.
L12804: sets or begins the grid-column CSS property.
L12805: completes the current CSS property value.
L12807: sets or begins the justify-self CSS property.
L12808: completes the current CSS property value.
L12810: closes the current CSS declaration block.
L12813: selects elements and opens their CSS declaration block.
L12815: sets or begins the grid-template-columns CSS property.
L12816: completes the current CSS property value.
L12818: closes the current CSS declaration block.
L12821: selects elements and opens their CSS declaration block.
L12823: sets or begins the grid-column CSS property.
L12824: completes the current CSS property value.
L12826: closes the current CSS declaration block.
L12828: closes the current CSS declaration block.
L12831: starts a responsive media query.
L12833: selects elements and opens their CSS declaration block.
L12835: sets or begins the align-items CSS property.
L12836: completes the current CSS property value.
L12838: sets or begins the flex-direction CSS property.
L12839: completes the current CSS property value.
L12841: closes the current CSS declaration block.
L12844: selects elements and opens their CSS declaration block.
L12846: sets or begins the grid-template-columns CSS property.
L12847: completes the current CSS property value.
L12849: closes the current CSS declaration block.
L12852: selects elements and opens their CSS declaration block.
L12854: sets or begins the width CSS property.
L12855: completes the current CSS property value.
L12857: sets or begins the height CSS property.
L12858: completes the current CSS property value.
L12860: closes the current CSS declaration block.
L12863: selects elements and opens their CSS declaration block.
L12865: sets or begins the grid-template-columns CSS property.
L12866: completes the current CSS property value.
L12868: closes the current CSS declaration block.
L12870: closes the current CSS declaration block.
L12873: continues CSS documentation for maintainers.
L12874: continues a selector, function, animation step, or property value.
L12875: continues CSS documentation for maintainers.
L12877: starts a responsive media query.
L12879: continues a grouped selector or multi-line CSS value.
L12880: selects elements and opens their CSS declaration block.
L12882: sets or begins the break-inside CSS property.
L12883: completes the current CSS property value.
L12885: closes the current CSS declaration block.
L12887: closes the current CSS declaration block.
L12889: continues CSS documentation for maintainers.
L12890: continues a selector, function, animation step, or property value.
L12891: continues a selector, function, animation step, or property value.
L12892: continues CSS documentation for maintainers.
L12894: selects elements and opens their CSS declaration block.
L12895: sets or begins the brand-green CSS property.
L12896: sets or begins the brand-red CSS property.
L12897: sets or begins the brand-yellow CSS property.
L12898: sets or begins the brand-teal CSS property.
L12899: sets or begins the brand-blue CSS property.
L12901: sets or begins the navy-950 CSS property.
L12902: sets or begins the navy-900 CSS property.
L12903: sets or begins the navy-850 CSS property.
L12904: sets or begins the navy-800 CSS property.
L12906: sets or begins the blue-700 CSS property.
L12907: sets or begins the blue-600 CSS property.
L12908: sets or begins the blue-500 CSS property.
L12909: sets or begins the blue-200 CSS property.
L12910: sets or begins the blue-100 CSS property.
L12911: sets or begins the blue-050 CSS property.
L12913: sets or begins the gold-600 CSS property.
L12914: sets or begins the gold-500 CSS property.
L12915: sets or begins the gold-400 CSS property.
L12916: sets or begins the gold-300 CSS property.
L12917: sets or begins the gold-100 CSS property.
L12918: sets or begins the gold-050 CSS property.
L12920: sets or begins the teal-700 CSS property.
L12921: sets or begins the teal-600 CSS property.
L12922: sets or begins the teal-300 CSS property.
L12923: sets or begins the teal-100 CSS property.
L12925: sets or begins the coral-600 CSS property.
L12926: sets or begins the coral-500 CSS property.
L12927: sets or begins the coral-100 CSS property.
L12929: sets or begins the success-600 CSS property.
L12930: sets or begins the success-500 CSS property.
L12932: sets or begins the danger-700 CSS property.
L12933: sets or begins the danger-600 CSS property.
L12934: sets or begins the danger-500 CSS property.
L12936: sets or begins the page-background CSS property.
L12937: sets or begins the content-width CSS property.
L12938: sets or begins the content-width-wide CSS property.
L12939: sets or begins the section-space CSS property.
L12941: sets or begins the shadow-sm CSS property.
L12942: sets or begins the shadow-md CSS property.
L12943: sets or begins the shadow-lg CSS property.
L12944: closes the current CSS declaration block.
L12946: selects elements and opens their CSS declaration block.
L12947: sets or begins the background CSS property.
L12948: continues a grouped selector or multi-line CSS value.
L12949: continues a grouped selector or multi-line CSS value.
L12950: continues a grouped selector or multi-line CSS value.
L12951: completes the current CSS property value.
L12952: closes the current CSS declaration block.
L12954: selects elements and opens their CSS declaration block.
L12955: sets or begins the opacity CSS property.
L12956: closes the current CSS declaration block.
L12958: continues a grouped selector or multi-line CSS value.
L12959: selects elements and opens their CSS declaration block.
L12960: sets or begins the opacity CSS property.
L12961: closes the current CSS declaration block.
L12963: selects elements and opens their CSS declaration block.
L12964: sets or begins the background CSS property.
L12965: continues a selector, function, animation step, or property value.
L12966: continues a grouped selector or multi-line CSS value.
L12967: continues a grouped selector or multi-line CSS value.
L12968: continues a grouped selector or multi-line CSS value.
L12969: continues a selector, function, animation step, or property value.
L12970: completes the current CSS property value.
L12971: closes the current CSS declaration block.
L12973: selects elements and opens their CSS declaration block.
L12974: sets or begins the background CSS property.
L12975: continues a selector, function, animation step, or property value.
L12976: continues a grouped selector or multi-line CSS value.
L12977: continues a grouped selector or multi-line CSS value.
L12978: continues a grouped selector or multi-line CSS value.
L12979: continues a selector, function, animation step, or property value.
L12980: completes the current CSS property value.
L12981: closes the current CSS declaration block.
L12983: continues a grouped selector or multi-line CSS value.
L12984: continues a grouped selector or multi-line CSS value.
L12985: selects elements and opens their CSS declaration block.
L12986: sets or begins the color CSS property.
L12987: closes the current CSS declaration block.
L12989: continues a grouped selector or multi-line CSS value.
L12990: continues a grouped selector or multi-line CSS value.
L12991: selects elements and opens their CSS declaration block.
L12992: sets or begins the background CSS property.
L12993: closes the current CSS declaration block.
L12995: continues a grouped selector or multi-line CSS value.
L12996: selects elements and opens their CSS declaration block.
L12997: sets or begins the color CSS property.
L12998: sets or begins the background CSS property.
L12999: continues a selector, function, animation step, or property value.
L13000: continues a grouped selector or multi-line CSS value.
L13001: continues a grouped selector or multi-line CSS value.
L13002: continues a selector, function, animation step, or property value.
L13003: completes the current CSS property value.
L13004: sets or begins the border-color CSS property.
L13005: closes the current CSS declaration block.
L13007: selects elements and opens their CSS declaration block.
L13008: sets or begins the box-shadow CSS property.
L13009: closes the current CSS declaration block.
L13011: selects elements and opens their CSS declaration block.
L13012: sets or begins the color CSS property.
L13013: closes the current CSS declaration block.
L13015: continues a grouped selector or multi-line CSS value.
L13016: continues a grouped selector or multi-line CSS value.
L13017: selects elements and opens their CSS declaration block.
L13018: sets or begins the color CSS property.
L13019: closes the current CSS declaration block.
L13021: selects elements and opens their CSS declaration block.
L13022: sets or begins the width CSS property.
L13023: closes the current CSS declaration block.
L13025: selects elements and opens their CSS declaration block.
L13026: sets or begins the display CSS property.
L13027: closes the current CSS declaration block.
L13029: selects elements and opens their CSS declaration block.
L13030: sets or begins the animation CSS property.
L13031: closes the current CSS declaration block.
L13033: defines an animation timeline.
L13034: selects elements and opens their CSS declaration block.
L13035: sets or begins the opacity CSS property.
L13036: sets or begins the transform CSS property.
L13037: closes the current CSS declaration block.
L13039: selects elements and opens their CSS declaration block.
L13040: sets or begins the opacity CSS property.
L13041: sets or begins the transform CSS property.
L13042: closes the current CSS declaration block.
L13043: closes the current CSS declaration block.
L13045: selects elements and opens their CSS declaration block.
L13046: sets or begins the min-height CSS property.
L13047: closes the current CSS declaration block.
L13049: selects elements and opens their CSS declaration block.
L13050: sets or begins the margin-bottom CSS property.
L13051: closes the current CSS declaration block.
L13053: continues a grouped selector or multi-line CSS value.
L13054: continues a grouped selector or multi-line CSS value.
L13055: continues a grouped selector or multi-line CSS value.
L13056: continues a grouped selector or multi-line CSS value.
L13057: continues a grouped selector or multi-line CSS value.
L13058: continues a grouped selector or multi-line CSS value.
L13059: continues a grouped selector or multi-line CSS value.
L13060: continues a grouped selector or multi-line CSS value.
L13061: selects elements and opens their CSS declaration block.
L13062: sets or begins the box-shadow CSS property.
L13063: closes the current CSS declaration block.
L13065: continues a grouped selector or multi-line CSS value.
L13066: continues a grouped selector or multi-line CSS value.
L13067: continues a grouped selector or multi-line CSS value.
L13068: selects elements and opens their CSS declaration block.
L13069: sets or begins the transform CSS property.
L13070: sets or begins the box-shadow CSS property.
L13071: closes the current CSS declaration block.
L13073: selects elements and opens their CSS declaration block.
L13074: sets or begins the padding CSS property.
L13075: sets or begins the border CSS property.
L13076: sets or begins the color CSS property.
L13077: sets or begins the background CSS property.
L13078: sets or begins the font-weight CSS property.
L13079: sets or begins the text-align CSS property.
L13080: sets or begins the cursor CSS property.
L13081: closes the current CSS declaration block.
L13083: selects elements and opens their CSS declaration block.
L13084: sets or begins the text-decoration CSS property.
L13085: sets or begins the text-underline-offset CSS property.
L13086: closes the current CSS declaration block.
L13088: selects elements and opens their CSS declaration block.
L13089: sets or begins the position CSS property.
L13090: sets or begins the width CSS property.
L13091: sets or begins the height CSS property.
L13092: sets or begins the overflow CSS property.
L13093: sets or begins the clip CSS property.
L13094: sets or begins the white-space CSS property.
L13095: closes the current CSS declaration block.
L13097: selects elements and opens their CSS declaration block.
L13098: sets or begins the min-height CSS property.
L13099: sets or begins the margin-top CSS property.
L13100: sets or begins the padding CSS property.
L13101: sets or begins the border-radius CSS property.
L13102: sets or begins the font-weight CSS property.
L13103: closes the current CSS declaration block.
L13105: selects elements and opens their CSS declaration block.
L13106: sets or begins the display CSS property.
L13107: closes the current CSS declaration block.
L13109: selects elements and opens their CSS declaration block.
L13110: sets or begins the color CSS property.
L13111: sets or begins the background CSS property.
L13112: closes the current CSS declaration block.
L13114: selects elements and opens their CSS declaration block.
L13115: sets or begins the color CSS property.
L13116: sets or begins the background CSS property.
L13117: closes the current CSS declaration block.
L13119: selects elements and opens their CSS declaration block.
L13120: sets or begins the color CSS property.
L13121: sets or begins the background CSS property.
L13122: closes the current CSS declaration block.
L13125: continues CSS documentation for maintainers.
L13127: selects elements and opens their CSS declaration block.
L13128: sets or begins the display CSS property.
L13129: sets or begins the grid-template-columns CSS property.
L13130: sets or begins the gap CSS property.
L13131: closes the current CSS declaration block.
L13133: selects elements and opens their CSS declaration block.
L13134: sets or begins the position CSS property.
L13135: sets or begins the padding CSS property.
L13136: sets or begins the border CSS property.
L13137: sets or begins the border-radius CSS property.
L13138: sets or begins the background CSS property.
L13139: sets or begins the box-shadow CSS property.
L13140: closes the current CSS declaration block.
L13142: selects elements and opens their CSS declaration block.
L13143: sets or begins the border-top CSS property.
L13144: closes the current CSS declaration block.
L13146: selects elements and opens their CSS declaration block.
L13147: sets or begins the border-top CSS property.
L13148: closes the current CSS declaration block.
L13150: selects elements and opens their CSS declaration block.
L13151: sets or begins the border-top CSS property.
L13152: closes the current CSS declaration block.
L13154: selects elements and opens their CSS declaration block.
L13155: sets or begins the border-top CSS property.
L13156: closes the current CSS declaration block.
L13158: selects elements and opens their CSS declaration block.
L13159: sets or begins the display CSS property.
L13160: sets or begins the margin-bottom CSS property.
L13161: sets or begins the color CSS property.
L13162: sets or begins the font-family CSS property.
L13163: sets or begins the font-weight CSS property.
L13164: closes the current CSS declaration block.
L13166: selects elements and opens their CSS declaration block.
L13167: sets or begins the margin-bottom CSS property.
L13168: closes the current CSS declaration block.
L13170: selects elements and opens their CSS declaration block.
L13171: sets or begins the display CSS property.
L13172: sets or begins the grid-template-columns CSS property.
L13173: sets or begins the align-items CSS property.
L13174: sets or begins the gap CSS property.
L13175: sets or begins the margin-top CSS property.
L13176: sets or begins the padding CSS property.
L13177: sets or begins the border CSS property.
L13178: sets or begins the border-radius CSS property.
L13179: sets or begins the background CSS property.
L13180: continues a selector, function, animation step, or property value.
L13181: continues a grouped selector or multi-line CSS value.
L13182: continues a grouped selector or multi-line CSS value.
L13183: continues a selector, function, animation step, or property value.
L13184: completes the current CSS property value.
L13185: closes the current CSS declaration block.
L13187: selects elements and opens their CSS declaration block.
L13188: sets or begins the display CSS property.
L13189: sets or begins the flex-direction CSS property.
L13190: sets or begins the gap CSS property.
L13191: closes the current CSS declaration block.
L13193: continues CSS documentation for maintainers.
L13195: selects elements and opens their CSS declaration block.
L13196: sets or begins the display CSS property.
L13197: sets or begins the grid-template-columns CSS property.
L13198: sets or begins the gap CSS property.
L13199: closes the current CSS declaration block.
L13201: continues a grouped selector or multi-line CSS value.
L13202: selects elements and opens their CSS declaration block.
L13203: sets or begins the padding CSS property.
L13204: sets or begins the border CSS property.
L13205: sets or begins the border-radius CSS property.
L13206: sets or begins the background CSS property.
L13207: sets or begins the box-shadow CSS property.
L13208: closes the current CSS declaration block.
L13210: selects elements and opens their CSS declaration block.
L13211: sets or begins the border-top CSS property.
L13212: closes the current CSS declaration block.
L13214: selects elements and opens their CSS declaration block.
L13215: sets or begins the margin-top CSS property.
L13216: sets or begins the color CSS property.
L13217: sets or begins the font-family CSS property.
L13218: closes the current CSS declaration block.
L13220: continues a grouped selector or multi-line CSS value.
L13221: continues a grouped selector or multi-line CSS value.
L13222: continues a grouped selector or multi-line CSS value.
L13223: selects elements and opens their CSS declaration block.
L13224: sets or begins the padding-left CSS property.
L13225: closes the current CSS declaration block.
L13227: continues a grouped selector or multi-line CSS value.
L13228: continues a grouped selector or multi-line CSS value.
L13229: selects elements and opens their CSS declaration block.
L13230: sets or begins the margin-bottom CSS property.
L13231: closes the current CSS declaration block.
L13233: selects elements and opens their CSS declaration block.
L13234: sets or begins the display CSS property.
L13235: sets or begins the gap CSS property.
L13236: closes the current CSS declaration block.
L13238: selects elements and opens their CSS declaration block.
L13239: sets or begins the border-top CSS property.
L13240: closes the current CSS declaration block.
L13242: selects elements and opens their CSS declaration block.
L13243: sets or begins the border-top CSS property.
L13244: closes the current CSS declaration block.
L13246: selects elements and opens their CSS declaration block.
L13247: sets or begins the color CSS property.
L13248: sets or begins the background CSS property.
L13249: continues a selector, function, animation step, or property value.
L13250: continues a grouped selector or multi-line CSS value.
L13251: continues a grouped selector or multi-line CSS value.
L13252: continues a selector, function, animation step, or property value.
L13253: completes the current CSS property value.
L13254: closes the current CSS declaration block.
L13256: continues a grouped selector or multi-line CSS value.
L13257: continues a grouped selector or multi-line CSS value.
L13258: selects elements and opens their CSS declaration block.
L13259: sets or begins the color CSS property.
L13260: closes the current CSS declaration block.
L13262: continues CSS documentation for maintainers.
L13264: selects elements and opens their CSS declaration block.
L13265: sets or begins the align-items CSS property.
L13266: closes the current CSS declaration block.
L13268: selects elements and opens their CSS declaration block.
L13269: sets or begins the display CSS property.
L13270: sets or begins the align-items CSS property.
L13271: sets or begins the gap CSS property.
L13272: sets or begins the margin-bottom CSS property.
L13273: sets or begins the padding CSS property.
L13274: sets or begins the border CSS property.
L13275: sets or begins the border-radius CSS property.
L13276: sets or begins the background CSS property.
L13277: closes the current CSS declaration block.
L13279: selects elements and opens their CSS declaration block.
L13280: sets or begins the flex CSS property.
L13281: sets or begins the color CSS property.
L13282: closes the current CSS declaration block.
L13284: selects elements and opens their CSS declaration block.
L13285: sets or begins the margin CSS property.
L13286: closes the current CSS declaration block.
L13288: selects elements and opens their CSS declaration block.
L13289: sets or begins the overflow CSS property.
L13290: closes the current CSS declaration block.
L13292: selects elements and opens their CSS declaration block.
L13293: sets or begins the display CSS property.
L13294: sets or begins the grid-template-columns CSS property.
L13295: sets or begins the gap CSS property.
L13296: sets or begins the margin-bottom CSS property.
L13297: sets or begins the padding CSS property.
L13298: sets or begins the border-radius CSS property.
L13299: sets or begins the background CSS property.
L13300: closes the current CSS declaration block.
L13302: selects elements and opens their CSS declaration block.
L13303: sets or begins the min-height CSS property.
L13304: sets or begins the padding CSS property.
L13305: sets or begins the border CSS property.
L13306: sets or begins the border-radius CSS property.
L13307: sets or begins the color CSS property.
L13308: sets or begins the background CSS property.
L13309: sets or begins the font-weight CSS property.
L13310: sets or begins the cursor CSS property.
L13311: closes the current CSS declaration block.
L13313: selects elements and opens their CSS declaration block.
L13314: sets or begins the color CSS property.
L13315: sets or begins the background CSS property.
L13316: sets or begins the box-shadow CSS property.
L13317: closes the current CSS declaration block.
L13319: selects elements and opens their CSS declaration block.
L13320: sets or begins the display CSS property.
L13321: sets or begins the gap CSS property.
L13322: closes the current CSS declaration block.
L13324: selects elements and opens their CSS declaration block.
L13325: sets or begins the display CSS property.
L13326: sets or begins the grid-template-columns CSS property.
L13327: sets or begins the gap CSS property.
L13328: closes the current CSS declaration block.
L13330: selects elements and opens their CSS declaration block.
L13331: sets or begins the min-width CSS property.
L13332: sets or begins the border CSS property.
L13333: sets or begins the border-radius CSS property.
L13334: sets or begins the color CSS property.
L13335: sets or begins the background CSS property.
L13336: sets or begins the font-weight CSS property.
L13337: sets or begins the cursor CSS property.
L13338: closes the current CSS declaration block.
L13340: selects elements and opens their CSS declaration block.
L13341: sets or begins the border CSS property.
L13342: sets or begins the color CSS property.
L13343: sets or begins the background CSS property.
L13344: sets or begins the font-weight CSS property.
L13345: sets or begins the text-decoration CSS property.
L13346: sets or begins the text-underline-offset CSS property.
L13347: sets or begins the cursor CSS property.
L13348: closes the current CSS declaration block.
L13350: selects elements and opens their CSS declaration block.
L13351: sets or begins the display CSS property.
L13352: sets or begins the grid-template-columns CSS property.
L13353: sets or begins the align-items CSS property.
L13354: sets or begins the gap CSS property.
L13355: sets or begins the color CSS property.
L13356: sets or begins the font-size CSS property.
L13357: closes the current CSS declaration block.
L13359: selects elements and opens their CSS declaration block.
L13360: sets or begins the margin-top CSS property.
L13361: sets or begins the padding CSS property.
L13362: sets or begins the border-radius CSS property.
L13363: sets or begins the color CSS property.
L13364: sets or begins the background CSS property.
L13365: closes the current CSS declaration block.
L13367: selects elements and opens their CSS declaration block.
L13368: sets or begins the color CSS property.
L13369: sets or begins the background CSS property.
L13370: closes the current CSS declaration block.
L13372: selects elements and opens their CSS declaration block.
L13373: sets or begins the color CSS property.
L13374: sets or begins the background CSS property.
L13375: closes the current CSS declaration block.
L13377: selects elements and opens their CSS declaration block.
L13378: sets or begins the color CSS property.
L13379: sets or begins the background CSS property.
L13380: closes the current CSS declaration block.
L13382: selects elements and opens their CSS declaration block.
L13383: sets or begins the grid-column CSS property.
L13384: closes the current CSS declaration block.
L13386: selects elements and opens their CSS declaration block.
L13387: sets or begins the display CSS property.
L13388: sets or begins the align-items CSS property.
L13389: sets or begins the justify-content CSS property.
L13390: sets or begins the gap CSS property.
L13391: closes the current CSS declaration block.
L13393: selects elements and opens their CSS declaration block.
L13394: sets or begins the margin CSS property.
L13395: sets or begins the padding CSS property.
L13396: sets or begins the border-radius CSS property.
L13397: sets or begins the font-weight CSS property.
L13398: closes the current CSS declaration block.
L13400: selects elements and opens their CSS declaration block.
L13401: sets or begins the color CSS property.
L13402: sets or begins the background CSS property.
L13403: closes the current CSS declaration block.
L13405: selects elements and opens their CSS declaration block.
L13406: sets or begins the color CSS property.
L13407: sets or begins the background CSS property.
L13408: closes the current CSS declaration block.
L13410: continues a grouped selector or multi-line CSS value.
L13411: selects elements and opens their CSS declaration block.
L13412: sets or begins the color CSS property.
L13413: sets or begins the background CSS property.
L13414: closes the current CSS declaration block.
L13416: selects elements and opens their CSS declaration block.
L13417: sets or begins the display CSS property.
L13418: sets or begins the grid-template-columns CSS property.
L13419: sets or begins the gap CSS property.
L13420: closes the current CSS declaration block.
L13422: continues a grouped selector or multi-line CSS value.
L13423: selects elements and opens their CSS declaration block.
L13424: sets or begins the padding CSS property.
L13425: sets or begins the border CSS property.
L13426: sets or begins the border-radius CSS property.
L13427: sets or begins the background CSS property.
L13428: closes the current CSS declaration block.
L13430: selects elements and opens their CSS declaration block.
L13431: sets or begins the color CSS property.
L13432: sets or begins the font-size CSS property.
L13433: sets or begins the font-weight CSS property.
L13434: sets or begins the letter-spacing CSS property.
L13435: sets or begins the text-transform CSS property.
L13436: closes the current CSS declaration block.
L13438: selects elements and opens their CSS declaration block.
L13439: sets or begins the margin CSS property.
L13440: sets or begins the color CSS property.
L13441: sets or begins the font-family CSS property.
L13442: closes the current CSS declaration block.
L13444: selects elements and opens their CSS declaration block.
L13445: sets or begins the font-weight CSS property.
L13446: closes the current CSS declaration block.
L13449: continues CSS documentation for maintainers.
L13451: selects elements and opens their CSS declaration block.
L13452: sets or begins the display CSS property.
L13453: sets or begins the grid-template-columns CSS property.
L13454: sets or begins the gap CSS property.
L13455: sets or begins the margin-top CSS property.
L13456: sets or begins the padding CSS property.
L13457: sets or begins the border CSS property.
L13458: sets or begins the border-radius CSS property.
L13459: sets or begins the background CSS property.
L13460: continues a selector, function, animation step, or property value.
L13461: continues a grouped selector or multi-line CSS value.
L13462: continues a grouped selector or multi-line CSS value.
L13463: continues a selector, function, animation step, or property value.
L13464: completes the current CSS property value.
L13465: closes the current CSS declaration block.
L13467: selects elements and opens their CSS declaration block.
L13468: sets or begins the min-height CSS property.
L13469: sets or begins the display CSS property.
L13470: sets or begins the place-items CSS property.
L13471: sets or begins the border CSS property.
L13472: sets or begins the border-radius CSS property.
L13473: sets or begins the background CSS property.
L13474: sets or begins the overflow CSS property.
L13475: closes the current CSS declaration block.
L13477: selects elements and opens their CSS declaration block.
L13478: sets or begins the width CSS property.
L13479: sets or begins the min-height CSS property.
L13480: sets or begins the border CSS property.
L13481: closes the current CSS declaration block.
L13483: selects elements and opens their CSS declaration block.
L13484: sets or begins the max-width CSS property.
L13485: sets or begins the margin CSS property.
L13486: sets or begins the padding CSS property.
L13487: sets or begins the text-align CSS property.
L13488: closes the current CSS declaration block.
L13490: continues CSS documentation for maintainers.
L13492: continues a grouped selector or multi-line CSS value.
L13493: continues a grouped selector or multi-line CSS value.
L13494: selects elements and opens their CSS declaration block.
L13495: sets or begins the gap CSS property.
L13496: closes the current CSS declaration block.
L13498: continues a grouped selector or multi-line CSS value.
L13499: continues a grouped selector or multi-line CSS value.
L13500: selects elements and opens their CSS declaration block.
L13501: sets or begins the max-width CSS property.
L13502: closes the current CSS declaration block.
L13504: selects elements and opens their CSS declaration block.
L13505: sets or begins the max-height CSS property.
L13506: sets or begins the overflow-y CSS property.
L13507: closes the current CSS declaration block.
L13509: starts a responsive media query.
L13510: selects elements and opens their CSS declaration block.
L13511: sets or begins the grid-template-columns CSS property.
L13512: closes the current CSS declaration block.
L13514: continues a grouped selector or multi-line CSS value.
L13515: selects elements and opens their CSS declaration block.
L13516: sets or begins the grid-template-columns CSS property.
L13517: closes the current CSS declaration block.
L13518: closes the current CSS declaration block.
L13520: starts a responsive media query.
L13521: continues a grouped selector or multi-line CSS value.
L13522: selects elements and opens their CSS declaration block.
L13523: sets or begins the grid-template-columns CSS property.
L13524: closes the current CSS declaration block.
L13526: selects elements and opens their CSS declaration block.
L13527: sets or begins the grid-template-columns CSS property.
L13528: closes the current CSS declaration block.
L13530: selects elements and opens their CSS declaration block.
L13531: sets or begins the align-items CSS property.
L13532: closes the current CSS declaration block.
L13534: selects elements and opens their CSS declaration block.
L13535: sets or begins the grid-template-columns CSS property.
L13536: closes the current CSS declaration block.
L13538: selects elements and opens their CSS declaration block.
L13539: sets or begins the flex-direction CSS property.
L13540: closes the current CSS declaration block.
L13542: selects elements and opens their CSS declaration block.
L13543: sets or begins the min-height CSS property.
L13544: closes the current CSS declaration block.
L13545: closes the current CSS declaration block.
L13548: continues CSS documentation for maintainers.
L13549: selects elements and opens their CSS declaration block.
L13550: sets or begins the width CSS property.
L13551: sets or begins the height CSS property.
L13552: sets or begins the flex-basis CSS property.
L13553: sets or begins the padding CSS property.
L13554: closes the current CSS declaration block.
L13556: selects elements and opens their CSS declaration block.
L13557: sets or begins the display CSS property.
L13558: closes the current CSS declaration block.
L13560: continues a grouped selector or multi-line CSS value.
L13561: selects elements and opens their CSS declaration block.
L13562: sets or begins the width CSS property.
L13563: sets or begins the min-width CSS property.
L13564: sets or begins the height CSS property.
L13565: closes the current CSS declaration block.
L13567: selects elements and opens their CSS declaration block.
L13568: sets or begins the display CSS property.
L13569: closes the current CSS declaration block.
L13571: starts a responsive media query.
L13572: selects elements and opens their CSS declaration block.
L13573: sets or begins the width CSS property.
L13574: sets or begins the flex-basis CSS property.
L13575: sets or begins the height CSS property.
L13576: closes the current CSS declaration block.
L13577: closes the current CSS declaration block.
L13581: continues CSS documentation for maintainers.
L13582: continues a selector, function, animation step, or property value.
L13583: continues a selector, function, animation step, or property value.
L13584: continues a selector, function, animation step, or property value.
L13585: continues a selector, function, animation step, or property value.
L13586: continues a selector, function, animation step, or property value.
L13587: continues CSS documentation for maintainers.
L13589: continues CSS documentation for maintainers.
L13590: continues a selector, function, animation step, or property value.
L13591: continues a selector, function, animation step, or property value.
L13592: continues a selector, function, animation step, or property value.
L13594: continues a selector, function, animation step, or property value.
L13595: continues a grouped selector or multi-line CSS value.
L13596: continues a selector, function, animation step, or property value.
L13597: continues CSS documentation for maintainers.
L13599: selects elements and opens their CSS declaration block.
L13600: sets or begins the brand-green CSS property.
L13601: sets or begins the brand-red CSS property.
L13602: sets or begins the brand-yellow CSS property.
L13603: sets or begins the brand-teal CSS property.
L13604: sets or begins the brand-blue CSS property.
L13605: sets or begins the public-ready-navy CSS property.
L13606: sets or begins the public-ready-ink CSS property.
L13607: sets or begins the public-ready-soft-blue CSS property.
L13608: sets or begins the public-ready-soft-green CSS property.
L13609: sets or begins the public-ready-soft-yellow CSS property.
L13610: sets or begins the public-ready-border CSS property.
L13611: closes the current CSS declaration block.
L13613: continues CSS documentation for maintainers.
L13614: continues a selector, function, animation step, or property value.
L13615: continues CSS documentation for maintainers.
L13617: continues CSS documentation for maintainers.
L13618: selects elements and opens their CSS declaration block.
L13619: sets or begins the display CSS property.
L13620: closes the current CSS declaration block.
L13622: selects elements and opens their CSS declaration block.
L13623: sets or begins the top CSS property.
L13624: closes the current CSS declaration block.
L13626: selects elements and opens their CSS declaration block.
L13627: sets or begins the background CSS property.
L13628: continues a selector, function, animation step, or property value.
L13629: continues a grouped selector or multi-line CSS value.
L13630: continues a grouped selector or multi-line CSS value.
L13631: continues a grouped selector or multi-line CSS value.
L13632: continues a selector, function, animation step, or property value.
L13633: completes the current CSS property value.
L13634: closes the current CSS declaration block.
L13636: continues CSS documentation for maintainers.
L13637: selects elements and opens their CSS declaration block.
L13638: sets or begins the color CSS property.
L13639: closes the current CSS declaration block.
L13641: continues a grouped selector or multi-line CSS value.
L13642: selects elements and opens their CSS declaration block.
L13643: sets or begins the color CSS property.
L13644: closes the current CSS declaration block.
L13646: continues CSS documentation for maintainers.
L13647: continues a grouped selector or multi-line CSS value.
L13648: continues a grouped selector or multi-line CSS value.
L13649: continues a grouped selector or multi-line CSS value.
L13650: continues a grouped selector or multi-line CSS value.
L13651: selects elements and opens their CSS declaration block.
L13652: sets or begins the width CSS property.
L13653: closes the current CSS declaration block.
L13655: continues a grouped selector or multi-line CSS value.
L13656: continues a grouped selector or multi-line CSS value.
L13657: continues a grouped selector or multi-line CSS value.
L13658: selects elements and opens their CSS declaration block.
L13659: sets or begins the width CSS property.
L13660: closes the current CSS declaration block.
L13662: continues a grouped selector or multi-line CSS value.
L13663: continues a grouped selector or multi-line CSS value.
L13664: selects elements and opens their CSS declaration block.
L13665: sets or begins the color CSS property.
L13666: closes the current CSS declaration block.
L13668: selects elements and opens their CSS declaration block.
L13669: sets or begins the min-height CSS property.
L13670: sets or begins the padding-inline CSS property.
L13671: sets or begins the color CSS property.
L13672: sets or begins the border-color CSS property.
L13673: sets or begins the background CSS property.
L13674: sets or begins the box-shadow CSS property.
L13675: closes the current CSS declaration block.
L13677: continues a grouped selector or multi-line CSS value.
L13678: selects elements and opens their CSS declaration block.
L13679: sets or begins the box-shadow CSS property.
L13680: closes the current CSS declaration block.
L13682: continues CSS documentation for maintainers.
L13683: selects elements and opens their CSS declaration block.
L13684: sets or begins the content CSS property.
L13685: closes the current CSS declaration block.
L13687: selects elements and opens their CSS declaration block.
L13688: sets or begins the display CSS property.
L13689: sets or begins the align-items CSS property.
L13690: sets or begins the gap CSS property.
L13691: sets or begins the max-width CSS property.
L13692: closes the current CSS declaration block.
L13694: selects elements and opens their CSS declaration block.
L13695: sets or begins the width CSS property.
L13696: sets or begins the height CSS property.
L13697: sets or begins the flex CSS property.
L13698: closes the current CSS declaration block.
L13700: selects elements and opens their CSS declaration block.
L13701: sets or begins the min-width CSS property.
L13702: sets or begins the overflow CSS property.
L13703: sets or begins the text-overflow CSS property.
L13704: sets or begins the white-space CSS property.
L13705: closes the current CSS declaration block.
L13707: selects elements and opens their CSS declaration block.
L13708: sets or begins the color CSS property.
L13709: closes the current CSS declaration block.
L13711: continues CSS documentation for maintainers.
L13712: continues a grouped selector or multi-line CSS value.
L13713: continues a grouped selector or multi-line CSS value.
L13714: selects elements and opens their CSS declaration block.
L13715: sets or begins the display CSS property.
L13716: closes the current CSS declaration block.
L13718: continues CSS documentation for maintainers.
L13719: continues a selector, function, animation step, or property value.
L13720: continues CSS documentation for maintainers.
L13722: continues CSS documentation for maintainers.
L13723: selects elements and opens their CSS declaration block.
L13724: sets or begins the display CSS property.
L13725: closes the current CSS declaration block.
L13727: selects elements and opens their CSS declaration block.
L13728: sets or begins the gap CSS property.
L13729: closes the current CSS declaration block.
L13731: continues a grouped selector or multi-line CSS value.
L13732: selects elements and opens their CSS declaration block.
L13733: sets or begins the display CSS property.
L13734: closes the current CSS declaration block.
L13736: selects elements and opens their CSS declaration block.
L13737: sets or begins the max-width CSS property.
L13738: closes the current CSS declaration block.
L13740: selects elements and opens their CSS declaration block.
L13741: sets or begins the max-width CSS property.
L13742: closes the current CSS declaration block.
L13744: continues CSS documentation for maintainers.
L13745: continues a selector, function, animation step, or property value.
L13746: continues CSS documentation for maintainers.
L13748: continues a grouped selector or multi-line CSS value.
L13749: continues a grouped selector or multi-line CSS value.
L13750: continues a grouped selector or multi-line CSS value.
L13751: selects elements and opens their CSS declaration block.
L13752: sets or begins the color CSS property.
L13753: closes the current CSS declaration block.
L13755: continues a grouped selector or multi-line CSS value.
L13756: continues a grouped selector or multi-line CSS value.
L13757: selects elements and opens their CSS declaration block.
L13758: sets or begins the background CSS property.
L13759: closes the current CSS declaration block.
L13761: continues a grouped selector or multi-line CSS value.
L13762: selects elements and opens their CSS declaration block.
L13763: sets or begins the background CSS property.
L13764: closes the current CSS declaration block.
L13766: continues a grouped selector or multi-line CSS value.
L13767: continues a grouped selector or multi-line CSS value.
L13768: selects elements and opens their CSS declaration block.
L13769: sets or begins the color CSS property.
L13770: closes the current CSS declaration block.
L13772: continues CSS documentation for maintainers.
L13773: continues a grouped selector or multi-line CSS value.
L13774: selects elements and opens their CSS declaration block.
L13775: sets or begins the color CSS property.
L13776: sets or begins the border-color CSS property.
L13777: sets or begins the background CSS property.
L13778: continues a selector, function, animation step, or property value.
L13779: continues a grouped selector or multi-line CSS value.
L13780: continues a grouped selector or multi-line CSS value.
L13781: continues a selector, function, animation step, or property value.
L13782: continues a grouped selector or multi-line CSS value.
L13783: continues a selector, function, animation step, or property value.
L13784: continues a grouped selector or multi-line CSS value.
L13785: continues a grouped selector or multi-line CSS value.
L13786: continues a selector, function, animation step, or property value.
L13787: completes the current CSS property value.
L13788: closes the current CSS declaration block.
L13790: continues a grouped selector or multi-line CSS value.
L13791: continues a grouped selector or multi-line CSS value.
L13792: selects elements and opens their CSS declaration block.
L13793: sets or begins the color CSS property.
L13794: closes the current CSS declaration block.
L13796: selects elements and opens their CSS declaration block.
L13797: sets or begins the color CSS property.
L13798: closes the current CSS declaration block.
L13800: continues CSS documentation for maintainers.
L13801: selects elements and opens their CSS declaration block.
L13802: sets or begins the grid-template-columns CSS property.
L13803: closes the current CSS declaration block.
L13805: selects elements and opens their CSS declaration block.
L13806: sets or begins the grid-row CSS property.
L13807: closes the current CSS declaration block.
L13809: continues CSS documentation for maintainers.
L13810: continues a selector, function, animation step, or property value.
L13811: continues CSS documentation for maintainers.
L13813: selects elements and opens their CSS declaration block.
L13814: sets or begins the display CSS property.
L13815: sets or begins the grid-template-columns CSS property.
L13816: sets or begins the align-items CSS property.
L13817: sets or begins the gap CSS property.
L13818: sets or begins the margin CSS property.
L13819: sets or begins the padding CSS property.
L13820: sets or begins the border CSS property.
L13821: sets or begins the border-left CSS property.
L13822: sets or begins the border-radius CSS property.
L13823: sets or begins the background CSS property.
L13824: continues a selector, function, animation step, or property value.
L13825: continues a grouped selector or multi-line CSS value.
L13826: continues a grouped selector or multi-line CSS value.
L13827: continues a selector, function, animation step, or property value.
L13828: completes the current CSS property value.
L13829: sets or begins the box-shadow CSS property.
L13830: closes the current CSS declaration block.
L13832: selects elements and opens their CSS declaration block.
L13833: sets or begins the display CSS property.
L13834: sets or begins the place-items CSS property.
L13835: sets or begins the width CSS property.
L13836: sets or begins the height CSS property.
L13837: sets or begins the border-radius CSS property.
L13838: sets or begins the color CSS property.
L13839: sets or begins the background CSS property.
L13840: closes the current CSS declaration block.
L13842: selects elements and opens their CSS declaration block.
L13843: sets or begins the width CSS property.
L13844: sets or begins the height CSS property.
L13845: closes the current CSS declaration block.
L13847: selects elements and opens their CSS declaration block.
L13848: sets or begins the margin CSS property.
L13849: sets or begins the color CSS property.
L13850: closes the current CSS declaration block.
L13852: selects elements and opens their CSS declaration block.
L13853: sets or begins the margin CSS property.
L13854: sets or begins the color CSS property.
L13855: closes the current CSS declaration block.
L13857: continues a grouped selector or multi-line CSS value.
L13858: continues a grouped selector or multi-line CSS value.
L13859: continues a grouped selector or multi-line CSS value.
L13860: selects elements and opens their CSS declaration block.
L13861: sets or begins the display CSS property.
L13862: closes the current CSS declaration block.
L13864: selects elements and opens their CSS declaration block.
L13865: sets or begins the animation CSS property.
L13866: closes the current CSS declaration block.
L13868: defines an animation timeline.
L13869: selects elements and opens their CSS declaration block.
L13870: sets or begins the opacity CSS property.
L13871: sets or begins the transform CSS property.
L13872: closes the current CSS declaration block.
L13873: selects elements and opens their CSS declaration block.
L13874: sets or begins the opacity CSS property.
L13875: sets or begins the transform CSS property.
L13876: closes the current CSS declaration block.
L13877: closes the current CSS declaration block.
L13879: continues CSS documentation for maintainers.
L13880: selects elements and opens their CSS declaration block.
L13881: sets or begins the margin-top CSS property.
L13882: sets or begins the padding CSS property.
L13883: sets or begins the border-radius CSS property.
L13884: sets or begins the color CSS property.
L13885: sets or begins the background CSS property.
L13886: closes the current CSS declaration block.
L13888: continues CSS documentation for maintainers.
L13889: selects elements and opens their CSS declaration block.
L13890: sets or begins the content CSS property.
L13891: sets or begins the font-size CSS property.
L13892: closes the current CSS declaration block.
L13894: selects elements and opens their CSS declaration block.
L13895: sets or begins the content CSS property.
L13896: sets or begins the color CSS property.
L13897: sets or begins the font-size CSS property.
L13898: closes the current CSS declaration block.
L13900: selects elements and opens their CSS declaration block.
L13901: sets or begins the margin-top CSS property.
L13902: closes the current CSS declaration block.
L13904: continues a grouped selector or multi-line CSS value.
L13905: selects elements and opens their CSS declaration block.
L13906: sets or begins the display CSS property.
L13907: sets or begins the grid-template-columns CSS property.
L13908: sets or begins the gap CSS property.
L13909: closes the current CSS declaration block.
L13911: continues a grouped selector or multi-line CSS value.
L13912: selects elements and opens their CSS declaration block.
L13913: sets or begins the padding CSS property.
L13914: sets or begins the border CSS property.
L13915: sets or begins the border-radius CSS property.
L13916: sets or begins the background CSS property.
L13917: sets or begins the box-shadow CSS property.
L13918: closes the current CSS declaration block.
L13920: continues a grouped selector or multi-line CSS value.
L13921: selects elements and opens their CSS declaration block.
L13922: sets or begins the margin CSS property.
L13923: sets or begins the color CSS property.
L13924: closes the current CSS declaration block.
L13926: selects elements and opens their CSS declaration block.
L13927: sets or begins the color CSS property.
L13928: sets or begins the font-size CSS property.
L13929: sets or begins the font-weight CSS property.
L13930: sets or begins the letter-spacing CSS property.
L13931: sets or begins the text-transform CSS property.
L13932: closes the current CSS declaration block.
L13934: selects elements and opens their CSS declaration block.
L13935: sets or begins the color CSS property.
L13936: sets or begins the font-weight CSS property.
L13937: closes the current CSS declaration block.
L13939: continues a grouped selector or multi-line CSS value.
L13940: selects elements and opens their CSS declaration block.
L13941: sets or begins the display CSS property.
L13942: sets or begins the flex-wrap CSS property.
L13943: sets or begins the gap CSS property.
L13944: sets or begins the margin-top CSS property.
L13945: closes the current CSS declaration block.
L13947: continues a grouped selector or multi-line CSS value.
L13948: selects elements and opens their CSS declaration block.
L13949: sets or begins the min-height CSS property.
L13950: closes the current CSS declaration block.
L13952: continues CSS documentation for maintainers.
L13953: continues a selector, function, animation step, or property value.
L13954: continues CSS documentation for maintainers.
L13956: selects elements and opens their CSS declaration block.
L13957: sets or begins the margin CSS property.
L13958: sets or begins the padding CSS property.
L13959: sets or begins the border CSS property.
L13960: sets or begins the border-top CSS property.
L13961: sets or begins the border-radius CSS property.
L13962: sets or begins the background CSS property.
L13963: continues a selector, function, animation step, or property value.
L13964: continues a grouped selector or multi-line CSS value.
L13965: continues a grouped selector or multi-line CSS value.
L13966: continues a selector, function, animation step, or property value.
L13967: completes the current CSS property value.
L13968: closes the current CSS declaration block.
L13970: selects elements and opens their CSS declaration block.
L13971: sets or begins the display CSS property.
L13972: sets or begins the align-items CSS property.
L13973: sets or begins the justify-content CSS property.
L13974: sets or begins the gap CSS property.
L13975: sets or begins the margin-bottom CSS property.
L13976: closes the current CSS declaration block.
L13978: selects elements and opens their CSS declaration block.
L13979: sets or begins the margin CSS property.
L13980: sets or begins the color CSS property.
L13981: closes the current CSS declaration block.
L13983: selects elements and opens their CSS declaration block.
L13984: sets or begins the margin CSS property.
L13985: sets or begins the max-width CSS property.
L13986: closes the current CSS declaration block.
L13988: selects elements and opens their CSS declaration block.
L13989: sets or begins the padding CSS property.
L13990: sets or begins the border-radius CSS property.
L13991: sets or begins the color CSS property.
L13992: sets or begins the background CSS property.
L13993: closes the current CSS declaration block.
L13995: continues CSS documentation for maintainers.
L13996: continues CSS documentation for maintainers.
L13997: selects elements and opens their CSS declaration block.
L13998: sets or begins the display CSS property.
L13999: closes the current CSS declaration block.
L14001: continues CSS documentation for maintainers.
L14002: continues a selector, function, animation step, or property value.
L14003: continues CSS documentation for maintainers.
L14005: continues a grouped selector or multi-line CSS value.
L14006: selects elements and opens their CSS declaration block.
L14007: sets or begins the display CSS property.
L14008: closes the current CSS declaration block.
L14010: continues a grouped selector or multi-line CSS value.
L14011: selects elements and opens their CSS declaration block.
L14012: sets or begins the display CSS property.
L14013: closes the current CSS declaration block.
L14015: selects elements and opens their CSS declaration block.
L14016: sets or begins the grid-template-columns CSS property.
L14017: closes the current CSS declaration block.
L14019: selects elements and opens their CSS declaration block.
L14020: sets or begins the display CSS property.
L14021: sets or begins the gap CSS property.
L14022: sets or begins the margin CSS property.
L14023: sets or begins the padding CSS property.
L14024: sets or begins the list-style CSS property.
L14025: closes the current CSS declaration block.
L14027: selects elements and opens their CSS declaration block.
L14028: sets or begins the position CSS property.
L14029: sets or begins the padding-left CSS property.
L14030: closes the current CSS declaration block.
L14032: selects elements and opens their CSS declaration block.
L14033: sets or begins the content CSS property.
L14034: sets or begins the position CSS property.
L14035: sets or begins the left CSS property.
L14036: sets or begins the color CSS property.
L14037: sets or begins the font-weight CSS property.
L14038: closes the current CSS declaration block.
L14040: continues CSS documentation for maintainers.
L14041: continues a selector, function, animation step, or property value.
L14042: continues CSS documentation for maintainers.
L14044: continues CSS documentation for maintainers.
L14045: continues a grouped selector or multi-line CSS value.
L14046: continues a selector, function, animation step, or property value.
L14047: continues a selector, function, animation step, or property value.
L14048: continues a selector, function, animation step, or property value.
L14049: continues CSS documentation for maintainers.
L14051: selects elements and opens their CSS declaration block.
L14052: sets or begins the background CSS property.
L14053: continues a selector, function, animation step, or property value.
L14054: continues a grouped selector or multi-line CSS value.
L14055: continues a grouped selector or multi-line CSS value.
L14056: continues a grouped selector or multi-line CSS value.
L14057: continues a grouped selector or multi-line CSS value.
L14058: continues a grouped selector or multi-line CSS value.
L14059: continues a grouped selector or multi-line CSS value.
L14060: continues a selector, function, animation step, or property value.
L14061: completes the current CSS property value.
L14062: closes the current CSS declaration block.
L14064: selects elements and opens their CSS declaration block.
L14065: sets or begins the position CSS property.
L14066: sets or begins the isolation CSS property.
L14067: sets or begins the background CSS property.
L14068: continues a selector, function, animation step, or property value.
L14069: continues a grouped selector or multi-line CSS value.
L14070: continues a grouped selector or multi-line CSS value.
L14071: continues a selector, function, animation step, or property value.
L14072: continues a grouped selector or multi-line CSS value.
L14073: continues a selector, function, animation step, or property value.
L14074: continues a grouped selector or multi-line CSS value.
L14075: continues a grouped selector or multi-line CSS value.
L14076: continues a selector, function, animation step, or property value.
L14077: continues a grouped selector or multi-line CSS value.
L14078: continues a selector, function, animation step, or property value.
L14079: continues a grouped selector or multi-line CSS value.
L14080: continues a grouped selector or multi-line CSS value.
L14081: continues a selector, function, animation step, or property value.
L14082: continues a grouped selector or multi-line CSS value.
L14083: continues a selector, function, animation step, or property value.
L14084: continues a grouped selector or multi-line CSS value.
L14085: continues a grouped selector or multi-line CSS value.
L14086: continues a selector, function, animation step, or property value.
L14087: continues a grouped selector or multi-line CSS value.
L14088: continues a selector, function, animation step, or property value.
L14089: continues a grouped selector or multi-line CSS value.
L14090: continues a grouped selector or multi-line CSS value.
L14091: continues a selector, function, animation step, or property value.
L14092: continues a grouped selector or multi-line CSS value.
L14093: continues a selector, function, animation step, or property value.
L14094: continues a grouped selector or multi-line CSS value.
L14095: continues a grouped selector or multi-line CSS value.
L14096: continues a grouped selector or multi-line CSS value.
L14097: continues a grouped selector or multi-line CSS value.
L14098: continues a grouped selector or multi-line CSS value.
L14099: continues a grouped selector or multi-line CSS value.
L14100: continues a selector, function, animation step, or property value.
L14101: completes the current CSS property value.
L14102: closes the current CSS declaration block.
L14104: continues CSS documentation for maintainers.
L14105: continues a grouped selector or multi-line CSS value.
L14106: continues a grouped selector or multi-line CSS value.
L14107: continues a grouped selector or multi-line CSS value.
L14108: continues a grouped selector or multi-line CSS value.
L14109: continues a grouped selector or multi-line CSS value.
L14110: continues a grouped selector or multi-line CSS value.
L14111: continues a grouped selector or multi-line CSS value.
L14112: continues a grouped selector or multi-line CSS value.
L14113: continues a grouped selector or multi-line CSS value.
L14114: selects elements and opens their CSS declaration block.
L14115: sets or begins the background CSS property.
L14116: closes the current CSS declaration block.
L14118: continues CSS documentation for maintainers.
L14119: continues a grouped selector or multi-line CSS value.
L14120: continues a grouped selector or multi-line CSS value.
L14121: continues a grouped selector or multi-line CSS value.
L14122: continues a grouped selector or multi-line CSS value.
L14123: continues a grouped selector or multi-line CSS value.
L14124: continues a grouped selector or multi-line CSS value.
L14125: continues a grouped selector or multi-line CSS value.
L14126: selects elements and opens their CSS declaration block.
L14127: sets or begins the display CSS property.
L14128: closes the current CSS declaration block.
L14130: continues CSS documentation for maintainers.
L14131: continues a grouped selector or multi-line CSS value.
L14132: continues a grouped selector or multi-line CSS value.
L14133: continues a grouped selector or multi-line CSS value.
L14134: continues a grouped selector or multi-line CSS value.
L14135: continues a grouped selector or multi-line CSS value.
L14136: continues a grouped selector or multi-line CSS value.
L14137: continues a grouped selector or multi-line CSS value.
L14138: selects elements and opens their CSS declaration block.
L14139: sets or begins the opacity CSS property.
L14140: sets or begins the mask-image CSS property.
L14141: continues a grouped selector or multi-line CSS value.
L14142: continues a grouped selector or multi-line CSS value.
L14143: continues a grouped selector or multi-line CSS value.
L14144: continues a grouped selector or multi-line CSS value.
L14145: continues a selector, function, animation step, or property value.
L14146: completes the current CSS property value.
L14147: closes the current CSS declaration block.
L14149: continues CSS documentation for maintainers.
L14150: selects elements and opens their CSS declaration block.
L14151: sets or begins the box-shadow CSS property.
L14152: continues a grouped selector or multi-line CSS value.
L14153: completes the current CSS property value.
L14154: closes the current CSS declaration block.
L14156: continues CSS documentation for maintainers.
L14157: continues a selector, function, animation step, or property value.
L14158: continues CSS documentation for maintainers.
L14160: selects elements and opens their CSS declaration block.
L14161: sets or begins the margin-top CSS property.
L14162: sets or begins the color CSS property.
L14163: sets or begins the border-color CSS property.
L14164: sets or begins the border-top-color CSS property.
L14165: sets or begins the background CSS property.
L14166: continues a selector, function, animation step, or property value.
L14167: continues a grouped selector or multi-line CSS value.
L14168: continues a grouped selector or multi-line CSS value.
L14169: continues a selector, function, animation step, or property value.
L14170: continues a grouped selector or multi-line CSS value.
L14171: continues a selector, function, animation step, or property value.
L14172: continues a grouped selector or multi-line CSS value.
L14173: continues a grouped selector or multi-line CSS value.
L14174: continues a grouped selector or multi-line CSS value.
L14175: continues a selector, function, animation step, or property value.
L14176: completes the current CSS property value.
L14177: sets or begins the box-shadow CSS property.
L14178: closes the current CSS declaration block.
L14180: continues a grouped selector or multi-line CSS value.
L14181: selects elements and opens their CSS declaration block.
L14182: sets or begins the color CSS property.
L14183: closes the current CSS declaration block.
L14185: selects elements and opens their CSS declaration block.
L14186: sets or begins the color CSS property.
L14187: closes the current CSS declaration block.
L14189: continues a grouped selector or multi-line CSS value.
L14190: selects elements and opens their CSS declaration block.
L14191: sets or begins the color CSS property.
L14192: closes the current CSS declaration block.
L14194: continues CSS documentation for maintainers.
L14195: continues CSS documentation for maintainers.
L14196: selects elements and opens their CSS declaration block.
L14197: sets or begins the display CSS property.
L14198: closes the current CSS declaration block.
L14200: continues CSS documentation for maintainers.
L14201: continues a selector, function, animation step, or property value.
L14202: continues CSS documentation for maintainers.
L14204: starts a responsive media query.
L14205: selects elements and opens their CSS declaration block.
L14206: sets or begins the max-width CSS property.
L14207: closes the current CSS declaration block.
L14208: closes the current CSS declaration block.
L14210: starts a responsive media query.
L14211: continues a grouped selector or multi-line CSS value.
L14212: continues a grouped selector or multi-line CSS value.
L14213: selects elements and opens their CSS declaration block.
L14214: sets or begins the grid-template-columns CSS property.
L14215: closes the current CSS declaration block.
L14217: selects elements and opens their CSS declaration block.
L14218: sets or begins the grid-row CSS property.
L14219: sets or begins the min-height CSS property.
L14220: closes the current CSS declaration block.
L14222: selects elements and opens their CSS declaration block.
L14223: sets or begins the grid-template-columns CSS property.
L14224: closes the current CSS declaration block.
L14226: selects elements and opens their CSS declaration block.
L14227: sets or begins the grid-column CSS property.
L14228: sets or begins the justify-self CSS property.
L14229: closes the current CSS declaration block.
L14230: closes the current CSS declaration block.
L14232: starts a responsive media query.
L14233: selects elements and opens their CSS declaration block.
L14234: sets or begins the grid-template-columns CSS property.
L14235: sets or begins the text-align CSS property.
L14236: closes the current CSS declaration block.
L14238: selects elements and opens their CSS declaration block.
L14239: sets or begins the flex-direction CSS property.
L14240: closes the current CSS declaration block.
L14242: continues a grouped selector or multi-line CSS value.
L14243: selects elements and opens their CSS declaration block.
L14244: sets or begins the flex-direction CSS property.
L14245: closes the current CSS declaration block.
L14247: continues a grouped selector or multi-line CSS value.
L14248: selects elements and opens their CSS declaration block.
L14249: sets or begins the width CSS property.
L14250: sets or begins the justify-content CSS property.
L14251: closes the current CSS declaration block.
L14253: selects elements and opens their CSS declaration block.
L14254: sets or begins the max-width CSS property.
L14255: closes the current CSS declaration block.
L14256: closes the current CSS declaration block.
L14258: continues CSS documentation for maintainers.
L14259: continues CSS documentation for maintainers.
L14260: continues a grouped selector or multi-line CSS value.
L14261: selects elements and opens their CSS declaration block.
L14262: sets or begins the display CSS property.
L14263: closes the current CSS declaration block.
L14265: continues CSS documentation for maintainers.
L14266: continues a selector, function, animation step, or property value.
L14267: continues a selector, function, animation step, or property value.
L14268: continues a selector, function, animation step, or property value.
L14269: continues a selector, function, animation step, or property value.
L14270: continues a selector, function, animation step, or property value.
L14271: continues a selector, function, animation step, or property value.
L14272: continues CSS documentation for maintainers.
L14274: starts a responsive media query.
L14276: selects elements and opens their CSS declaration block.
L14277: sets or begins the height CSS property.
L14278: completes the current CSS property value.
L14280: sets or begins the padding CSS property.
L14281: continues a selector, function, animation step, or property value.
L14282: completes the current CSS property value.
L14284: sets or begins the background CSS property.
L14285: continues a selector, function, animation step, or property value.
L14286: continues a grouped selector or multi-line CSS value.
L14287: continues a grouped selector or multi-line CSS value.
L14288: continues a selector, function, animation step, or property value.
L14289: continues a grouped selector or multi-line CSS value.
L14290: continues a selector, function, animation step, or property value.
L14291: continues a grouped selector or multi-line CSS value.
L14292: continues a grouped selector or multi-line CSS value.
L14293: continues a selector, function, animation step, or property value.
L14294: continues a grouped selector or multi-line CSS value.
L14295: completes the current CSS property value.
L14296: closes the current CSS declaration block.
L14299: selects elements and opens their CSS declaration block.
L14300: sets or begins the position CSS property.
L14301: completes the current CSS property value.
L14303: sets or begins the top CSS property.
L14304: completes the current CSS property value.
L14306: sets or begins the z-index CSS property.
L14307: completes the current CSS property value.
L14309: sets or begins the min-height CSS property.
L14310: completes the current CSS property value.
L14312: sets or begins the padding CSS property.
L14313: completes the current CSS property value.
L14315: sets or begins the background CSS property.
L14316: continues a selector, function, animation step, or property value.
L14317: continues a grouped selector or multi-line CSS value.
L14318: continues a grouped selector or multi-line CSS value.
L14319: continues a selector, function, animation step, or property value.
L14320: completes the current CSS property value.
L14322: sets or begins the border-bottom CSS property.
L14323: completes the current CSS property value.
L14324: closes the current CSS declaration block.
L14327: selects elements and opens their CSS declaration block.
L14328: sets or begins the color CSS property.
L14329: completes the current CSS property value.
L14331: sets or begins the font-size CSS property.
L14332: completes the current CSS property value.
L14333: closes the current CSS declaration block.
L14336: selects elements and opens their CSS declaration block.
L14337: sets or begins the display CSS property.
L14338: completes the current CSS property value.
L14340: sets or begins the grid-template-columns CSS property.
L14341: completes the current CSS property value.
L14343: sets or begins the align-items CSS property.
L14344: completes the current CSS property value.
L14346: sets or begins the gap CSS property.
L14347: completes the current CSS property value.
L14349: sets or begins the margin CSS property.
L14350: completes the current CSS property value.
L14352: sets or begins the padding CSS property.
L14353: completes the current CSS property value.
L14355: sets or begins the border CSS property.
L14356: completes the current CSS property value.
L14358: sets or begins the border-radius CSS property.
L14359: completes the current CSS property value.
L14361: sets or begins the background CSS property.
L14362: continues a selector, function, animation step, or property value.
L14363: continues a grouped selector or multi-line CSS value.
L14364: continues a grouped selector or multi-line CSS value.
L14365: continues a selector, function, animation step, or property value.
L14366: completes the current CSS property value.
L14368: sets or begins the box-shadow CSS property.
L14369: completes the current CSS property value.
L14370: closes the current CSS declaration block.
L14373: selects elements and opens their CSS declaration block.
L14374: sets or begins the display CSS property.
L14375: completes the current CSS property value.
L14376: closes the current CSS declaration block.
L14379: selects elements and opens their CSS declaration block.
L14380: sets or begins the display CSS property.
L14381: completes the current CSS property value.
L14383: sets or begins the place-items CSS property.
L14384: completes the current CSS property value.
L14386: sets or begins the width CSS property.
L14387: completes the current CSS property value.
L14389: sets or begins the height CSS property.
L14390: completes the current CSS property value.
L14392: sets or begins the border-radius CSS property.
L14393: completes the current CSS property value.
L14395: sets or begins the color CSS property.
L14396: completes the current CSS property value.
L14398: sets or begins the background CSS property.
L14399: continues a selector, function, animation step, or property value.
L14400: continues a grouped selector or multi-line CSS value.
L14401: continues a grouped selector or multi-line CSS value.
L14402: continues a selector, function, animation step, or property value.
L14403: completes the current CSS property value.
L14404: closes the current CSS declaration block.
L14407: selects elements and opens their CSS declaration block.
L14408: sets or begins the width CSS property.
L14409: completes the current CSS property value.
L14411: sets or begins the height CSS property.
L14412: completes the current CSS property value.
L14413: closes the current CSS declaration block.
L14416: selects elements and opens their CSS declaration block.
L14417: sets or begins the min-width CSS property.
L14418: completes the current CSS property value.
L14419: closes the current CSS declaration block.
L14422: continues a grouped selector or multi-line CSS value.
L14423: selects elements and opens their CSS declaration block.
L14424: sets or begins the display CSS property.
L14425: completes the current CSS property value.
L14426: closes the current CSS declaration block.
L14429: selects elements and opens their CSS declaration block.
L14430: sets or begins the margin-bottom CSS property.
L14431: completes the current CSS property value.
L14433: sets or begins the color CSS property.
L14434: completes the current CSS property value.
L14436: sets or begins the font-size CSS property.
L14437: completes the current CSS property value.
L14439: sets or begins the font-weight CSS property.
L14440: completes the current CSS property value.
L14442: sets or begins the letter-spacing CSS property.
L14443: completes the current CSS property value.
L14445: sets or begins the text-transform CSS property.
L14446: completes the current CSS property value.
L14447: closes the current CSS declaration block.
L14450: selects elements and opens their CSS declaration block.
L14451: sets or begins the overflow CSS property.
L14452: completes the current CSS property value.
L14454: sets or begins the color CSS property.
L14455: completes the current CSS property value.
L14457: sets or begins the font-family CSS property.
L14458: completes the current CSS property value.
L14460: sets or begins the font-size CSS property.
L14461: completes the current CSS property value.
L14463: sets or begins the text-overflow CSS property.
L14464: completes the current CSS property value.
L14466: sets or begins the white-space CSS property.
L14467: completes the current CSS property value.
L14468: closes the current CSS declaration block.
L14471: selects elements and opens their CSS declaration block.
L14472: sets or begins the margin-top CSS property.
L14473: completes the current CSS property value.
L14474: closes the current CSS declaration block.
L14477: selects elements and opens their CSS declaration block.
L14478: sets or begins the display CSS property.
L14479: completes the current CSS property value.
L14481: sets or begins the grid-template-columns CSS property.
L14482: completes the current CSS property value.
L14484: sets or begins the align-items CSS property.
L14485: completes the current CSS property value.
L14487: sets or begins the gap CSS property.
L14488: completes the current CSS property value.
L14490: sets or begins the min-height CSS property.
L14491: completes the current CSS property value.
L14493: sets or begins the padding CSS property.
L14494: completes the current CSS property value.
L14496: sets or begins the color CSS property.
L14497: completes the current CSS property value.
L14498: closes the current CSS declaration block.
L14501: selects elements and opens their CSS declaration block.
L14502: sets or begins the grid-template-columns CSS property.
L14503: completes the current CSS property value.
L14504: closes the current CSS declaration block.
L14507: continues a grouped selector or multi-line CSS value.
L14508: selects elements and opens their CSS declaration block.
L14509: sets or begins the color CSS property.
L14510: completes the current CSS property value.
L14512: sets or begins the font-size CSS property.
L14513: completes the current CSS property value.
L14515: sets or begins the font-weight CSS property.
L14516: completes the current CSS property value.
L14517: closes the current CSS declaration block.
L14520: selects elements and opens their CSS declaration block.
L14521: sets or begins the color CSS property.
L14522: completes the current CSS property value.
L14524: sets or begins the background CSS property.
L14525: continues a selector, function, animation step, or property value.
L14526: continues a grouped selector or multi-line CSS value.
L14527: continues a grouped selector or multi-line CSS value.
L14528: continues a selector, function, animation step, or property value.
L14529: completes the current CSS property value.
L14531: sets or begins the box-shadow CSS property.
L14532: continues a selector, function, animation step, or property value.
L14533: completes the current CSS property value.
L14534: closes the current CSS declaration block.
L14537: continues a grouped selector or multi-line CSS value.
L14538: selects elements and opens their CSS declaration block.
L14539: sets or begins the color CSS property.
L14540: completes the current CSS property value.
L14541: closes the current CSS declaration block.
L14544: selects elements and opens their CSS declaration block.
L14545: sets or begins the width CSS property.
L14546: completes the current CSS property value.
L14548: sets or begins the height CSS property.
L14549: completes the current CSS property value.
L14551: sets or begins the color CSS property.
L14552: completes the current CSS property value.
L14553: closes the current CSS declaration block.
L14556: selects elements and opens their CSS declaration block.
L14557: sets or begins the margin-top CSS property.
L14558: completes the current CSS property value.
L14560: sets or begins the padding CSS property.
L14561: completes the current CSS property value.
L14563: sets or begins the border-color CSS property.
L14564: completes the current CSS property value.
L14566: sets or begins the background CSS property.
L14567: completes the current CSS property value.
L14568: closes the current CSS declaration block.
L14571: continues a grouped selector or multi-line CSS value.
L14572: selects elements and opens their CSS declaration block.
L14573: sets or begins the color CSS property.
L14574: completes the current CSS property value.
L14575: closes the current CSS declaration block.
L14577: closes the current CSS declaration block.
L14580: starts a responsive media query.
L14582: selects elements and opens their CSS declaration block.
L14583: sets or begins the width CSS property.
L14584: completes the current CSS property value.
L14586: sets or begins the padding-inline CSS property.
L14587: completes the current CSS property value.
L14588: closes the current CSS declaration block.
L14591: selects elements and opens their CSS declaration block.
L14592: sets or begins the font-size CSS property.
L14593: completes the current CSS property value.
L14594: closes the current CSS declaration block.
L14596: closes the current CSS declaration block.
*/

/* =====================================================================
   HEADS UP VERSION UPDATE — LARGER HEADER LOGO, FULL ARTWORK VISIBLE
   =====================================================================
   This patch changes ONLY the top-left header logo presentation.

   The supplied logo is a wide image. To make the program mark larger
   without clipping it, this version:
   - preserves the logo's natural wide aspect ratio;
   - increases both width and height proportionally;
   - removes nearly all inner frame padding;
   - keeps object-fit: contain;
   - explicitly removes image transforms so no edge of the logo is cropped;
   - keeps the existing main-header heights unchanged on desktop and phone.

   Footer logo, navigation, portal, contact, mobile drawer, quick dock,
   authentication, email workflows, calendar tools, and all other layout
   remain unchanged.
   ===================================================================== */

.main-header .logo-frame {

    /*
       Desktop:
       9.30 / 4.75 ≈ 1.958, almost identical to the supplied logo's
       natural 493 / 252 ≈ 1.956 aspect ratio.
    */
    width:
        9.3rem;

    height:
        4.75rem;

    flex:
        0 0 9.3rem;

    /*
       Minimal padding lets the full artwork use more of the existing
       frame without changing the top-bar height.
    */
    padding:
        0.04rem;

}


.main-header .logo-image,
.main-header .logo-frame img {

    /*
       Keep every edge of the supplied logo visible.
       No zoom transform is used, so the artwork cannot be clipped by
       the frame's existing overflow: hidden behavior.
    */
    width:
        100%;

    height:
        100%;

    object-fit:
        contain;

    object-position:
        center;

    transform:
        none !important;

}


@media (max-width: 1260px) {

    .main-header .logo-frame {

        /*
           Tablet / collapsed-navigation size.
           The header remains 5.25rem tall exactly as before.
        */
        width:
            8.7rem;

        height:
            4.45rem;

        flex:
            0 0 8.7rem;

        padding:
            0.04rem;

    }

}


@media (max-width: 720px) {

    .main-header .logo-frame {

        /*
           Phone size.
           The logo is larger than the former 7rem x 3.6rem treatment,
           but remains comfortably inside the existing 4.85rem header.
        */
        width:
            7.9rem;

        height:
            4.04rem;

        flex:
            0 0 7.9rem;

        padding:
            0.035rem;

    }

}

/* =====================================================================
   HEADS UP VERSION UPDATE — LARGE HOME-PAGE BRAND LOCKUP
   =====================================================================
   Professional logo solution:
   - The existing sticky-header logo remains completely unchanged.
   - A larger version of the same official logo is added to the HOME hero.
   - This creates a strong program identity without making the navigation
     bar taller or crowding desktop/mobile navigation.
   - The logo scales responsively and always uses object-fit: contain, so
     the complete artwork remains visible.
   ===================================================================== */

.hero-brand-lockup {

    /* Keep the brand mark aligned with the existing left hero content. */
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    /* Large enough to clearly identify the program on first view. */
    width:
        clamp(15.5rem, 22vw, 21rem);

    max-width:
        100%;

    margin-bottom:
        1rem;

    /* A restrained presentation keeps the supplied white logo professional. */
    border-radius:
        1.15rem;

    filter:
        drop-shadow(0 14px 26px rgba(0, 74, 173, 0.12));

}


.hero-brand-lockup__image {

    display:
        block;

    width:
        100%;

    height:
        auto;

    max-height:
        10.75rem;

    object-fit:
        contain;

    object-position:
        left center;

}


/* Keep the current hero eyebrow directly connected to the larger logo. */
.hero-brand-lockup + .hero-eyebrow {

    margin-top:
        0;

}


@media (max-width: 1260px) {

    .hero-brand-lockup {

        width:
            clamp(14rem, 34vw, 19rem);

    }

}


@media (max-width: 720px) {

    .hero-brand-lockup {

        /*
           On phones, center the program mark above the existing hero copy.
           It remains large without affecting the sticky navigation bar.
        */
        display:
            flex;

        width:
            min(17rem, 82vw);

        margin-right:
            auto;

        margin-bottom:
            0.9rem;

        margin-left:
            auto;

    }


    .hero-brand-lockup__image {

        object-position:
            center;

    }

}

/* =====================================================================
   HERO LOGO POLISH UPDATE
   ---------------------------------------------------------------------
   Purpose:
   - Keep the larger homepage logo
   - Make it feel intentionally designed instead of looking like a plain
     pasted image box
   - Preserve the existing top header exactly as-is
   - Use only subtle, professional motion
   ===================================================================== */

.hero-brand-lockup {

    position:
        relative;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        clamp(15.5rem, 22vw, 21rem);

    max-width:
        100%;

    margin-bottom:
        1.15rem;

    padding:
        1rem 1rem 0.85rem;

    border-radius:
        1.55rem;

    border:
        1px solid rgba(77, 148, 166, 0.22);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(247, 251, 255, 0.98) 55%,
            rgba(240, 250, 247, 0.96) 100%
        );

    box-shadow:
        0 20px 46px rgba(0, 74, 173, 0.10),
        0 8px 18px rgba(77, 148, 166, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);

    backdrop-filter:
        blur(8px);

    overflow:
        hidden;

    animation:
        heroLogoFloat 7s ease-in-out infinite;

}


/* Soft highlight glow behind the card */
.hero-brand-lockup::before {

    content:
        "";

    position:
        absolute;

    inset:
        -10%;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(237, 180, 41, 0.15),
            transparent 34%
        ),
        radial-gradient(
            circle at 82% 18%,
            rgba(77, 148, 166, 0.16),
            transparent 32%
        ),
        radial-gradient(
            circle at 50% 100%,
            rgba(76, 135, 43, 0.10),
            transparent 32%
        );

    pointer-events:
        none;

    z-index:
        0;

}


/* A very subtle sheen makes it feel designed, not distracting */
.hero-brand-lockup::after {

    content:
        "";

    position:
        absolute;

    top:
        0;

    left:
        -120%;

    width:
        58%;

    height:
        100%;

    background:
        linear-gradient(
            110deg,
            transparent 0%,
            rgba(255, 255, 255, 0.42) 48%,
            transparent 100%
        );

    transform:
        skewX(-18deg);

    opacity:
        0.55;

    pointer-events:
        none;

    z-index:
        1;

    animation:
        heroLogoSheen 11s ease-in-out infinite;

}


.hero-brand-lockup__image {

    position:
        relative;

    z-index:
        2;

    display:
        block;

    width:
        100%;

    height:
        auto;

    max-height:
        10.75rem;

    object-fit:
        contain;

    object-position:
        center center;

    filter:
        drop-shadow(0 8px 18px rgba(0, 74, 173, 0.08));

}


.hero-brand-lockup + .hero-eyebrow {

    margin-top:
        0;

}


/* Slow, minimal float animation */
@keyframes heroLogoFloat {

    0%,
    100% {

        transform:
            translateY(0px);

    }

    50% {

        transform:
            translateY(-6px);

    }

}


/* Very infrequent and soft shimmer */
@keyframes heroLogoSheen {

    0%,
    70%,
    100% {

        left:
            -125%;
        opacity:
            0;

    }

    78% {

        opacity:
            0.35;

    }

    90% {

        left:
            145%;
        opacity:
            0.12;

    }

}


@media (prefers-reduced-motion: reduce) {

    .hero-brand-lockup,
    .hero-brand-lockup::after {

        animation:
            none !important;

    }

}


@media (max-width: 1260px) {

    .hero-brand-lockup {

        width:
            clamp(14rem, 34vw, 19rem);

    }

}


@media (max-width: 720px) {

    .hero-brand-lockup {

        display:
            flex;

        width:
            min(17rem, 82vw);

        margin-right:
            auto;

        margin-bottom:
            0.95rem;

        margin-left:
            auto;

        padding:
            0.9rem 0.9rem 0.75rem;

        border-radius:
            1.35rem;

    }


    .hero-brand-lockup__image {

        object-position:
            center;

    }

}

/* =====================================================================
   HERO LOGO SMOOTH PROFESSIONAL REFINEMENT
   ---------------------------------------------------------------------
   Purpose:
   - Keep the large homepage logo and overall placement exactly as-is
   - Make the presentation feel smoother, softer, and more refined
   - Reduce the "boxed pasted image" feeling
   - Keep motion subtle and professional
   ===================================================================== */

.hero-brand-lockup {

    position:
        relative;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        clamp(15.5rem, 22vw, 21rem);

    max-width:
        100%;

    margin-bottom:
        1.2rem;

    padding:
        1.1rem 1.15rem 0.95rem;

    border-radius:
        1.65rem;

    border:
        1px solid rgba(77, 148, 166, 0.16);

    background:
        linear-gradient(
            155deg,
            rgba(255, 255, 255, 0.94) 0%,
            rgba(252, 253, 255, 0.975) 48%,
            rgba(245, 251, 251, 0.95) 100%
        );

    box-shadow:
        0 18px 42px rgba(0, 74, 173, 0.08),
        0 8px 18px rgba(77, 148, 166, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);

    backdrop-filter:
        blur(10px);

    overflow:
        hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

    animation:
        heroLogoDrift 8s ease-in-out infinite;

}


/* Soft ambient glow */
.hero-brand-lockup::before {

    content:
        "";

    position:
        absolute;

    inset:
        -8%;

    background:
        radial-gradient(
            circle at 18% 22%,
            rgba(237, 180, 41, 0.10),
            transparent 34%
        ),
        radial-gradient(
            circle at 82% 16%,
            rgba(77, 148, 166, 0.11),
            transparent 30%
        ),
        radial-gradient(
            circle at 50% 100%,
            rgba(76, 135, 43, 0.08),
            transparent 28%
        );

    pointer-events:
        none;

    z-index:
        0;

    opacity:
        0.95;

}


/* Very soft top glow strip */
.hero-brand-lockup::after {

    content:
        "";

    position:
        absolute;

    top:
        0;

    left:
        12%;

    width:
        76%;

    height:
        1px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.9) 50%,
            transparent 100%
        );

    opacity:
        0.95;

    pointer-events:
        none;

    z-index:
        1;

}


.hero-brand-lockup__image {

    position:
        relative;

    z-index:
        2;

    display:
        block;

    width:
        100%;

    height:
        auto;

    max-height:
        10.8rem;

    object-fit:
        contain;

    object-position:
        center center;

    filter:
        drop-shadow(0 7px 16px rgba(0, 74, 173, 0.05));

}


/* Keep this subtle and calm */
@keyframes heroLogoDrift {

    0%,
    100% {

        transform:
            translateY(0px);

    }

    50% {

        transform:
            translateY(-4px);

    }

}


.hero-brand-lockup:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 22px 46px rgba(0, 74, 173, 0.095),
        0 9px 22px rgba(77, 148, 166, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);

    border-color:
        rgba(77, 148, 166, 0.22);

}


/* Make the logo feel integrated into the hero instead of floating alone */
.hero-brand-lockup + .hero-eyebrow {

    margin-top:
        0.15rem;

}


@media (prefers-reduced-motion: reduce) {

    .hero-brand-lockup {

        animation:
            none !important;

        transition:
            none !important;

    }

}


@media (max-width: 1260px) {

    .hero-brand-lockup {

        width:
            clamp(14rem, 34vw, 19rem);

    }

}


@media (max-width: 720px) {

    .hero-brand-lockup {

        display:
            flex;

        width:
            min(16.5rem, 82vw);

        margin-right:
            auto;

        margin-bottom:
            1rem;

        margin-left:
            auto;

        padding:
            1rem 1rem 0.82rem;

        border-radius:
            1.4rem;

    }

}

/* =====================================================================
   HERO LOGO — SEAMLESS BACKGROUND INTEGRATION
   ---------------------------------------------------------------------
   Purpose:
   - Keep the large homepage logo exactly where it is.
   - Remove visible rectangular/card edges.
   - Visually merge the white PNG background into the hero background.
   - Preserve a subtle, professional floating effect.
   - Leave every other website component untouched.
   ===================================================================== */

.hero-brand-lockup {

    /*
       Remove the card treatment completely so the logo no longer appears
       to sit inside a separate white box.
    */
    background:
        transparent;

    border:
        0;

    box-shadow:
        none;

    backdrop-filter:
        none;

    padding:
        0.25rem;

    border-radius:
        0;

    overflow:
        visible;

    /*
       Keep the motion restrained: only a few pixels over a long cycle.
    */
    animation:
        heroLogoSeamlessFloat 8.5s ease-in-out infinite;

    transition:
        transform 0.35s ease;

}


/*
   Replace the previous card glow with a feathered aura.
   It has no rectangular boundary and softly fades into the hero.
*/
.hero-brand-lockup::before {

    content:
        "";

    position:
        absolute;

    inset:
        -18% -14%;

    z-index:
        -1;

    pointer-events:
        none;

    border-radius:
        50%;

    background:
        radial-gradient(
            ellipse at center,
            rgba(77, 148, 166, 0.10) 0%,
            rgba(237, 180, 41, 0.055) 38%,
            rgba(76, 135, 43, 0.03) 58%,
            transparent 76%
        );

    filter:
        blur(22px);

    opacity:
        0.9;

}


/* Remove the former hard highlight / sheen layer. */
.hero-brand-lockup::after {

    content:
        none;

    display:
        none;

}


/*
   KEY DETAIL:
   The source PNG has a white canvas. On this very light hero background,
   multiply treats white as visually neutral, allowing the page background
   to show through while preserving the colored Heads Up artwork.
*/
.hero-brand-lockup__image {

    position:
        relative;

    z-index:
        1;

    mix-blend-mode:
        multiply;

    background:
        transparent;

    filter:
        drop-shadow(0 10px 18px rgba(0, 74, 173, 0.055));

    transform:
        translateZ(0);

}


/*
   Minimal movement: enough to feel alive, not enough to distract.
*/
@keyframes heroLogoSeamlessFloat {

    0%,
    100% {

        transform:
            translate3d(0, 0, 0);

    }

    50% {

        transform:
            translate3d(0, -3px, 0);

    }

}


/*
   The hover remains understated and does not reintroduce a card.
*/
.hero-brand-lockup:hover {

    box-shadow:
        none;

    border-color:
        transparent;

    transform:
        translateY(-2px);

}


/*
   Respect reduced-motion preferences.
*/
@media (prefers-reduced-motion: reduce) {

    .hero-brand-lockup {

        animation:
            none !important;

        transform:
            none !important;

    }

}


/*
   Keep the same current responsive logo sizing.
*/
@media (max-width: 720px) {

    .hero-brand-lockup {

        padding:
            0.15rem;

    }

}

/* =====================================================================
   HERO LOGO — ROUNDED, SEAMLESS, AMBIENT PROFESSIONAL PRESENTATION
   ---------------------------------------------------------------------
   Scope:
   - Changes ONLY the large logo inside the HOME hero.
   - Does NOT change the sticky header, header logo, navigation,
     authentication, portal, contact, calendar, or mobile systems.

   Design goals:
   - Rounded edges instead of a hard rectangular image boundary.
   - Soft background tones that match the Heads Up page.
   - Feather the PNG canvas into the hero so the white edge is less visible.
   - Very subtle floating / ambient movement.
   - Respect reduced-motion accessibility preferences.
   ===================================================================== */

.hero-brand-lockup {

    position:
        relative;

    isolation:
        isolate;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        clamp(15.5rem, 22vw, 21rem);

    max-width:
        100%;

    margin-bottom:
        1.2rem;

    /*
       A small amount of breathing room gives the rounded edge a deliberate
       visual finish without making the logo look like a heavy card.
    */
    padding:
        0.55rem;

    border-radius:
        1.7rem;

    /*
       The surface borrows the same soft blue / cream / teal family already
       used throughout the Heads Up page, so the logo feels embedded in the
       hero rather than pasted on top of it.
    */
    background:
        linear-gradient(
            145deg,
            rgba(255, 253, 247, 0.48) 0%,
            rgba(239, 248, 253, 0.52) 52%,
            rgba(232, 248, 245, 0.46) 100%
        );

    border:
        1px solid rgba(77, 148, 166, 0.12);

    box-shadow:
        0 18px 44px rgba(0, 74, 173, 0.065),
        0 7px 18px rgba(77, 148, 166, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.66);

    backdrop-filter:
        blur(7px);

    overflow:
        hidden;

    /*
       Slow and small: enough to feel alive, not enough to distract.
    */
    animation:
        headsUpHeroLogoFloat 10s ease-in-out infinite;

    transition:
        transform 280ms ease,
        box-shadow 280ms ease,
        border-color 280ms ease;

}


/*
   A soft brand-colored aura lives behind the logo.
   It has no visible rectangular edge and slowly breathes.
*/
.hero-brand-lockup::before {

    content:
        "";

    position:
        absolute;

    inset:
        -24%;

    z-index:
        -1;

    border-radius:
        50%;

    pointer-events:
        none;

    background:
        radial-gradient(
            circle at 24% 28%,
            rgba(237, 180, 41, 0.12),
            transparent 34%
        ),
        radial-gradient(
            circle at 78% 22%,
            rgba(77, 148, 166, 0.14),
            transparent 32%
        ),
        radial-gradient(
            circle at 48% 82%,
            rgba(76, 135, 43, 0.08),
            transparent 36%
        );

    filter:
        blur(26px);

    opacity:
        0.75;

    animation:
        headsUpHeroLogoAura 14s ease-in-out infinite alternate;

}


/*
   Keep the edge treatment minimal. There is no moving sheen or hard
   highlight strip because that made the image boundary more noticeable.
*/
.hero-brand-lockup::after {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    z-index:
        2;

    border-radius:
        inherit;

    pointer-events:
        none;

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.24);

}


/*
   The logo image itself keeps the full artwork visible.
   The mask softly fades only the outside edge of the source PNG canvas,
   which helps the white background dissolve into the rounded hero surface.
*/
.hero-brand-lockup__image {

    position:
        relative;

    z-index:
        1;

    display:
        block;

    width:
        100%;

    height:
        auto;

    max-height:
        10.8rem;

    object-fit:
        contain;

    object-position:
        center center;

    border-radius:
        1.3rem;

    background:
        transparent;

    mix-blend-mode:
        multiply;

    filter:
        saturate(1.015)
        contrast(1.01)
        drop-shadow(0 9px 17px rgba(0, 74, 173, 0.045));

    /*
       Feather the source image's outer canvas instead of showing a hard
       white rectangle. Both prefixed and standard properties are provided.
    */
    -webkit-mask-image:
        radial-gradient(
            ellipse at center,
            #000 0%,
            #000 77%,
            rgba(0, 0, 0, 0.98) 84%,
            rgba(0, 0, 0, 0.78) 93%,
            transparent 100%
        );

    mask-image:
        radial-gradient(
            ellipse at center,
            #000 0%,
            #000 77%,
            rgba(0, 0, 0, 0.98) 84%,
            rgba(0, 0, 0, 0.78) 93%,
            transparent 100%
        );

}


/* Calm float: only 3px of travel over a 10-second cycle. */
@keyframes headsUpHeroLogoFloat {

    0%,
    100% {

        transform:
            translate3d(0, 0, 0);

    }

    50% {

        transform:
            translate3d(0, -3px, 0);

    }

}


/* Slow aura breathing; intentionally subtle. */
@keyframes headsUpHeroLogoAura {

    0% {

        opacity:
            0.58;

        transform:
            translate3d(-1%, 1%, 0)
            scale(0.98);

    }

    100% {

        opacity:
            0.82;

        transform:
            translate3d(1%, -1%, 0)
            scale(1.03);

    }

}


/*
   Hover adds only a tiny lift and slightly cleaner shadow.
   It intentionally avoids a dramatic animation.
*/
.hero-brand-lockup:hover {

    transform:
        translateY(-2px);

    border-color:
        rgba(77, 148, 166, 0.18);

    box-shadow:
        0 21px 48px rgba(0, 74, 173, 0.075),
        0 8px 20px rgba(77, 148, 166, 0.055),
        inset 0 1px 0 rgba(255, 255, 255, 0.70);

}


/*
   Keep the existing program-name eyebrow connected to the logo.
*/
.hero-brand-lockup + .hero-eyebrow {

    margin-top:
        0.15rem;

}


/* Accessibility: remove all ambient motion when requested by the user. */
@media (prefers-reduced-motion: reduce) {

    .hero-brand-lockup,
    .hero-brand-lockup::before {

        animation:
            none !important;

        transform:
            none !important;

    }


    .hero-brand-lockup {

        transition:
            none !important;

    }

}


/* Keep the current tablet sizing. */
@media (max-width: 1260px) {

    .hero-brand-lockup {

        width:
            clamp(14rem, 34vw, 19rem);

    }

}


/* Keep the current phone sizing and center the logo naturally. */
@media (max-width: 720px) {

    .hero-brand-lockup {

        display:
            flex;

        width:
            min(16.5rem, 82vw);

        margin-right:
            auto;

        margin-bottom:
            1rem;

        margin-left:
            auto;

        padding:
            0.42rem;

        border-radius:
            1.45rem;

    }


    .hero-brand-lockup__image {

        border-radius:
            1.12rem;

    }

}

/* =====================================================================
   HEADS UP VERSION UPDATE — DESKTOP HERO LOGO MOVED TO RIGHT
   =====================================================================
   Scope:
   - Changes ONLY the large HOME hero logo's visual position on computers.
   - The logo now sits above the right-side "Learn / Explore / Belong / Grow"
     community visual.
   - The logo remains in normal document flow, so the existing left-side hero
     text retains its current spacing and does not jump upward.
   - Tablet and phone layouts are NOT changed.

   Technical approach:
   - position: relative keeps the element's original layout space.
   - left visually moves only the logo across the two-column desktop grid.
   - The existing transform-based ambient float animation still works because
     this patch does not replace its transform animation.
   ===================================================================== */

@media (min-width: 981px) {

    .hero-brand-lockup {

        /*
           Keep the current rounded / ambient logo treatment and move only
           its visual position into the right-hand hero column.
        */
        position:
            relative;

        left:
            calc(
                100%
                + clamp(7.5rem, 8.5vw, 11.5rem)
            );

        /*
           Make sure the brand mark sits above the interactive puzzle pieces
           without disabling any of those links.
        */
        z-index:
            6;

        /*
           The logo is informational, so pointer interactions pass through
           to the right-side hero controls underneath if necessary.
        */
        pointer-events:
            none;

    }

}


/*
   Preserve the existing tablet / mobile placement exactly.
*/
@media (max-width: 980px) {

    .hero-brand-lockup {

        left:
            auto;

        pointer-events:
            auto;

    }

}
