﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

/* 
    === External Root Variables === 

        --font-body
        --font-head
        --font-link
*/

:root {
    --color-primary: #10284C;
    --color-accent: #EF3644;
    --color-light: #ffffff;
    --color-grey1: #F8F6F6;
    --color-grey2: #D4D7DB;
    --color-grey3: #6D727F;
    --color-grey4: #394150;
    --color-grey5: #272F3E;
    --color-dark: #272F3E;
    --color-green: rgb(45, 210, 100);
    --color-orange: hsl(36, 90%, 52%);
    --color-red: hsl(3, 85%, 52%);
    --color-blue: hsl(240, 100%, 65%);
    --color-yellow: hsl(56.4, 100%, 57.6%);
    --shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
    --shadow-4: 0px 0px 4px 1px rgba(0,0,0,0.12);
    --shadow-16: 0px 0px 12px rgba(0, 0, 0, 0.16);
    --xs: 600px;
    --sm: 600px;
    --md: 768px;
    --lg: 992px;
    --xl: 1200px;
    --border-radius: 10px;
    --layout-padding: 10rem;
    --container-width: 1200px;
    --font-head: "Codec Pro";
    --font-body: "Codec Pro";
    --font-link: 'Codec Pro';
    --h1: 20px;
    --h2: 16px;
    --h3: 14px;
    --h4: 12px;
    --h5: 8px;
}

@media only screen and (min-width: 600px) {
    :root {
        --h1: 32px;
        --h2: 24px;
        --h3: 20px;
        --h4: 16px;
        --h5: 12px;
    }
}

html {
    overflow: auto;
    scroll-behaviour: smooth;
    background-color: var(--color-primary);
}

html, body {
    font-family: var(--font-body);
    font-weight: 400;
    height: 100%;  
}

body{
    margin: 0;
    overflow: hidden;
}

section.iFrame {
    height: max-content;
    padding: 1rem;
    background: white;
}

section{
    --scroll-margin: 6em;
    scroll-margin-top: var(--scroll-margin);
}

section.child-scrollable{
    padding-bottom: var(--scroll-margin);
}


@media only screen and (max-width: 600px) {
    section {
        --scroll-margin: 2em;
    }
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
} 

@media only screen and (max-width: 600px) {
    .xs-only{
        display: revert;
    }
    .hide-xs{
        display: none !important;
    }
}

@media only screen and (min-width: 600px) {
    .xs-only {
        display: none;
    }
    .sm-up{

    }
}

@media only screen and (min-width: 768px) {
    .xs-only {
        display: none;
    }
}

@media only screen and (min-width: 992px) {
    .xs-only {
        display: none;
    }
}

@media only screen and (min-width: 1200px) {
    .xs-only {
        display: none;
    }
}

/* === Colours === */

.bg-primary{
    background-color: var(--color-primary);
}

.bg-accent {
    background-color: var(--color-accent);
}

.bg-light {
    background-color: var(--color-light);
}

.color-primary {
    --color: var(--color-primary);
    color: var(--color-primary);
}

.color-accent {
    --color: var(--color-accent);
    color: var(--color-accent);
}

.color-light {
    --color: var(--color-light);
    color: var(--color-light);
}

.color-red{
    --color: var(--color-red);
    color: var(--color);
}
.color-orange {
    --color: var(--color-orange);
    color: var(--color);
}
.color-blue {
    --color: var(--color-blue);
    color: var(--color);
}
.color-green {
    --color: var(--color-green);
    color: var(--color);
}
.color-yellow {
    --color: var(--color-yellow);
    color: var(--color);
}

/* === Icons === */

.icon.users {
    content: url('icons/users.svg');
}

.icon {
    height: 24px;
    width: 24px;
}

.icon:is(.sm){
    height: 12px;
    width: 12px;
}

.icon:is(.md) {
    height: 16px;
    width: 16px;
}
.icon.primary{
    fill: var(--color-primary);
}

.navbar-brand img {
    height: 32px;
    width: auto;
}


/* === Typography === */

*:is(h1,h2,h3,h4,h5,h6,p,a,label) {
    --color: var(--color-primary);
    line-height: 1.8;
    margin: 0;
}




*:is(h1,h2,h3,h4,h5,h6) {
    --color: var(--color-primary);
    color: var(--color);
    font-family: var(--font-head);
   /* text-decoration-color: var(--color-accent);
    text-decoration-thickness: 3px;
    text-decoration-line: underline;
    text-decoration-style: solid;*/
    text-transform: uppercase;
    margin-bottom: 0;
}

*:is(h1,h2,h3,h4,h5,h6) {
    -webkit-text-stroke-width: .03em;
    -webkit-text-stroke-color: var(--color);
}

/**:is(span) {
    --color: var(--color-primary);
    color: var(--color);
}*/

*:is(h1,h2,h3,h4,h5,h6,p,a,label) {
    --color: var(--color-primary);
    color: var(--color);
}
.primary:is(h1,h2,h3,h4,h5,h6,p,a,label,span) {
    --color: var(--color-primary);
    color: var(--color);
}
.accent:is(h1,h2,h3,h4,h5,h6,p,a,label,span) {
    --color: var(--color-accent);
    color: var(--color);
}
.light:is(h1,h2,h3,h4,h5,h6,p,a,label,span) {
    --color: var(--color-light);
    color: var(--color);
}

    *:is(h1,h2,h3,h4,h5,h6):focus {
        outline: none
    }

h1 {
    font-size: 20px;
}

h2 {
    font-size: 16px;
}

h3 {
    font-size: 14px;
}

h4 {
    font-size: 12px;
}

h5 {
    font-size: 8px;
}

@media only screen and (min-width: 600px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 16px;
    }

    h5 {
        font-size: 12px;
    }
}

p{
    color: var(--color-grey3);
}
p.subtext {
    font-family: var(--font-link);
    font-size: 10px;
}

p.link{
    font-family: var(--font-link);
    font-size: 12px;
}

a.link {
    font-family: var(--font-link);
    font-size: 16px;
}


.title-dash{
    font-family: var(--font-body);
    --color: var(--color-light);
    text-decoration: none;
}

*:is(h1,h2,h3,h4,h5,h6):is(.body){
    text-decoration: none;
    font-family: var(--font-body);
}
/* === Spacing === */
body {
    --m0: 0 !important;
    --m1: 0.25rem !important;
    --m2: 0.5rem !important;
    --m3: 1rem !important;
    --m4: 1.5rem !important;
    --m5: 3rem !important;
}

.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: var(--m1) !important;
}

.m-2 {
    margin: var(--m2) !important;
}

.m-3 {
    margin: var(--m3) !important;
}

.m-4 {
    margin: var(--m4) !important;
}

.m-5 {
    margin: var(--m5) !important;
}

.m-auto {
    margin: auto !important;
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.mx-1 {
    margin-right: var(--m1) !important;
    margin-left: var(--m1) !important;
}

.mx-2 {
    margin-right: var(--m2) !important;
    margin-left: var(--m2) !important;
}

.mx-3 {
    margin-right: var(--m3) !important;
    margin-left: var(--m3) !important;
}

.mx-4 {
    margin-right: var(--m4) !important;
    margin-left: var(--m4) !important;
}

.mx-5 {
    margin-right: var(--m5) !important;
    margin-left: var(--m5) !important;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-1 {
    margin-top: var(--m1) !important;
    margin-bottom: var(--m1) !important;
}

.my-2 {
    margin-top: var(--m2) !important;
    margin-bottom: var(--m2) !important;
}

.my-3 {
    margin-top: var(--m3) !important;
    margin-bottom: var(--m3) !important;
}

.my-4 {
    margin-top: var(--m4) !important;
    margin-bottom: var(--m4) !important;
}

.my-5 {
    margin-top: var(--m5) !important;
    margin-bottom: var(--m5) !important;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: var(--m1) !important;
}

.mt-2 {
    margin-top: var(--m2) !important;
}

.mt-3 {
    margin-top: var(--m3) !important;
}

.mt-4 {
    margin-top: var(--m4) !important;
}

.mt-5 {
    margin-top: var(--m5) !important;
}

.mt-auto {
    margin-top: auto !important;
}

.me-0 {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: var(--m1) !important;
}

.me-2 {
    margin-right: var(--m2) !important;
}

.me-3 {
    margin-right: var(--m3) !important;
}

.me-4 {
    margin-right: var(--m4) !important;
}

.me-5 {
    margin-right: var(--m5) !important;
}

.me-auto {
    margin-right: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: var(--m1) !important;
}

.mb-2 {
    margin-bottom: var(--m2) !important;
}

.mb-3 {
    margin-bottom: var(--m3) !important;
}

.mb-4 {
    margin-bottom: var(--m4) !important;
}

.mb-5 {
    margin-bottom: var(--m5) !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ms-0 {
    margin-left: 0 !important;
}

.ms-1 {
    margin-left: var(--m1) !important;
}

.ms-2 {
    margin-left: var(--m2) !important;
}

.ms-3 {
    margin-left: var(--m3) !important;
}

.ms-4 {
    margin-left: var(--m4) !important;
}

.ms-5 {
    margin-left: var(--m5) !important;
}

.ms-auto {
    margin-left: auto !important;
}

body {
    --p0: 0 !important;
    --p1: 0.25rem !important;
    --p2: 0.5rem !important;
    --p3: 1rem !important;
    --p4: 1.5rem !important;
    --p5: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: var(--p1) !important;
}

.p-2 {
    padding: var(--p2) !important;
}

.p-3 {
    padding: var(--p3) !important;
}

.p-4 {
    padding: var(--p4) !important;
}

.p-5 {
    padding: var(--p5) !important;
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.px-1 {
    padding-right: var(--p1) !important;
    padding-left: var(--p1) !important;
}

.px-2 {
    padding-right: var(--p2) !important;
    padding-left: var(--p2) !important;
}

.px-3 {
    padding-right: var(--p3) !important;
    padding-left: var(--p3) !important;
}

.px-4 {
    padding-right: var(--p4) !important;
    padding-left: var(--p4) !important;
}

.px-5 {
    padding-right: var(--p5) !important;
    padding-left: var(--p5) !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: var(--p1) !important;
    padding-bottom: var(--p1) !important;
}

.py-2 {
    padding-top: var(--p2) !important;
    padding-bottom: var(--p2) !important;
}

.py-3 {
    padding-top: var(--p3) !important;
    padding-bottom: var(--p3) !important;
}

.py-4 {
    padding-top: var(--p4) !important;
    padding-bottom: var(--p4) !important;
}

.py-5 {
    padding-top: var(--p5) !important;
    padding-bottom: var(--p5) !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: var(--p1) !important;
}

.pt-2 {
    padding-top: var(--p2) !important;
}

.pt-3 {
    padding-top: var(--p3) !important;
}

.pt-4 {
    padding-top: var(--p4) !important;
}

.pt-5 {
    padding-top: var(--p5) !important;
}

.pe-0 {
    padding-right: 0 !important;
}

.pe-1 {
    padding-right: var(--p1) !important;
}

.pe-2 {
    padding-right: var(--p2) !important;
}

.pe-3 {
    padding-right: var(--p3) !important;
}

.pe-4 {
    padding-right: var(--p4) !important;
}

.pe-5 {
    padding-right: var(--p5) !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: var(--p1) !important;
}

.pb-2 {
    padding-bottom: var(--p2) !important;
}

.pb-3 {
    padding-bottom: var(--p3) !important;
}

.pb-4 {
    padding-bottom: var(--p4) !important;
}

.pb-5 {
    padding-bottom: var(--p5) !important;
}

.ps-0 {
    padding-left: 0 !important;
}

.ps-1 {
    padding-left: var(--p1) !important;
}

.ps-2 {
    padding-left: var(--p2) !important;
}

.ps-3 {
    padding-left: var(--p3) !important;
}

.ps-4 {
    padding-left: var(--p4) !important;
}

.ps-5 {
    padding-left: var(--p5) !important;
}

.gap-0 {
    gap: 0 !important;
}
.gap1,
.gap-1 {
    gap: var(--gap1) !important;
}
.gap2,
.gap-2 {
    gap: var(--gap2) !important;
}
.gap3,
.gap-3 {
    gap: var(--gap3) !important;
}
.gap4,
.gap-4 {
    gap: var(--gap4) !important;
}
.gap5,
.gap-5 {
    gap: var(--gap5) !important;
}

body {
    --gap0: 0 !important;
    --gap1: 0.25rem !important;
    --gap2: 0.5rem !important;
    --gap3: 1rem !important;
    --gap4: 1.5rem !important;
    --gap5: 3rem !important;
}

.justify-center{
    justify-content: center;
}

.align-center{
    align-items: center;
}



/* ====================
    Depths
   ==================== */
.z--1 {
    z-index: -1;
}

.z-0 {
    z-index: 0;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-5 {
    z-index: 5;
}

.z-10 {
    z-index: 10;
}

.z-100 {
    z-index: 100;
}

/* === Images === */
.avatar{
}

    .avatar img {
        max-width: 14em;
        max-height: auto;
        padding: .2em;
        background-color: white;
    }

    .avatar.sm{
        max-width: 20px;
        height: auto;
    }

.img.img__club-dashboard {
    /*background-color: var(--color-light);
    border-radius: var(--border-radius);*/
    justify-content: center;    
    display: grid;
    max-width: 12em;
}

.img__club-dashboard img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width: 600px) {
    .img.img__club-dashboard {
        max-width: 50%;
        padding: var(--p2);
    }    
}

/* === Video === */

video{
    max-width: 100%;
    max-height: 100%;
}

/* === Containers === */
#app {
    height: 100%;
}

.flex {
    display: flex;
}
.flex:is(:empty){
    display: none;
}

.flex.center {
    justify-content: center;
}
.flex-column {
    display: flex;
    flex-direction: column;
}
.flex-column.center {
    justify-content: center;
    align-items: center;
}
    .flex.wrap {
        flex-wrap: wrap;
    }
    .flex.around {
        justify-content: space-around;
    }

    .flex.between {
        justify-content: space-between;
    }

    .flex.even,
    .flex.evenly {
        justify-content: space-evenly;
    }

    .flex.equal > *{
        flex: 1 1 0;
    }

    

.main-layout {
    height: 100%;
}

.dashboard-layout {
    display: grid;
    grid-template-rows: min-content 1fr;
    background-color: var(--color-primary);
    height: 100vh;
}

.authorization-layout {
    display: grid;
    grid-template-rows: min-content 1fr;
    background-color: var(--color-primary);
    justify-items: center;
    height: 100vh;
    padding-top: 4%;
    gap: var(--gap3);
}

    .authorization-layout > img {
        width: 200px;
        height: auto;
    }

.page-layout{
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--color-light);
}

.top-bar {
    z-index: 9999;
    display: grid;
    position: sticky;
    top: 0;
    background-color: var(--color-light);
    grid-template-columns: 2fr 8fr 2fr;
    padding-top: var(--p1);
    padding-inline: var(--p3);
    width: 100%;
    box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.12);
}

    .top-bar > * {
        display: flex;
        justify-content: center;
        align-items: center;
    }
        .top-bar > *:first-child {
            justify-content: flex-start;
        }
        .top-bar > *:last-child {
            justify-content: flex-end;
        }
    

.footer-bar {
    position: sticky;
    bottom: 0;
    display: flex;
    justify-content: space-around;
    background-color: var(--color-primary);
    width: 100%;
    z-index: 1;
    padding-block: var(--p1);
}
.footer-bar__page {
    background-color: var(--color-accent);
    bottom: 33px;
    overflow-x: auto;
    gap: 1rem;
    justify-content: flex-start;
    padding-inline: var(--p2);
    position: sticky;
    bottom: -0.01em;
}

    .footer-bar__page *:first-of-type{
        margin-left: auto;
    }
    .footer-bar__page *:last-of-type {
        margin-right: auto;
    }

    .footer-bar__page .link{
        min-width: max-content;
    }

.container {
    display: flex;
    padding-top: var(--p4);
    flex-direction: column;
    align-items: center;
    gap: var(--gap3);
    padding-inline: 0;
    max-width: min(100% - var(--m5), var(--container-width));
    margin-inline: auto;
}
@media only screen and (max-width: 600px) {
    :root {
        --container-width: 600px;
    }

    .container {
        max-width: min(100% - var(--m5), var(--container-width));
    }
}

    .container:is(.body) {
        overflow-y: auto;
        padding-bottom: 35px;
        max-width: 100vw;
        scrollbar-width: thin;
        padding-top: 80px;
    }

    .container.primary {
        background-color: var(--color-primary);
        height: 100%;
        max-width: 100%;
    }
    
    .container.white {
        background-color: white;
    }

    .container:is(.modal){
        padding-top: var(--p4);
        gap: var(--gap3);
        width: min(100% - var(--m3), 600px);
        margin-inline: auto;
        border-radius: 10px;
        background-color: var(--color-light);
        height: min-content;
        position: inherit;
    }

    .container:is(.fixtures){
        overflow-y: scroll;
        max-height: 80vh;
    }

    .container:is(.leaderboard) {
        --container-width: 1800px;
    }

    @media only screen and (max-width: 600px) {
        .container:is(.leaderboard) {
            max-width: min(100%, 600px);
        }
    }


.container__stat-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr) );
    width: 100%;
    row-gap: var(--gap2);
}

.container__stat-summary:empty{
    display: none;
}
.container-loading {
    background-color: var(--color-primary);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.container-body {
    height: 100%;
}

.container-dashboard {
    display: flex;
    flex-direction: column;
    padding-top: var(--m3);
    align-items: center;   
    gap: var(--gap2);
}

.container-footer {
    background-color: red;
}

.container-table {
    border-radius: var(--border-radius);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
    padding: var(--p3);
    width: 100%;
}

.graph-container{
    display: flex;
    flex-direction: column;
    justify-items: center;
}

    .graph-container.efficiency{

    }

    .graph-container.efficiency h3 {
        text-decoration: none;
        font-family: var(--font-body);
        text-align: center;
        font-size: 18px;
    }

.grid__auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr) );
    width: 100%;
    row-gap: var(--gap2);
}

.grid__index {
    display: grid;
    grid-template-areas:
        "top top top"
        "left main right";
    grid-template-columns: 6fr 8fr 4fr;
    grid-row-gap: var(--gap2);
}

    .grid__index > div{
        padding: var(--p5);
    }

    .grid__index .top{
        display: grid;
        grid-template-columns: 2fr 3fr;
        justify-content: center;
        background-color: var(--color-light);
        border-radius: 0;
        width: 100%;
        grid-area: top;
        padding: var(--p1);
    }
    .grid__index .left {
        grid-area: left;
    }
    .grid__index .main {
        grid-area: main;
    }
    .grid__index .right {
        grid-area: right;
    }

@media (max-width: 1200px){
    .grid__index{
        grid-template-areas: "top top"  "right main" "left main";
        grid-template-columns: 7fr 6fr;
    }
        .grid__index > div {
            padding: var(--p4);
        }
}

@media (max-width: 900px) {
    .grid__index {
        grid-template-areas: "top" "right" "main" "left";
        grid-template-columns: 1fr;
    }
        .grid__index > div {
            padding: var(--p3);
        }
}

/* === Buttons === */
button,
.button {
    color: var(--color-light);
    border-radius: var(--border-radius);
    position: relative;
    isolation: isolate;
    display: inline-block;
    padding: 0.4rem 0.5rem 0.2rem 0.5rem;
    background: var(--btn-color);
    font-family: var(--font-link);
    text-decoration: none;
    text-transform: uppercase;
    line-height: inherit;
    transition: all 0.3s ease-in-out;
    font-weight: 700;
    text-shadow: none;
    height: max-content;
    width: auto;
    border: 1px solid var(--btn-color) !important;
}

    button.link {
        color: var(--color-primary);
        padding: 0;
        background-color: unset;
        border: none !important;
        outline: none !important;
    }

        button.link:is(.light) {
            color: var(--color-light);
        }

        button.link:is(.accent) {
            color: var(--color-accent);
        }
    .button:is(.block),
    button:is(.block){
        width: 100%;
    }
    button.a,
    .button.a {
        color: var(--color-primary);
        padding: 0;
        font-family: var(--font-body);
    }

    button.a.light,
    .button.a.light {
        color: var(--color-light);
    }

    button.slim, .button.slim {
        padding: 0.3rem 0.5rem 0.1rem 0.5rem;
    }
    button.x-slim, .button.x-slim {
        padding: .2rem .2rem;
    }
    button.max,
    .button.max {
        width: max-content;
        min-width: 100%;
        max-width: 25rem;
    }

    button.outline,
    .btn-outline {
        color: var(--btn-color, var(--color-accent));
        background: #fff;
        border: 1px solid var(--btn-color) !important;
    }

    .button span {
        font-family: var(--font-link);
        vertical-align: middle;
        white-space: pre-wrap;
        word-break: keep-all;
    }
    button.breadcrumb,
    .button.breadcrumb {
        font-size: 12px;
        padding: .2rem .5rem;
        margin-bottom: 0;
    }
@media only screen and (max-width: 600px) {
    .button, button{
        font-size: 12px;
    }
        button.breadcrumb,
        .button.breadcrumb {
            font-size: 10px;
            padding: .1rem .3rem;
        }

    .button-icon .icon{
        height: 18px;
        width: 18px;
    }
}
.btn-grey1 {
    --btn-color: var(--color-grey1);
}

.btn-grey3 {
    --btn-color: var(--color-grey3);
}

.btn-orange {
    --btn-color: var(--color-orange);
}

.btn-green {
    --btn-color: var(--color-green);
}

.btn-blue {
    --btn-color: var(--color-blue);
}

button:is(.danger, .red),
.button:is(.danger, .red) {
    --btn-color: var(--color-red) !important;
}

.btn-warning {
    --btn-color: var(--color-orange) !important;
}

.btn-success {
    --btn-color: var(--color-green) !important;
}

.btn-info {
    --btn-color: var(--color-blue) !important;
}

button.primary,
.button.primary {
    --btn-color: var(--color-primary) !important;
}

.btn-secondary {
    --btn-color: var(--color-secondary);
}

.btn-accent {
    --btn-color: var(--color-accent);
}

.btn-default {
    --btn-color: var(--color-primary);
}

button .icon {
    fill: var(--color-light);
}

button.outline .icon {
    fill: var(--color-primary);
}



/*.btn-plus,
.btn-x {
    display: flex;
    height: 24px !important;
    width: 24px !important;
    font-weight: 700;
    border: none !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.5;
    padding: 0 !important;
    text-transform: lowercase;
}

.btn-x {
    --btn-color: var(--color-red) !important;
    color: var(--color-red) !important;
}

.btn-plus {
    --btn-color: var(--color-green) !important;
    color: var(--color-green) !important;
}*/

button:is(:hover,:focus-visible,.active, :focus),
.button:is(:hover,:focus-visible,.active, :focus) {
    opacity: .9;
    outline: none !important;
}

button.primary:is(:hover,:focus-visible,.active),
.button.primary:is(:hover,:focus-visible,.active) {
    background: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
    outline: none !important;
}

button.outline:is(:hover,:focus-visible,.active),
.button.outline:is(:hover,:focus-visible,.active) {
    color: #fff !important;
    background: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
    outline: none !important;
}

button:focus-visible,
.button:focus-visible {
    box-shadow: var(--shadow-16);
    background-color: #fff;
}

button:is(.nav-title) {
    font-size: var(--h3) !important;
    color: var(--color-primary);
}
button.primary.link:is(:hover, :focus-visible, .active) {
    color: var(--color-accent);
    background-color: unset !important;
}

/*.btn-x:hover,
.btn-x:focus,
.btn-x.active {
    border-color: var(--btn-color) !important;
}*/

button.active,
.button.active {
    border-color: var(--btn-color) !important;
}

button.disabled,
.button.disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
}

.col-title:is(button, .button){
    color: var(--color-primary);
}

.col-options-button{
    padding: .5em !important;
}

a {
    text-decoration: none;
}

a:hover{
    cursor: pointer;
}

    a.link {
        color: var(--color-primary);
    }

        a.link:is(.light) {
            color: var(--color-light);
        }
        a.link:is(.accent) {
            color: var(--color-accent);
        }

.tile {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    justify-content: center;
    font-family: var(--font-head);
    color: var(--color-light);
    height: unset;
    border-radius: 0;
    max-width: 200px;
    min-width: 150px;
}

    .tile.dashboard {
        background-color: var(--color-light);
    }

        .tile.dashboard :is(h1,h2,h3,h4,h5,h6) {
            font-family: var(--font-body);
        }

    .tile *:is(h1,h2,h3,h4,h5,h6) {
        --color: var(--color-primary);
        text-decoration: none;
        margin-top: auto;
        text-align: center;
        line-height: 1.1;
    }
.tile.dashboard{
    border-radius:1.3em !important;
}

.tile.dashboard :is(h1,h2,h3,h4,h5,h6) {
    font-family: var(--font-body);
    width: 100%;
    text-align: center;
}

    .tile svg.icon {
        height: 80px;
        width: 80px;
        fill: var(--color-light);
        align-self: center;
        padding: var(--p2);
        margin-block: var(--m2);
    }

    .tile.dashboard svg.icon {
        fill: var(--color-accent);
    }

    a.button-dashboard {
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-family: var(--font-head);
        margin-inline: 1rem;
        color: var(--color-light);
    }
        a.button-dashboard *:is(h1,h2,h3,h4,h5,h6) {
            --color: var(--color-light);
            text-decoration: none;
        }

        a.button-dashboard svg.icon {
            height: 80px;
            width: 80px;
            fill: var(--color-light);
        }
    .footer-bar svg.icon {
        fill: var(--color-light);
        height:30px;
        width:30px;
    }
        .footer-bar svg.icon.active {
            fill: var(--color-accent);
        }

    button:is(.icon){
        height: 32px;
        width: 32px;
        padding: 0;
    }

    button:is(.icon) .icon {
        height: 32px;
        width: 32px;
    }

    a.button-icon .icon{
        height: 32px;
        width: 32px;      
    }

    .button-icon {
        padding-block: .2em;
    }

    .button-icon.primary{
        background-color: var(--color-primary);
    }
    .button-icon.primary .icon{
        fill: var(--color-light);
    }

        .button-icon.user-nav .icon {
            height: 28px;
            width: 28px;
            padding: 0;
            fill: var(--color-primary);
        }

    .point .icon{
        max-height: 12px;
        max-width: 12px;
    }

.vision-segment label{
    font-size: 14px;
}
.popper-wrapper .icon,
.popper-wrapper img{
    pointer-events: none;
}

a:hover,
.a:hover{
    color: var(--color-blue) !important;
}

/* ====================
   Dividers
==================== */

hr {
    --color: var(--color-accent);
    box-shadow: 0 0 0 100vmax var(--color);
    clip-path: inset(0 -100vmax);
    height: 3px !important;
    background-color: var(--color);
    opacity: 1;
    margin-top: 0;
}

hr.max{
    box-shadow: none;
    clip-path: none;
    width: 100%;
}

    hr.y-axis {
        box-shadow: none;
        clip-path: none;
        width: 3px;
        height: 2em !important;
        display: inline-block;
    }

/* ====================
    Form Inputs
==================== */
input,
select {
    --border-radius-input: 10px;
    display: block;
    height: 34px;
    line-height: 1.5;
    padding: .1em .4em;
    font-size: medium;
    font-weight: 500;
    color: #6f6f6f;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: var(--border-radius-input);
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

textarea {
    --border-radius-input: 10px;
    display: block;
    line-height: 1.2;
    padding: .1em .4em;
    font-size: medium;
    font-weight: 500;
    color: #6f6f6f;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: var(--border-radius-input);
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
    
    textarea:focus-visible,
    input:focus-visible,
    select:focus-visible {
        box-shadow: 0 0 0 1.5px var(--color-orange);
        outline: none;
    }

    select.wrap{
        white-space: normal;
    }

.invalid:not([type=checkbox]),
.invalid.modified:not([type=checkbox]) {
    box-shadow: 0 0 0 1.5px var(--color-red);
    outline: none;
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97);
}
.valid:not([type=checkbox]),
.valid.modified:not([type=checkbox]) {
    box-shadow: 0 0 0 1.5px var(--color-green);
    outline: none;
}

    input[type="text"],
    input[type="password"] {
        border-radius: var(--border-radius-input) !important;
        padding: .3em .4em !important;
    }

    select.btn:hover,
    select.btn:active,
    select.btn:focus-within {
        background-color: #fff;
        color: #fff !important;
    }
button.popper-select:is(.h1,.h2,.h3,.h4,.h5,.h6),
select:is(.h1,.h2,.h3,.h4,.h5,.h6) {
    border: none;
    --color: var(--color-primary);
    color: var(--color);
    font-family: var(--font-head);
    text-decoration-color: var(--color-accent);
    text-decoration-thickness: 3px;
    text-decoration-line: none;
    text-decoration-style: solid;
    text-transform: uppercase;
    margin-bottom: 0;
    -webkit-text-stroke-width: .03em;
    -webkit-text-stroke-color: var(--color);
    height: auto;
    width: max-content;
    box-shadow: none;
    /*background: url("data:image/svg+xml;utf8,<svg height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M12.53 16.28a.75.75 0 01-1.06 0l-7.5-7.5a.75.75 0 011.06-1.06L12 14.69l6.97-6.97a.75.75 0 111.06 1.06l-7.5 7.5z' clip-rule='evenodd' /></svg>") no-repeat;
    background-size: 32px;
    background-position: calc(100% - 20px) center !important;*/
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    /*padding-right: 4rem;*/
    transition: .1s;
}

    button.popper-select.alt:is(.h1,.h2,.h3,.h4,.h5,.h6),
    select.alt:is(.h1,.h2,.h3,.h4,.h5,.h6) {
        padding-right: inherit;
        /*padding-left: 4rem;*/
        /*background-position: 20px center !important;*/
    }
    button.popper-select:is(.h1,.h2,.h3,.h4,.h5,.h6):is(:hover),
    select:is(.h1,.h2,.h3,.h4,.h5,.h6):is(:hover) {
        cursor: pointer;
        /*background-size: 40px;
        background-position: calc(100% - 16px) center !important;*/
    }
    button.popper-select.alt:is(.h1,.h2,.h3,.h4,.h5,.h6):is(:hover),
    select.alt:is(.h1,.h2,.h3,.h4,.h5,.h6):is(:hover) {
        /*background-position: 16px center !important;*/
    }

button.popper-select.h1,
select.h1 {
    font-size: 20px;
}
button.popper-select.h2,
select.h2 {
    font-size: 16px;
}
button.popper-select.h3,
select.h3 {
    font-size: 14px;
}
button.popper-select.h4,
select.h4 {
    font-size: 12px;
}
button.popper-select.h5,
select.h5 {
    font-size: 8px;
}

.popper-select .icon {
    fill: var(--color-accent);
    margin-bottom: var(--p1);
    margin-inline: var(--p1);
}

@media only screen and (min-width: 600px) {
    button.popper-select.h1,
    select.h1 {
        font-size: 32px;
    }
    button.popper-select.h2,
    select.h2 {
        font-size: 24px;
    }
    button.popper-select.h3,
    select.h3 {
        font-size: 20px;
    }
    button.popper-select.h4,
    select.h4 {
        font-size: 16px;
    }
    button.popper-select.h5,
    select.h5 {
        font-size: 12px;
    }
}

option {
    color: var(--font-primary);
    border-radius: var(--border-radius) !important;
    /*font-family: var(--font-body) !important;*/
    background: #fff;
    line-height: 100%;
}

select:is(.h1,.h2,.h3,.h4,.h5,.h6) option {
    font-size: inherit;
}

input [type="radio"], input[type="checkbox"] {
    margin: 0;
    margin-inline: .2em;
}

input[type="checkbox"],
input[type="radio"] {
    --active: #275efe;
    --active-inner: #fff;
    --focus: 2px rgba(39, 94, 254, 0.3);
    --border: #bbc1e1;
    --border-hover: #275efe;
    --background: #fff;
    --disabled: #f6f8ff;
    --disabled-inner: #e1e6f9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
}

    input[type="checkbox"]:after,
    input[type=radio]:after {
        content: "";
        display: block;
        left: 0;
        top: 0;
        position: absolute;
        transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    }

    input[type="checkbox"]:checked,
    input[type=radio]:checked {
        --b: var(--active);
        --bc: var(--active);
        --d-o: 0.3s;
        --d-t: 0.6s;
        --d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
    }

    input[type="checkbox"]:disabled,
    input[type=radio]:disabled {
        --b: var(--disabled);
        cursor: not-allowed;
        opacity: 0.9;
    }

        input[type="checkbox"]:disabled:checked,
        input[type=radio]:disabled:checked {
            --b: var(--disabled-inner);
            --bc: var(--border);
        }

        input[type="checkbox"]:disabled + label,
        input[type=radio]:disabled + label {
            cursor: not-allowed;
        }

    input[type="checkbox"]:hover:not(:checked):not(:disabled),
    input[type=radio]:hover:not(:checked):not(:disabled) {
        --bc: var(--border-hover);
    }

    input[type="checkbox"]:focus,
    input[type=radio]:focus {
        box-shadow: 0 0 0 var(--focus);
        outline: var(--focus);
    }

    span:not(.switch) input[type="checkbox"],
    span:not(.switch) input[type="radio"],
    input[type="checkbox"]:not(.switch),
    input[type=radio]:not(.switch) {
        width: 21px;
    }

        span:not(.switch) input[type="checkbox"]:after,
        span:not(.switch) input[type="radio"]:after,
        input[type="checkbox"]:not(.switch):after,
        input[type=radio]:not(.switch):after {
            opacity: var(--o, 0);
        }

        span:not(.switch) input[type="checkbox"]:checked,
        span:not(.switch) input[type="radio"]:checked,
        input[type="checkbox"]:not(.switch):checked,
        input[type=radio]:not(.switch):checked {
            --o: 1;
        }

    input[type="radio"] + label,
    input[type="checkbox"] + label {
        display: inline-block;
        font-size: 1.5rem;
        font-weight: 700;
        vertical-align: middle;
        letter-spacing: .05rem;
        cursor: pointer;
    }

    input[type="radio"] + label {
        padding-top: .5rem;
        padding-left: .3rem;
    }

    input[type="checkbox"] + label {
        padding-top: 0;
        padding-left: .6rem;
    }

    span:not(.switch) input[type="checkbox"],
    input[type="checkbox"]:not(.switch) {
        border-radius: 7px;
    }

        span:not(.switch) input[type="checkbox"]:after,
        input[type="checkbox"]:not(.switch):after {
            width: 5px;
            height: 9px;
            border: 2px solid var(--active-inner);
            border-top: 0;
            border-left: 0;
            left: 7px;
            top: 4px;
            transform: rotate(var(--r, 20deg));
        }

        span:not(.switch) input[type="checkbox"]:checked,
        input[type="checkbox"]:not(.switch):checked {
            --r: 43deg;
        }

    span.switch input[type=checkbox],
    input[type="checkbox"].switch {
        width: 38px;
        border-radius: 11px;
    }

        span.switch input[type=checkbox]:after,
        input[type="checkbox"].switch:after {
            left: 2px;
            top: 2px;
            border-radius: 50%;
            width: 15px;
            height: 15px;
            background: var(--ab, var(--border));
            transform: translateX(var(--x, 0));
            opacity: var(--o, 1);
            border-color: var(--border);
        }

        span.switch input[type=checkbox]:checked,
        input[type="checkbox"].switch:checked {
            --ab: var(--active-inner);
            --x: 17px;
        }

            span.switch input[type=checkbox]:checked:after,
            input[type="checkbox"].switch:checked:after {
                border-color: var(--active-inner);
            }

        span.switch input[type=checkbox]:disabled:not(:checked):after,
        input[type="checkbox"].switch:disabled:not(:checked):after {
            opacity: 0.6;
        }

input[type=radio] {
    border-radius: 50%;
}

    input[type=radio]:after {
        width: 19px;
        height: 19px;
        border-radius: 50%;
        background: var(--active-inner);
        opacity: 0;
        transform: scale(var(--s, 0.7));
    }

    input[type=radio]:checked {
        --s: 0.5;
    }

.floating-field {
    --floating-font-size: .8em;
    position: relative;
    margin-top: calc(var(--floating-font-size) + .5rem);
    padding-top: 0;
}

    .floating-field > textarea,
    .floating-field > input,
    .floating-field > select {
        display: block;
        margin: 0;
        padding-left: 10px;
        width: 100%;
        max-width: 60rem;
        min-width: 25rem;
        font-family: system-ui;
    }
    .floating-field > textarea{
        resize: none;
    }

    .floating-field > label {
        display: block;
        position: absolute;
        opacity: 0;
        color: var(--color-primary);
        font-size: var(--floating-font-size);
        top: calc(var(--floating-font-size) * -1);
        transition: 0.2s ease-in-out transform;
        font-weight: 700;
        font-family: var(--font-link);     
        text-transform: uppercase;
    }

    .floating-field > textarea::placeholder,
    .floating-field > input::placeholder {
        font-family: var(--font-link);
        text-transform: uppercase;
        font-weight: 900;
    }

    .floating-field > textarea:placeholder-shown + label,
    .floating-field > input:placeholder-shown + label {
        visibility: hidden;
        z-index: -1;
        transition: 0.2s ease-in-out;
    }

    .floating-field > textarea:not(:placeholder-shown) + label,
    .floating-field > textarea:focus:not(:placeholder-shown) + label,
    .floating-field > input:not(:placeholder-shown) + label,
    .floating-field > input:focus:not(:placeholder-shown) + label,
    .floating-field > select + label {
        visibility: visible;
        z-index: 1;
        opacity: 1;
        transform: translateY(-10px);
        transition: 0.2s ease-in-out transform;
    }

    .floating-field .failureNotification {
        height: var(--gap);
    }

    .floating-field.xs > input {
        max-width: 7rem;
        min-width: 0;
    }

    .floating-field.sm > input {
        max-width: 15rem;
        min-width: 0;
    }


@media only screen and (max-width: 600px) {
    .floating-field {
        width: 100%;
    }
        .floating-field > textarea,
        .floating-field > input,
        .floating-field > select {
            min-width: 0;
        }
}
/* === forms === */

form {
    display: flex;
    flex-direction: column;
    gap: var(--gap2);
    align-items: center;
    width: min(100% - var(--m3));
    margin-inline: auto;
    padding-block: var(--p3);
}

    form .row {
        width: 100%;
        max-width: 25rem;
        margin: 0px;
        --bs-gutter-y: 0;
        --bs-gutter-x: 0;
        gap: var(--gap4);
        flex-wrap: wrap;
    }

    form .row > *{
        width: auto;
    }

.validation-errors {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: .8rem 1.6rem;  
    justify-content: center;
    background-color: var(--color-orange);
    border-radius: var(--border-radius);
}

    .alert .validation-errors{
        background-color: transparent;
        padding: 0;
        margin: 0;
    }

    .validation-message {
        color: #fff;
    }

span.units {
    position: absolute;
    right: 30px;
    top: 6px;
    font-family: var(--font-link);
    text-transform: uppercase;
    font-weight: 500;
}

@keyframes shake {
    10%, 90% {
        transform: translateX(-1px);
    }

    20%, 80% {
        transform: translateX(2px);
    }

    30%, 50%, 70% {
        transform: translateX(-4px);
    }

    40%, 60% {
        transform: translateX(4px);
    }
}

/* === lists === */
.fixture-summary-result{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
    .fixture-summary-result span {
        text-transform: uppercase;
        transition: all 0.3s ease-in-out;
        font-weight: 700;
    }
    .fixture-summary-result .result {
        width: 1em;
        text-align: center;
    }
    .fixture-summary-result:is(.W) .result {
        color: var(--color-green);
    }
    .fixture-summary-result:is(.L) .result {
        color: var(--color-red);
    }

/* === content === */
section {
    width: 100%;
}

    section .header{
        display: flex;
    }

    section .header *:is(h1,h2,h3,h4,h5,h6) {
        text-decoration: none;
        align-self: end;
    }

.page-header {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: sticky;
    top: 0px;
    z-index: 10;
    /*box-shadow: 0 0 0 100vmax var(--color-light);
    clip-path: inset(0 -100vmax);*/
    background-color: var(--color-light);
    margin-top: -1px;
}

     .page-header.fixture-summary{
         align-items: center;
     }
    .page-header:is(.fixture-summary) h1 {
        margin-right: auto;
    }

    /*.page-header.fixture-summary:is(.is-pinned) img {
        transition: .2s;
        scale: .8;
    }*/




@media only screen and (max-width: 600px) {
    .page-header {
        padding: var(--p2);
    }
}

    .page-header h1{
        margin-left: auto;
    }
    .page-header:is(.fixture-summary) h1 {
        margin-left: 0;
    }

/*.banner,
.summary {
    grid-template-columns: minmax(23%, auto) minmax(55%, auto) minmax(22%, auto);
}

.banner {
    display: grid;
    grid-template-rows: 10em auto;
    width: 100%;
    box-shadow: var(--shadow-16);
    padding-top: var(--p2);
    border-radius: var(--border-radius);
    transition: 1s;
}

    .banner > .details {
        display: flex;
        flex-direction: column;
        gap: var(--gap2);
        grid-row: 1;
        grid-column: 2;
        padding-inline: var(--p3);
    }

        .banner > .details > :first-child {
            z-index: 1;
        }

        .banner > .details > .name {
            z-index: 1;
        }

        .banner .number,
        .banner > .details .number {
            --color: var(--color-light);
            --color: var(--color-club-light);
            background-color: var(--color-primary);
            background-color: var(--color-club-primary);
            width: max-content;
            height: max-content;
            padding: var(--p1) var(--p3);
            border-radius: var(--border-radius);
            text-decoration: none;
            font-size: 36px;
            -webkit-text-stroke-width: .01em;
            outline: solid 2px var(--color-light);
        }

        .banner.team-summary .number{
            justify-self: center;
            margin: var(--m1);
        }

        .banner.team-summary h5 {
            --color: var(--color-club-light);
            color: var(--color-club-light);
            text-decoration: none;
            font-size: 24px;
        }

        .banner.team-summary .details h2,
        .banner > .details h3{
            font-family: var(--font-body);
            text-decoration: none;
            font-size: 32px;
            font-weight: 900;
            --color: var(--color-primary);
            --color: var(--color-club-primary);
            background-color: var(--color-light);
            padding: var(--p1);
            line-height: 100%;
            width: min-content;
        }

            .banner.team-summary > .details h2 {
                font-family: var(--font-head);
                -webkit-text-stroke-width: unset;
                width: unset;
                margin-top: 1rem;
                align-self: center;
            }

            .banner > .details h3:last-of-type {
                font-weight: 200;
                font-size: 28px;
            }

    



.summary {
    display: grid;
    padding-block: var(--p3);
    width: 100%;
    background-color: var(--color-club-primary);
    color: var(--color-club-light);
    flex-direction: column;
    grid-column: 1 / span 3;
    grid-row: 2;
}

    .banner.team-summary > .summary{
        display:    flex;
    }

    .summary h5 {
        --color: var(--color-club-light);
        color: var(--color-club-light);
        text-decoration: none;
        font-size: 24px;
    }

    .summary h5 {
        font-size: 18px;
        width: 100%;
    }

    .summary > .details {
        display: flex;
        grid-column: 2;
        align-items: center;
    }

    .banner.leaderboard .summary > .details{
        grid-column: 2 / span;
    }

    .summary > .details {
        display: flex;
    }

        .summary > .details > div {
            padding-inline: var(--p3);
            text-align: center;
            border-inline-end: 3px solid var(--color-light);
            width: min-content;
        }

            .summary > .details > div:last-of-type {
                border-inline-end: none;
            }

    .banner.team-summary .summary .details {
        display: flex;
    }
        .banner.team-summary .details > div {
            padding-inline: var(--p3);
            text-align: center;
            border-inline-end: 3px solid var(--color-light);
            flex: 1 1;
        }

        .banner.leaderboard h5 {
            font-size: 28px;
            width: unset;
        }

            .banner.team-summary .details > div:last-of-type{
                border-inline-end: none;
            }

@media only screen and (max-width: 1200px) {
    .banner, .summary {
        grid-template-columns: minmax(30%, auto) minmax(45%, auto) minmax(25%, auto);
    }

        .banner > .details {
            justify-self: start;
        }
}

@media only screen and (max-width: 600px) {
    .banner,
    .summary {
        grid-template-columns: minmax(40%, auto) minmax(60%, auto);
    }

    .banner.team-summary {
        grid-template-columns: 1fr;
        grid-template-rows: 5em 5em auto;
    }
        .banner.team-summary .number {
            grid-row: 1;
        }
        .banner.team-summary .details{
            grid-column: 1 / span 2;
            grid-row: 2;
        }
        .banner.team-summary .summary {
            grid-row: 3;
        }

        .banner > .details {
            justify-self: start;
        }
    .summary {
        justify-items: end;
    }

        .summary > .details {
            grid-column: 1 / span 2;
        }
        .banner.leaderboard h5,
        .banner.team-summary h5 {
            font-size: 18px;
        }
}

.banner .avatar {
    grid-row: 1 / span 2;
    grid-column: 1;
    z-index: 1;
    justify-self: center;
    padding: var(--p3);
    width: 100%;
}
    .banner .avatar.club-logo {
        grid-row: 1;
        grid-column: 3;
        width: unset;
    }

    .banner .avatar img {
        width: 100%;
        width: -moz-available;
        width: -webkit-fill-available;
        width: fill-available;
    }

    .banner .avatar.club-logo img {
        width: unset;
        height: 100%;
        height: -moz-available;
        height: -webkit-fill-available;
        height: fill-available;
    }

@media only screen and (max-width: 600px) {
    .banner .avatar.club-logo {
        display: none;
    }
}*/

/*.header__leaders,
.header__team,
.header__player {
    display: grid;
    grid-template-columns: minmax(20%, auto) minmax(60%, auto) minmax(20%, auto);
    grid-template-rows: auto auto;
    width: 100%;
    box-shadow: var(--shadow-16);
    padding-top: var(--p2);
    border-radius: var(--border-radius);
    transition: 1s;
}
    .header__leaders > .details,
    .header__team > .details,
    .header__player > .details {
        display: grid;
        grid-template-columns: 6fr;
        grid-row: 1;
        padding-inline: var(--p3);
    }

        .header__leaders > .details > :first-child,
        .header__team > .details > :first-child,
        .header__player > .details > :first-child {
            grid-column: 1;
            grid-row: 1;
            z-index: 1;
        }
            .header__leaders > .details > .name,
            .header__team > .details > .name,
            .header__player > .details > .name {
                grid-column: 1;
                grid-row: 2;
                z-index: 1;
                align-self: center;
            }

        .header__team > .details > :last-child {
            grid-column: 1 / span 2;
        }
        .header__leaders > .details .img__club-logo,
        .header__player > .details > :last-child {
            grid-column: 1 / span 2;
            grid-row: 1 / span 2;
            justify-self: self-end;
        }
        .header__leaders > .details .number,
        .header__team > .details .number,
        .header__player > .details .number {
            --color: var(--color-light);
            --color: var(--color-club-light);
            background-color: var(--color-primary);
            background-color: var(--color-club-primary);
            width: max-content;
            padding: var(--p1) var(--p3);
            border-radius: var(--border-radius);
            text-decoration: none;
            margin-bottom: auto;
            font-size: 36px;
            -webkit-text-stroke-width: .01em;
            outline: solid 2px var(--color-light);
        }
        .header__leaders > .details h3,
        .header__team > .details h3,
        .header__player > .details h3 {
            font-family: var(--font-body);
            text-decoration: none;
            font-size: 32px;
            font-weight: 900;
            --color: var(--color-primary);
            --color: var(--color-club-primary);
            background-color: var(--color-light);
            padding: var(--p1);
            line-height: 100%;
            width: min-content;
        }
            .header__leaders > .details h3:last-of-type,
            .header__team > .details h3:last-of-type,
            .header__player > .details h3:last-of-type {
                font-weight: 200;
                font-size: 28px;
            }
    .header__leaders .avatar,
    .header__player .avatar {
        grid-row: 1 / span 2;
        grid-column: 1;
        z-index: 1;
        justify-self: center;
        padding: var(--p3);
        width: 100%;
    }
        .header__leaders .avatar img,
        .header__player .avatar img {
            width: 100%;
            width: -moz-available; 
            width: -webkit-fill-available; 
            width: fill-available;
        }

@media only screen and (max-width: 768px) {
    .header__leaders,
    .header__team,
    .header__player {
        grid-template-columns: minmax(60%, auto) minmax(40%, 125px);
    }
}

@media only screen and (max-width: 600px) {

    .header__leaders,
    .header__team,
    .header__player {
        grid-template-columns: minmax(50%, auto) minmax(50%, 100px);
    }
        .header__leaders > .details,
        .header__team > .details,
        .header__player > .details {
            justify-self: start;
        }
        .header__leaders .details > :last-child,
        .header__team .details > :last-child,
        .header__player .details > :last-child {
            max-width: 150px;
        }
}

.banner{
    display: flex;
    padding: var(--p3);
    width: 100%;
}
    .banner.team-summary,
    .banner.player-summary {
        background-color: var(--color-club-primary);
        color: var(--color-club-light);
        flex-direction: column;
        grid-column: 1 / span 2;
        grid-row: 2;
    }
        .banner.team-summary h5,
        .banner.player-summary h5 {
            --color: var(--color-club-light);
            color: var(--color-club-light);
            text-decoration: none;
            font-size: 24px;
        }
        .banner.team-summary h5{
            font-size: 18px;
            width: 100%;
        }
            .banner.team-summary .details {
                display: flex;
                justify-content: space-evenly;
            }
        .banner.player-summary .details {
            display: flex;
        }
            .banner.team-summary .details h5,
            .banner.player-summary .details h5 {                
                padding-inline: var(--p3);
                text-align: center;
                border-inline-end: 3px solid var(--color-light);
            }

            .banner.player-summary .details h5{
                width: min-content;
            }
                .banner.team-summary .details h5:last-of-type,
                .banner.player-summary .details h5:last-of-type {
                    border-inline-end: none;
                }*/



.alert{
    margin: 0;
    padding: 0;
}


.alert {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow-y: hidden;
    padding: .8rem 1.6rem;
    color: #fff;
    justify-content: center;
    -webkit-transition: max-height 0.3s ease-in-out;
    -moz-transition: max-height 0.3s ease-in-out;
    -o-transition: max-height 0.3s ease-in-out;
    transition: max-height 0.3s ease-in-out;
}

    .alert.show {
        display: flex;
        flex-direction: row;
        opacity: 1;
        max-height: 100%;
        animation: fadein .3s;
    }

    .alert.snackbar {
        z-index: 800;
        padding: 1.5rem;
        position: absolute;
        width: 25rem;
        bottom: 4rem;
        left: calc(50% - 12.5rem);
    }

    .alert.page-alert{
        position: fixed;
        top: 0;
        z-index: 800;
        width: 100%;
        height: max-content;
    }

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

dialog:is(.modal) {
    display: revert;
    position: absolute;
    max-height: 80vh;
    width: min(100% - var(--m3), 800px);
    border-radius: 10px;
    background-color: var(--color-light);
    height: min-content;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.190204);
    border: 0;
    padding: 0;
    top: -10%;
}

dialog:is(.modal.vision),
dialog:is(.modal.ladder) {
    width: min(100% - var(--m3), 1100px);
}



dialog:is(.modal.stat-filter) {
    overflow: hidden;
}

    dialog:is(.modal) .modal-content {
        display: flex;
        flex-direction: column;
        gap: var(--gap2);
        align-items: center;
        padding: var(--p5);
        border: 0;
    }

    dialog:is(.modal) .modal-content .header *:is(h1,h2,h3,h4,h5,h6) {
        text-decoration: none;
    }


    dialog:is(.modal.stat-filter) .modal-content {
        padding: 0;
    }

    dialog::backdrop {
        background: rgba(0,0,0, 0.4);
    }

    .modal-login {
        display: flex;
        flex-direction: column;
        gap: var(--gap2);
        align-items: center;
        width: min(100% - var(--m5));
        margin-inline: auto;
        padding-block: var(--p3);
    }

    .modal-confirm {
        display: flex;
        flex-direction: column;
        gap: var(--gap4);
        align-items: center;
        width: min(100% - var(--m5));
        margin-inline: auto;
        padding-block: var(--p3);
    }

    .modal-close{
        position: absolute;
        top: 0;
        right: 0;
    }

@media only screen and (max-width: 600px) {
    dialog:is(.modal) {
        
    }
        dialog:is(.modal) .modal-content {
            padding: var(--p1);
        }
}


.draggable {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 1rem;
    padding: 1rem;
    display: inline-block;
    cursor: move;
}

.drop-target {
    width: 100%;
    padding: var(--p2);
    border: 2px solid #ebebeb;
    border-radius: var(--border-radius);
}

    .drop-target:is(.active) {
        border: 2px solid var(--color-green);
    }

    a, .btn-link {
        color: #0071c1;
    }

    .btn-primary {
        color: #fff;
        background-color: #1b6ec2;
        border-color: #1861ac;
    }

    .content {
        padding-top: 1.1rem;
    }

.section__carousel:has(.wrapper:empty) {
    visibility: hidden;
}

.publication{
    display: flex;
    flex-direction: column;
}


.body__stat-group {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: var(--gap2);
    height: 60vh;
    padding-inline: var(--p1);
    margin-top: var(--p3);
    margin-bottom: var(--p5);
}

.pressure-gauge.rz-gauge {
    position: relative;
}

.pressure-gauge .rz-gauge-value {
    position: absolute;
    top: 90px !important;
    left: 145px !important;
}



/* === content - tables === */

.quickgrid{
    --col-gap: 0 !important;
    width: 100%;
    max-width: 100%;
}

table {
    /*border-collapse: separate;
    border-spacing: 0.5em 1em;*/
    
}
/*thead {
    border-spacing: 0.5em 1em;
    box-shadow: 0 4px 0px -2px var(--color-accent);
}*/


tbody tr:not(:first-of-type){
    border-top: solid 1px var(--color-grey1);   
}
th, td {
    text-align: center;
    padding-right: .25em;
    font-size: 14px;
    padding: 1em;
}
th{    
    text-transform: uppercase;
    letter-spacing: -.5px;
    font-weight: 500;
    color: var(--color-primary);
}

td {
    --color: var(--color-grey4);
    font-weight: 700;
    color: var(--color);
    -webkit-text-stroke-width: .03em;
    -webkit-text-stroke-color: var(--color);
}
@media only screen and (max-width: 768px) {
    th{
        padding: .3em 0em;
    }
    td {
        padding: 1em 0em;
        -webkit-text-stroke-width: .01em;
    }
}

@media only screen and (max-width: 600px) {
    th {
        padding: .3em 0em;
    }

    td {
        padding: 1em 0em;
        -webkit-text-stroke-width: .0em;
    }
}

/*@media only screen and (max-width: 650px) {
    .table__involvements th {
        display: none;
    }

    .table__involvements td {
        display: grid;
        grid-template-columns: 3fr 3fr;
        padding: .3em;
        text-align: start;
    }

    .table__involvements td:first-child{
        padding-top: 1em;
    }
    .table__involvements td:last-child {
        padding-bottom: 1em;
    }

    .table__involvements td::before {
        content: attr(data-cell) ": ";
        font-weight: 700;
    }
}*/

    .quickgrid .col-title {
        display: flex !important;
        justify-content: center;
    }

    .quickgrid .col-title .col-title-text {
        grid-column: 1 / span 2;
        grid-row: 1;
        white-space: pre-wrap;
        white-space: -moz-pre-wrap;
        white-space: -pre-wrap;
        white-space: -o-pre-wrap;
        width: min-content;
        text-align: center;
        justify-self: center;
        align-self: end;
        font-family: var(--font-link);
    }

    .col-header-content {
        justify-content: center;
    }

    .quickgrid .col-title .sort-indicator {
        display: none;
    }

    .quickgrid .col-sort-asc .col-title-text,
    .quickgrid .col-sort-desc .col-title-text {
        color: var(--color-accent);
    }

    .quickgrid[theme="default"] > tbody > tr > td {
        padding: 1em !important;
    }

    .tooltip-wrapper.table-title {
        width: 100%;
    }

        .tooltip-wrapper.table-title span {
            white-space: pre-wrap;
            white-space: -moz-pre-wrap;
            white-space: -pre-wrap;
            white-space: -o-pre-wrap;
            text-align: center;
            justify-self: center;
            font-family: var(--font-link);
        }

    @media only screen and (max-width: 600px) {
        .quickgrid[theme="default"] > tbody > tr > td {
            padding: 1em 0em !important;
        }

        .quickgrid input[type="search"] {
            max-width: 6em;
        }
    }

    .quickgrid.sticky thead {
        position: sticky;
        top: 0;
    }

        .quickgrid.sticky thead tr td {
            position: sticky;
            top: 0;
        }

        .quickgrid.sticky tbody tr td:first-of-type,
        .quickgrid.sticky thead tr th:first-of-type {
            position: sticky;
            left: 0;
            background-color: var(--color-light);
            padding-block: var(--p2);
        }

    /*    @media only screen and (max-width: 600px) {
        .quickgrid.sticky tbody tr td:first-of-type,
        .quickgrid.sticky thead tr th:first-of-type {
            text-align: left;
            padding-block: .5em;
        }
    }*/

    .sticky-table__container {
        position: relative;
        max-width: 100vw;
        max-height: 600px;
        z-index: 1;
        margin: auto;
        overflow: auto;
        margin-bottom: var(--m5);
        width: 100%;
    }

        .sticky-table__container table {
            width: 100%;
            margin: auto;
            border-collapse: separate;
            border-spacing: 0;
        }

        .sticky-table__container th,
        .sticky-table__container td {
            background: var(--color-light);
            padding-inline: 0;
            padding-block: 0;
        }

        .sticky-table__container th .cell,
        .sticky-table__container td {
            padding-inline: var(--p2);
            padding-block: var(--p2);
        }

        .sticky-table__container th .cell:is(.active) {
            background-color: var(--color-accent);
        }

        .sticky-table__container thead {
            z-index: 5;
        }

            .sticky-table__container thead th {
                background: var(--color-primary);
                color: #fff;
                position: -webkit-sticky;
                position: sticky;
                top: 0;
            }

        .sticky-table__container tfoot,
        .sticky-table__container tfoot th,
        .sticky-table__container tfoot td {
            position: -webkit-sticky;
            position: sticky;
            bottom: 0;
            z-index: 4;
        }

        .sticky-table__container th:first-child {
            position: -webkit-sticky;
            position: sticky;
            left: 0;
            z-index: 2;
        }

        .sticky-table__container thead th:first-child,
        .sticky-table__container tfoot th:first-child {
            z-index: 6;
        }


        .sticky-table__container::-webkit-scrollbar {
            width: 3px;
            height: 3px;
        }

        .sticky-table__container::-webkit-scrollbar-track {
            background: var(--color-light);
        }

        .sticky-table__container::-webkit-scrollbar-thumb {
            background: var(--color-primary);
        }

        .sticky-table__container::-webkit-scrollbar-thumb:hover {
            background: var(--color-primary);
        }

    .rz-frozen-cell{
        position: sticky;
    }


    table img {
        max-width: 3em;
        /*padding-top: .3em;*/
        padding-left: .3em;
    }

    table.in-depth {
    }

        table.in-depth thead {
            /*box-shadow: none;*/
        }

            table.in-depth thead th:not(:first-of-type) {
                border-bottom: solid 2px var(--color-accent);
            }

        table.in-depth tr td:first-of-type {
            text-align: start;
        }

        table.in-depth td{
            font-size:1em;
        }

    @media only screen and (max-width: 600px) {
        table.in-depth tr td:first-of-type {
            white-space: pre-wrap;
            white-space: -moz-pre-wrap;
            white-space: -pre-wrap;
            white-space: -o-pre-wrap;
        }

        table.in-depth tr th:first-of-type {
            display: flex;
        }

        table.in-depth th {
            max-width: 8em;
        }

        table.in-depth [type="search"] {
            height: 30px;
            width: 100%;
        }

        th, td {
            font-size: 14px;
        }
    }

    table.ladder *:is(th,td) {
        padding: .1em;
    }

    table.ladder.alt *:is(th,td,a) {
        color: var(--color-light);
    }

    table:is(.ladder.alt) *:is(th) {
        border-bottom: 1px solid var(--color-light);
    }

    table.ladder.alt img {
        background-color: var(--color-light);
        padding: .05em;
        border-radius: var(--border-radius);
    }

    table.ladder td:first-of-type {
        font-weight: 700;
    }

    table:is(.ladder) button{
        padding: .2em;
    }

    table:is(.ladder) a {
        -webkit-text-stroke-width: .02em;
        -webkit-text-stroke-color: var(--color);
    }


    @media only screen and (max-width: 600px) {
        .container-table {
            padding: var(--p2);
        }

        table {
            border-spacing: .2em .6em;
        }



            table.ladder td:nth-of-type(2) {
                font-weight: 500;
            }

        .col-header-content {
            padding-right: 0;
        }

        .col-title {
            padding: 0 !important;
            font-size: 12px;
            gap: 0 !important;
        }
    }

    @media only screen and (max-width: 768px) {
        /* Team Name */
        /*table.ladder th:nth-of-type(3),
        table.ladder td:nth-of-type(3) {
            display: none;
        }*/
    }

    .ladder__component {
        container-type: inline-size;
        container-name: ladder;
        min-width: 390px;
        width: 100%;
    }

    @container ladder (inline-size < 768px) {
        /* Team Name */
        table.ladder thead tr th:nth-of-type(3),
        table.ladder tbody tr td:nth-of-type(3) {
            display: none;
        }
    }

    @media only screen and (max-width: 600px) {
        .ladder-component {
            min-width: 350px;
        }
    }

    .stat-option {
        display: flex;
        --color: var(--color-grey4);
        font-weight: 700;
        color: var(--color);
        -webkit-text-stroke-width: .03em;
        -webkit-text-stroke-color: var(--color);
        font-size: 14px;
        line-height: 1;
        margin-bottom: var(--m1);
        padding-inline: var(--p3);
    }

        .stat-option p {
            line-height: 1;
            margin-bottom: 0;
        }

        .stat-option input {
            margin-inline-start: auto;
        }

    @media only screen and (max-width: 600px) {
        .stat-option {
            -webkit-text-stroke-width: .01em;
        }
    }

    /* === cards === */


    .card {
        border: 1px solid var(--color-primary) !important;
        border-radius: var(--border-radius);
    }

/*button.footerBtn {
    margin: 0px;
    padding: 0px 5px;
    border-left: 1px solid var(--color-primary) !important;
    border-right: 1px solid var(--color-primary) !important;
    border-radius: 0px;
}*/

    button.card {
        color: inherit;
        padding: 0;
    }

    a.card {
        color: inherit;
    }

    .card:is(.player) {
        border-top: 0px;
        border-left: 0px;
        border-right: 0px;
        border-bottom: 2px solid var(--color) !important;
        border-radius: 0px;
    }

    .card:is(.team) {
        border: 0px !important;
    }

        .card:is(.team) .avatar img {
            max-width: 180px;
            height: auto;
        }

    .card:is(.leaderboard) {
        --color: var(--color-primary);
        width: 400px;
        border: 2px solid var(--color) !important;
        border-radius: 12px;
        background-color: var(--color-light);
    }

    .carousel-item:not(.active) .card:is(.leaderboard) {
        scale: 90%;
        box-shadow: var(--shadow-16);
    }

    @media only screen and (max-width: 600px) {
        .carousel-item:not(.active) .card:is(.leaderboard) {
            scale: 80%;
            box-shadow: var(--shadow-16);
        }
    }

    @media (any-pointer: coarse) {
        .carousel-item .card:is(.leaderboard) {
            width: 300px !important;
            scale: 100% !important;
            box-shadow: var(--shadow-16);
        }
    }

    .card:is(.leaderboard) .head {
        border-radius: var(--border-radius) var(--border-radius) 0 0;
        display: flex;
        padding: var(--p2);
        padding-bottom: var(--p1);
    }

        .card:is(.leaderboard) .head *:is(h1, h2, h3, h4, h5, h6) {
            --color: var(--color-light);
            color: var(--color);
            text-decoration: none;
        }

    .card:is(.leaderboard) .body {
        background-color: var(--color-light);
    }





    .stat-summary {
        display: flex;
        flex-direction: column;
        align-items: center;
        --color: var(--color-primary);
        flex: 1;
        text-align: center;
    }

        .stat-summary *:is(h1,h2, h3, h4,h5,h6) {
            text-decoration: none;
            font-family: var(--font-body);
        }

        .stat-summary strong {
            color: var(--color);
            font-size: 32px;
            letter-spacing: 0.02em;
            font-family: var(--font-head);
            -webkit-text-stroke-width: .03em;
            -webkit-text-stroke-color: var(--color);
        }


    #blazor-error-ui {
        background: lightyellow;
        bottom: 0;
        box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
        display: none;
        left: 0;
        padding: 0.6rem 1.25rem 0.7rem 1.25rem;
        position: fixed;
        width: 100%;
        z-index: 1000;
    }

        #blazor-error-ui .dismiss {
            cursor: pointer;
            position: absolute;
            right: 0.75rem;
            top: 0.5rem;
        }

    .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."
        }

    .status-bar-safe-area {
        display: none;
    }

    @supports (-webkit-touch-callout: none) {
        .status-bar-safe-area {
            display: flex;
            position: sticky;
            top: 0;
            height: env(safe-area-inset-top);
            background-color: #f7f7f7;
            width: 100%;
            z-index: 1;
        }

        .flex-column, .navbar-brand {
            padding-left: env(safe-area-inset-left);
        }
    }

    .desktop-pdf {
        display: none;
    }

    .mobile-pdf {
        display: block;
    }

    @media only screen and (min-width : 1025px) {

        .mobile-pdf {
            display: none;
        }

        .desktop-pdf {
            display: block;
        }
    }
