
/*html, body {*/
/*    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;*/
/*}*/

:root {
    /* --primary-font, --secondary-font, --mono-font are defined in css/fonts.css */
    --cctc-logo-color: #61c3d0;
}

body {
    /*
        https://developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior-y
        No scroll chaining occurs to neighboring scrolling areas, and default scroll overflow behavior is prevented.

        prevents the pull-down-refresh working on mobile
    */
    overscroll-behavior-y: none !important;

    background-color: #083054;
}

/*
    Material Icons render via font ligatures: the element's text content
    ("open_in_new", "bar_chart", …) becomes a single glyph only once the icon
    font has loaded. The font is served from a CDN, so before it loads — or if
    the request is slow/blocked — the ligature text is laid out as literal
    words at the icon's font-size, overflowing the page horizontally and
    breaking WCAG 2.2 SC 1.4.10 (Reflow).

    Constraining every icon to a 1em box with overflow:hidden clips that
    literal text so the page's layout width is stable regardless of font-load
    state. The icon glyph itself is 1em, so nothing is clipped once loaded.
*/
.material-icons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    overflow: hidden;
    flex-shrink: 0;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred."
}

/*Ken Burns*/
.ken-burns {
    animation: ken-burns-move 40s linear alternate infinite;
    overflow: hidden;
}

@keyframes ken-burns-move {
    0% {
        transform-origin: bottom center;
        transform: scale(1.0);
    }
    100% {
        transform: scale(1.2);
    }
}


/* Primary type utilities — Outfit (self-hosted, css/fonts.css).
   Variable file covers the full 100–900 weight axis. */

.primary-font-extra-light {
    font-family: var(--primary-font), sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

.primary-font-extra-light-italic {
    font-family: var(--primary-font), sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: italic;
}

.primary-font-regular {
    font-family: var(--primary-font), sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.primary-font-regular-italic {
    font-family: var(--primary-font), sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: italic;
}

.primary-font-semi-bold {
    font-family: var(--primary-font), sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.primary-font-semi-bold-italic {
    font-family: var(--primary-font), sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: italic;
}

.primary-font-extra-bold {
    font-family: var(--primary-font), sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.primary-font-extra-bold-italic {
    font-family: var(--primary-font), sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: italic;
}


/* Secondary type utilities — same family as primary (Outfit).
   --secondary-font is aliased to --primary-font in css/fonts.css so existing
   .secondary-font-* call sites keep working. */

.secondary-font-extra-light {
    font-family: var(--secondary-font), sans-serif;
    font-weight: 200;
    font-style: normal;
}

.secondary-font-extra-light-italic {
    font-family: var(--secondary-font), sans-serif;
    font-weight: 200;
    font-style: italic;
}

.secondary-font-regular {
    font-family: var(--secondary-font), sans-serif;
    font-weight: 400;
    font-style: normal;
}

.secondary-font-regular-italic {
    font-family: var(--secondary-font), sans-serif;
    font-weight: 400;
    font-style: italic;
}

.secondary-font-semi-bold {
    font-family: var(--secondary-font), sans-serif;
    font-weight: 600;
    font-style: normal;
}

.secondary-font-semi-bold-italic {
    font-family: var(--secondary-font), sans-serif;
    font-weight: 600;
    font-style: italic;
}

.secondary-font-extra-bold {
    font-family: var(--secondary-font), sans-serif;
    font-weight: 800;
    font-style: normal;
}

.secondary-font-extra-bold-italic {
    font-family: var(--secondary-font), sans-serif;
    font-weight: 800;
    font-style: italic;
}
