* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

a:visited {
    }

ul, li {
    list-style-type: none;
}

body, html, main {
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

:root {
    --gap: 32px;
    --gutter: 42px;
    --megagutter: 75px;

    --outline-width: 12px;
    --max-width: 1280px;
}

@media screen and (max-width: 781px) {
    :root {
        --gutter: 20px;
    }
}

:root {
    --color-accent: #64ffd0;
    --color-brand: #189cd8;
    --color-dark: rgb(31, 115, 155);

    --color-white: #ffffff;
    --color-night: #123e4f;
    --color-space: #07202c;
    --color-fog: #f8f8f8;
    --color-dust: #efefef;
    --color-concrete: #dedede;

    --color-sidecar: #123e4f;
    --color-card: #fff;

    /* slider */

    --color-top: rgba(5, 14, 18, 0);
    --color-mid: rgba(5, 14, 18, 1);
    --color-bot: rgba(0, 32, 44, 1);
}

body.night {
    --color-accent: #64ffd0;
    --color-brand: #189cd8;
    --color-dark: rgb(31, 115, 155);
    --color-darker: rgb(14, 61, 84);

    --color-white: #051723; /* panels */
    --color-night: #e2e9ef; /* TEXT */
    --color-space: #020f17;
    --color-fog: #020f17; /* fond */
    --color-dust: #052030; /* gradient top */
    --color-concrete: #082234; /* quotes */

    --color-sidecar: #082234;
    --color-card: #082234;
}

@font-face {
    font-family: "Archivo";
    src: url("../fonts/Archivo-VariableFont_wdth,wght.ttf");
    font-display: swap;
    font-weight: 400;
}

/*
@font-face {
    font-family: "ChaneyExtended";
    src: url("../fonts/CHANEY-Extended.otf");
    font-display: swap;
    font-weight: 700;
}
    */

@font-face {
    font-family: "ChaneyRegular";
    src: url("../fonts/CHANEY-Regular-i.otf");
    font-display: swap;
    font-weight: 700;
}

@font-face {
    font-family: "ChaneyUltra";
    src: url("../fonts/CHANEY-UltraExtended.otf");
    font-display: swap;
    font-weight: 700;
}

html {
    font-size: 62.5%;
}

@media screen and (max-width: 419px) {

html {
        font-size: 50%
}
    }

body {
    font-family: "Archivo", Arial, Helvetica, sans-serif;

    font-size: 1.6rem;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-synthesis: none;
}

p {
    font-size: 2rem;
    line-height: 1.4em;

    margin-bottom: 0.75em;

    font-variation-settings: "wght" 400;

    color: var(--color-night);
}

p:last-child {
        margin-bottom: var(--gutter);
    }

p strong {
        font-variation-settings: "wght" 700;
        color: var(--color-brand);
    }

p em {
        font-variation-settings: "wght" 600;
    }

p a, p a:visited {
        color: var(--color-brand);
    }

h1, h2, h3, h4, h5 {
    font-family: "ChaneyRegular", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    line-height: 1.1em;
}

h1 i, h2 i, h3 i, h4 i, h5 i {
        color: var(--color-brand);
        font-family: "ChaneyUltra", Arial, Helvetica, sans-serif;
    }

h1 em, h2 em, h3 em, h4 em, h5 em {
        text-transform: none;
    }

body.night h1, body.night h2, body.night h3, body.night h4, body.night h5 {
        color: var(--color-brand);
    }

h1 {
    font-size: 5rem;
    line-height: 0.9em;
    color: var(--color-night);
}

@media screen and (max-width: 781px) {

h1 {
        text-align: center;
        font-size: 3.8rem
}
    }

h2 {
    font-size: 3.5rem;
    line-height: 1em;

    color: var(--color-night);
}

h3 {
    font-size: 2.8rem;
    line-height: 1em;
    color: var(--color-brand);
}

blockquote {
    position: relative;
    margin: var(--megagutter) auto;
    text-align: center;
    font-family: "ChaneyRegular", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 5rem;
    line-height: 0.8em;
    letter-spacing: -0.05em;
    max-width: 16em !important;
    color: var(--color-concrete);
}

/*
    i {
        font-family: "ChaneyUltra";
    }
        */

@media screen and (max-width: 781px) {

blockquote {
        font-size: 4rem;
        max-width: 90vw !important
}
    }

blockquote:before {
        position: absolute;
        top: 50%;
        left: -20%;
        transform: translateY(-45%);
        font-size: 25rem;
        line-height: 2em;
        content: "“";

        font-variation-settings: "wght" 600;
    }

@media screen and (max-width: 781px) {

blockquote:before {
            left: -32%
    }
        }

blockquote:after {
        position: absolute;
        top: 50%;
        right: -20%;
        transform: translateY(-45%);
        font-size: 25rem;
        line-height: 2em;
        content: "”";

        font-variation-settings: "wght" 600;
    }

@media screen and (max-width: 781px) {

blockquote:after {
            right: -32%
    }
        }

blockquote footer {
        position: absolute;
        bottom: -40px;
        text-align: center;
        width: 100%;
        border: 0;
        padding: 0;
        font-size: 2rem;
        letter-spacing: normal;
    }

.grid {
    width: 100%;
    display: grid;
    grid-auto-flow: row;

    grid-template-columns: repeat(12, 1fr);
    grid-gap: var(--gap);
}

@media screen and (max-width: 781px) {

.grid {
        display: flex;
        flex-direction: column
}
    }

.grid .column {
        grid-column: auto / span var(--columns);
    }

@media screen and (max-width: 781px) {

.grid .column {
            --columns: 12 !important
    }
        }

#footer .wrapper, #blocks .grid, #blocks .sidecar-logo, #hero-slider .card .card-content .wrapper, #bottom-feature, .achievement-stats, .achievement-year {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

header {
    position: absolute;
    z-index: 400;
    top: 0px;
    left: 0px;
    width: 100%;

    padding: var(--gutter);
    padding-top: 20px;
}

header .wrapper {
        height: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

header .wrapper:after {
            content: "";
            display: block;
            height: 125px;
            width: 20px;

            background-color: var(--color-fog);
            mask-image: url("../img/bs_edge.svg");
            mask-repeat: no-repeat;
            mask-position: center left;
        }

@media screen and (max-width: 1079px) {

header .wrapper:after {
                display: none
        }
            }

header #main-nav {
        display: flex;
        flex: 1;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;

        height: 80px;
        background-color: var(--color-fog);

        padding-right: 16px;
    }

@media screen and (max-width: 1079px) {

header #main-nav {
            display: none
    }
        }

header #logo {
        height: 125px;
        width: auto;
        position: relative;
    }

@media screen and (max-width: 1079px) {

header #logo {
            display: none
    }
        }

header #logo:after {
            content: "";
            display: block;
            position: absolute;
            z-index: 33;
            top: 0px;
            right: 0px;
            height: 125px;
            width: 20px;

            background-color: var(--color-fog);
            mask-image: url("../img/bs_leftedge.svg");
            mask-repeat: no-repeat;
            mask-position: center right;
        }

@media screen and (max-width: 1079px) {

header #logo:after {
                display: none
        }
            }

#trigger {
    position: absolute;
    top: 85vh;
    left: 0px;
    bottom: 0px;

    width: 100%;

    z-index: -1;
}

main {
    flex: 1;
    position: relative;
    max-width: 100vw;
}

article {
    padding: var(--gutter);
}

#footer {
    padding: var(--gutter);

    border-top: none;

    background-color: var(--color-space);
    color: var(--color-concrete);
}

@media screen and (max-width: 781px) {

#footer {
        padding-bottom: 200px
}
    }

#footer #footer-nav ul {
            display: flex;
            flex-direction: row;
            justify-content: flex-end;
            gap: var(--gutter);
        }

#footer #footer-nav ul li a {
                    color: var(--color-concrete);
                    font-weight: normal;
                }

body.night #footer #footer-nav ul li a {
                        color: var(--color-dark);
                    }

a.button, .button:visited {
    display: inline-block;
    padding: 0.8em 1em;
    margin-top: var(--gutter);
    margin-bottom: var(--gutter);

    margin-left: auto;
    margin-right: auto;

    font-family: "ChaneyRegular", Arial, Helvetica, sans-serif;
    font-size: 2rem;
    letter-spacing: 0.05em;
    line-height: 1.1em;

    background-color: var(--color-brand);

    color: #fff;
}

a.button:hover, .button:visited:hover {
        background-color: var(--color-dark);
    }

#toplink {
    display: block;
    position: fixed;
    cursor: n-resize;
    z-index: 920;
    bottom: -100px;
    margin-bottom: var(--gutter);
    left: var(--gutter);
    font-size: 0;
    background-repeat: no-repeat;

    width: 42px;
    height: 42px;
    background-image: url(../img/scroll_up.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media screen and (max-width: 781px) {

#toplink {
        background-size: 60%;
        width: 40px;
        height: 40px;
        margin-bottom: 0px
}
    }

#blocks {
    padding: var(--gutter);
}

@media screen and (max-width: 419px) {

#blocks {
        overflow: hidden;
        padding-top: 0
}
    }

#blocks .block * {
            max-width: 100%;
        }

#blocks .block p {
            max-width: 40em;
        }

#blocks .block h1, #blocks .block h2, #blocks .block h3, #blocks .block h4 {
            margin-bottom: 0.4em;
            /*
            background: -webkit-linear-gradient(55deg, var(--color-brand), var(--color-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            */
        }

body.night #blocks .block h2 {
                color: #fff;
            }

@media screen and (max-width: 781px) {
            #blocks .block h3 {
                text-align: center;
            }
        }

#blocks .columns {
        margin-bottom: var(--gutter);
        transform: translateX(0%);
        transition: transform 0.7s ease-in-out;
    }

@media screen and (max-width: 781px) {

#blocks .columns {
            margin: calc(var(--gutter) * -1);
            margin-top: 0;
            margin-bottom: 0;

            margin-bottom: 50px
    }
        }

/* WHEN GALLERY IS DRAWN FROM RIGHT */

#blocks .columns.shift .sidecar-logo, #blocks .columns.shift .grid {
            }

#blocks .columns.shift .side-slide .slideshow:before {
                        opacity: 0;
                    }

#blocks .columns.shift .side-slide .slideshow .flickity-viewport {
                        filter: grayscale(0%);
                    }

#blocks .columns.unboxed .grid {
                padding: 0;
                background-color: transparent;
            }

#blocks .grid {
        position: relative;

        padding: var(--gutter);

        background-color: var(--color-white);
    }

#blocks .team-members {
        --columns: 12;
    }

#blocks .sidecar-logo {

        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: flex-end;

        position: relative;
        z-index: 20;

        height: 50px;
    }

#blocks .sidecar-logo figure {
            position: relative;

            background: var(--color-white);
            padding-left: 10px;
            padding-right: 10px;

            width: 200px;

            height: 50px;
        }

#blocks .sidecar-logo figure:nth-child(2) {
                display: none;
            }

body.night #blocks .sidecar-logo figure {
                filter: grayscale(0%);
                opacity: 1;
            }

body.night #blocks .sidecar-logo figure:nth-child(1) {
                    opacity: 0;
                }

body.night #blocks .sidecar-logo figure:nth-child(2) {
                    display: block;
                }

#blocks .sidecar-logo figure img {
                width: 100%;
                height: auto;
            }

#blocks .sidecar-logo figure:before {
                position: absolute;
                top: 0px;
                left: -10px;

                content: "";
                width: 10px;
                height: 100%;

                background-color: var(--color-white);
                mask-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyBpZD0iYSIgZGF0YS1uYW1lPSJFYmVuZSAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMC44NiAxMDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPgogIDxwb2x5Z29uIHBvaW50cz0iMjAuODYgMCAuMiAxMDAgMjAuODYgMTAwIDIwLjg2IDAiIGZpbGw9IiNmZmYiIHN0cm9rZS13aWR0aD0iMCIvPgo8L3N2Zz4=");
            }

#blocks .side-slide {
        position: absolute;
        top: -50px;
        right: 0px;
        bottom: 0px;

        width: calc(var(--max-width) + (100vw - var(--max-width)) / 2);

        height: calc(100% + 50px);

        transform: translateX(100%);
    }

@media screen and (max-width: 781px) {

#blocks .side-slide {
            position: relative;
            top: unset;
            right: unset;
            bottom: unset;

            transform: none;
            width: 100vw;
            height: 300px;

            margin: calc(var(--gutter) * -1);
            margin-top: var(--gutter)
    }
        }

#blocks #intro {
        background-image: url("../img/zebra.svg");
        background-repeat: no-repeat;
        background-position: 110% 0%;
        background-size: 40vw auto;

        margin: 0;
        margin-bottom: 0;
        padding-bottom: var(--gutter);

        max-width: 100vw;
        width: calc(100vw - var(--gutter));
    }

body.night #blocks #intro {
            background-image: url("../img/zebra_dark.svg");
        }

@media screen and (max-width: 781px) {

#blocks #intro {
            width: 100%;
            background-image: none
    }
        }

#blocks #intro .grid {
            padding: var(--gutter) 0;
            background-color: transparent;
        }

@media screen and (max-width: 781px) {

#blocks #intro .grid {
                padding-top: 0
        }
            }

#blocks .squad-row {
        margin-top: calc(var(--gutter) * -1);
    }

#blocks .block-type-collection .card-wrapper {
            display: grid;

            grid-template-columns: repeat(6, 1fr);

            gap: 10px;
        }

@media screen and (max-width: 781px) {

#blocks .block-type-collection .card-wrapper {
                display: flex;
                flex-wrap: wrap;
                flex-direction: row;
                justify-content: center
        }
            }

#blocks .block-type-collection .card-wrapper .player-card {
                display: flex;
                flex-basis: 20%;
            }

@media screen and (max-width: 781px) {

#blocks .block-type-collection .card-wrapper .player-card {
                    flex-basis: 48%
            }
                }

#blocks #enascar .player-card figure picture:nth-child(2) {
            display: none;
        }

#blocks #partners-header {
        margin-bottom: 0;
    }

#blocks #contact .block {
            display: flex;
            flex-direction: row;
            justify-content: center;
        }

#blocks #partners p {
            text-align: center;
        }

.player-card {
    position: relative;

    transform: scale(0.8);
    opacity: 0;

    background-color: var(--color-brand);
    box-shadow: 1.1px 2.2px 2.2px hsl(0deg 0% 0% / 0.2);

    background-image: url("../img/card-zebra.svg"), radial-gradient(closest-side, var(--color-brand), var(--color-dark));
    background-size: cover;

    border-radius: 4px;
    overflow: hidden;

    min-height: 285px;
    max-height: 300px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

body.night .player-card {
        background-image: url("../img/card-zebra.svg"),
            radial-gradient(closest-side, var(--color-dark), var(--color-darker));
    }

@media screen and (max-width: 781px) {

.player-card {
        min-height: 240px
}
    }

.player-card a {
        display: block;
        width: 100%;
    }

.player-card.dummy {
        background-color: var(--color-fog);
        background-image: none !important;
        box-shadow: none;
    }

@media screen and (max-width: 781px) {

.player-card.dummy {
            display: none !important
    }
        }

.player-card figure {
        display: grid;
        width: 80%;
        height: 100%;

        margin-bottom: -50%;
    }

.player-card picture {
        display: block;

        width: 100%;
        height: 100%;

        /* display two images on top of each other */
        grid-column: 1;
        grid-row: 1;
    }

.player-card picture img {
            object-fit: contain;
            object-position: top center;
            width: 100%;
            height: 100%;
        }

.player-card picture.placeholder {
            opacity: 35%;
            height: 80%;
            width: 100%;
            background-image: url("../img/placeholder.svg");
            background-repeat: no-repeat;
            background-position: 50% 0%;
            background-size: 100%;
        }

.player-card .card-header {
        padding: 12px 8px;
        width: 100%;
        display: block;

        color: #fff;
        text-align: center;

        background-image: linear-gradient(
            rgba(31, 115, 155, 0.9) 0%,
            rgba(31, 115, 155, 0.9) 50%,
            rgba(31, 115, 155, 0) 100%
        );
    }

body.night .player-card .card-header {
            color: var(--color-brand);

            background-image: linear-gradient(
                rgba(5, 41, 57, 0.9) 0%,
                rgba(5, 41, 57, 0.9) 50%,
                rgba(5, 41, 57, 0) 100%
            );
        }

.player-card .card-footer {
        position: absolute;
        bottom: 0px;

        padding: 40px 6px 6px 6px;
        width: 100%;
        display: block;

        color: #fff;
        text-align: center;

        background-image: linear-gradient(
            rgba(9, 72, 101, 0) 0%,
            rgba(9, 72, 101, 0.9) 75%,
            rgba(9, 72, 101, 0.9) 100%
        );
    }

body.night .player-card .card-footer {
            background-image: linear-gradient(rgba(5, 41, 57, 0) 0%, rgba(5, 41, 57, 0.9) 75%, rgba(5, 41, 57, 1) 100%);
        }

.player-card .fi {
        position: absolute;
        bottom: 5px;
        right: 8px;
        z-index: 99;
        width: 28px;

        line-height: 28px;
    }

.player-card .fi:before {
        }

.player-card .age {
        position: absolute;
        bottom: 28px;
        right: 7px;
        z-index: 119;
        min-width: 20px;
        text-align: center;

        font-family: "ChaneyRegular", Arial, Helvetica, sans-serif;
        font-size: 2rem;

        color: #fff;
    }

.player-card .name {
    }

.player-card .firstname {
        display: block;
    }

.player-card .nickname, .player-card .lastname {
        font-size: 2rem;
        text-transform: uppercase;
        line-height: 0.9em;
        font-weight: 900;
        font-family: "ChaneyRegular", Arial, Helvetica, sans-serif;

        text-shadow: 1.1px 2.2px 2.2px hsl(0deg 0% 0% / 0.4);
    }

.player-card .lastname {
    }

.player-card .nickname {
        display: block;
    }

.player-card .nickname:before {
            content: "“";
            font-family: "Archivo", Arial, Helvetica, sans-serif;
            font-variation-settings: "wght" 600;
        }

.player-card .nickname:after {
            content: "”";
            font-family: "Archivo", Arial, Helvetica, sans-serif;
            font-variation-settings: "wght" 600;
        }

.player-card .socials {
        display: flex;
        flex-direction: row;
        gap: 0px;
    }

.player-card .socials li a {
                opacity: 0.7;
                transition: opacity 0.2s ease-in-out;
                background-repeat: no-repeat;
                background-size: contain;
                font-size: 0;
                display: block;
                width: 28px;
                height: 28px;
            }

.player-card .socials li a:hover {
                    opacity: 1;
                }

.player-card .socials .icon-x a {
            background-image: url("../img/x.svg");
        }

.player-card .socials .icon-facebook a {
            background-image: url("../img/facebook.svg");
        }

.player-card .socials .icon-instagram a {
            background-image: url("../img/instagram.svg");
        }

.player-card .socials .icon-threads a {
            background-image: url("../img/threads.svg");
        }

.player-card .socials .icon-tiktok a {
            background-image: url("../img/tiktok.svg");
        }

.player-card .socials .icon-twitch a {
            background-image: url("../img/twitch.svg");
        }

.player-card .socials .icon-youtube a {
            background-image: url("../img/youtube.svg");
        }

#brenna-schubert figure, #thomas-labouteley figure, #mathieu-snow-barthelemy figure {
        width: 95%;
    }

#robbie-stapleford figure {
        width: 70%;
    }

#main-nav ul {
        list-style-type: none;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: var(--gap);

        margin-right: 20px;
    }

#main-nav ul li a, #main-nav ul li a:visited {
                font-size: 2rem;
                letter-spacing: 0.05em;
                font-weight: 700;
                text-transform: uppercase;

                color: var(--color-night);
                transition: color 0.3s ease-in-out;

                font-family: "ChaneyRegular", Arial, Helvetica, sans-serif;
                text-transform: uppercase;
            }

#main-nav ul li a[aria-current="page"], #main-nav ul li a:visited[aria-current="page"] {
                    text-decoration: none;
                    color: var(--color-brand) !important;
                }

#main-nav ul li a i, #main-nav ul li a:visited i {
                    font-family: "ChaneyUltra";
                }

#compact-nav {
    position: fixed;
    z-index: 890;
    top: -140px;
    left: var(--gutter);
    right: var(--gutter);

    padding: 0px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

#compact-nav.fixed {
    }

#compact-nav #mobile-zebra {
        margin-top: 10px;
        display: block;
        width: 120px;
        height: 120px;
        background-image: url("../img/bs_logo_compact.svg");
        background-repeat: no-repeat;
    }

@media screen and (max-width: 781px) {

#compact-nav #mobile-zebra {
            margin-top: 4px;
            width: 80px;
            height: 80px
    }
        }

@media screen and (max-width: 1079px) {

#compact-nav {
        top: 0px !important
}
    }

#compact-burger {
    position: fixed;
    z-index: 900;
    top: var(--gutter);
    right: -100px;

    margin-right: var(--gutter);

    cursor: pointer;

    display: block;
    width: 40px;
    height: 40px;
    background-image: url("../img/burger.svg");
    background-repeat: no-repeat;
    background-position: center left;
}

#compact-burger.closeable {
        background-image: url("../img/close.svg");
    }

@media screen and (max-width: 1079px) {

#compact-burger {
        right: 0px !important
}
    }

#drawer {
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 895;

    transform: translateX(100vw);

    width: 100vw;
    height: 100lvh;

    display: flex;
    flex-direction: row;
}

@media screen and (max-width: 781px) {

#drawer {
        transform: translateX(100%);
        width: 140vw
}
    }

#drawer #void {
        height: 100vh;
        margin-right: -2px;
        width: auto;

        aspect-ratio: 21/100;

        mask-image: url("../img/void.svg");
        background-color: var(--color-brand);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center right;
    }

body.night #drawer #void {
            background-color: var(--color-darker);
        }

@media screen and (max-width: 781px) {

#drawer #void {
            width: 100lvh
    }
        }

#drawer #plateau {
        position: relative;
        background-color: var(--color-brand);

        display: flex;

        flex-direction: column;
        flex: 1;
        align-items: center;
        justify-content: center;

        gap: 10vh;
    }

body.night #drawer #plateau {
            background-color: var(--color-darker);
        }

@media screen and (max-width: 781px) {

#drawer #plateau {
            flex-direction: column;
            align-items: flex-start
    }
        }

@media screen and (max-width: 781px) {

#drawer #plateau {
            width: 100lvh
    }
        }

#drawer #plateau .switch-container {
            --color-bg: var(--color-dark);

            position: absolute;
            top: var(--gutter);

            padding-top: 8px;

            left: var(--gutter);
            transform: scale(1.4);
        }

body.night #drawer #plateau .switch-container {
                --color-bg: var(--color-concrete);
            }

#drawer #spacer {
        height: 100vh;
        margin-left: -1px;
        width: auto;

        aspect-ratio: 21/100;

        background-color: var(--color-brand);
    }

body.night #drawer #spacer {
            background-color: var(--color-darker);
        }

@media screen and (max-width: 781px) {

#drawer #spacer {
            width: 100lvh
    }
        }

@media screen and (max-width: 781px) {

#drawer #mobile-nav {
            margin-left: -10vw
    }
        }

#drawer #mobile-nav ul {
            display: flex;
            flex-direction: column;
            gap: 10px;

            transform: rotate(12deg);
        }

@media screen and (max-width: 781px) {

#drawer #mobile-nav ul {
                gap: 40px
        }
            }

#drawer #mobile-nav ul li {
                transform: rotate(-12deg);
                /*
                &:nth-child(2) {
                    transform: translateX(-1.5em);
                }
                &:nth-child(3) {
                    transform: translateX(-3em);
                }
                &:nth-child(4) {
                    transform: translateX(-4.5em);
                }
                &:nth-child(5) {
                    transform: translateX(-5em);
                }
                    */
            }

#drawer #mobile-nav ul li a {
                    display: inline;
                    font-size: 6vw;
                    line-height: 90%;
                    font-family: "ChaneyRegular", Arial, Helvetica, sans-serif;
                    color: #fff;
                    text-transform: uppercase;
                }

@media screen and (max-width: 781px) {

#drawer #mobile-nav ul li a {
                        font-size: 4rem
                }
                    }

#drawer #mobile-nav ul li a em {
                        font-family: "ChaneyUltra";
                    }

#drawer #mobile-nav ul li a[aria-current="page"] {
                        text-decoration: none;
                        color: var(--color-accent) !important;
                    }

#drawer #mobile-nav-secondary {
        position: absolute;
        bottom: 80px;
    }

@media screen and (max-width: 781px) {

#drawer #mobile-nav-secondary {
            bottom: 80px;
            position: relative;
            bottom: unset
    }
        }

#drawer #mobile-nav-secondary ul {
            display: flex;

            gap: var(--gutter);
        }

@media screen and (max-width: 781px) {

#drawer #mobile-nav-secondary ul {
                flex-direction: column;
                justify-content: center;
                align-items: center
        }
            }

#drawer #mobile-nav-secondary ul li a, #drawer #mobile-nav-secondary ul li a:visited {
                    color: #fff;
                    text-align: center;
                }

/*! Flickity v3.0.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
  touch-action: pan-y;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}

.flickity-rtl .flickity-slider {
  left: unset;
  right: 0;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

/* ---- flickity-cell ---- */

.flickity-cell {
  position: absolute;
  left: 0;
}

.flickity-rtl .flickity-cell {
  left: unset;
  right: 0;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsl(0 0% 100% / 75%);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }

.flickity-prev-next-button.next { right: 10px; }

/* right to left */

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dot {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  margin: 0 8px;
  background: hsl(0 0% 20% / 25%);
  border-radius: 50%;
  cursor: pointer;
  appearance: none;
  border: none;
  text-indent: -9999px;
  overflow: hidden;
}

.flickity-rtl .flickity-page-dot {
  text-indent: 9999px;
}

.flickity-page-dot:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-page-dot.is-selected {
  background: hsl(0 0% 20% / 100%);
}

/* flickity-fade */

.flickity-enabled.is-fade .flickity-slider > * {
    pointer-events: none;
    z-index: 0;
}

.flickity-enabled.is-fade .flickity-slider > .is-selected {
    pointer-events: auto;
    z-index: 1;
}

#stage {
    min-height: 120px;
}

@media screen and (max-width: 781px) {

#stage {
        min-height: 100px
}
    }

#hero-slider {
    background-color: var(--color-bot);

    background-image: linear-gradient(var(--color-mid) 75%, var(--color-bot) 100%); /* W3C */

    padding: 0;
}

#hero-slider .flickity-slider {
        width: 100%;
        height: 100%;
    }

#hero-slider .slide {
        /*transition: opacity 2.5s ease-in-out;*/

        height: 50vw;
        max-height: 85vh;
        width: 100%;

        opacity: 0;
    }

@media screen and (max-width: 781px) {

#hero-slider .slide {
            height: 65svh
    }
        }

#hero-slider .slide.is-selected figure, #hero-slider .slide.is-selected picture {
                transition: all 5s ease-out;
                transform: scale(1.05);
            }

#hero-slider figure, #hero-slider picture {
        display: block;
        transition: all 5s ease-out;
        transform: scale(1);
        width: 100%;

        position: relative;
        z-index: 20;
    }

@media screen and (max-width: 781px) {

#hero-slider figure, #hero-slider picture {
            flex: 1;

            width: 100vw;
            max-height: 40vh
    }

            #hero-slider figure:after, #hero-slider picture:after {
                position: absolute;
                content: "";
                z-index: 20;
                bottom: 0px;
                left: 0px;
                width: 100%;
                height: 40px;

                background-image: linear-gradient(var(--color-top) 0%, var(--color-mid) 100%); /* W3C */
            }
        }

#hero-slider img {
        object-fit: cover;
        width: 100%;
        height: 100%;

        transition: opacity 0.4s;
        opacity: 0;
    }

@media screen and (max-width: 781px) {

#hero-slider img {
            min-height: 100%;
            width: 100%
    }
        }

#hero-slider img.flickity-lazyloaded, #hero-slider img.flickity-lazyerror {
            opacity: 1;
        }

#hero-slider .card {
        height: 100%;
        width: 100%;
    }

@media screen and (max-width: 781px) {

#hero-slider .card {
            display: flex;
            flex-direction: column;
            justify-content: space-between
    }
        }

#hero-slider .card .card-content {
            position: absolute;
            z-index: 4020;
            bottom: 10%;
            left: 0px;
            width: 100%;

            padding: 0 var(--gutter);

            font-size: 8rem;
            color: #fff;
        }

@media screen and (max-width: 781px) {

#hero-slider .card .card-content {
                bottom: 0;

                padding: var(--gutter);

                position: absolute
        }
            }

#hero-slider .card .card-content h1, #hero-slider .card .card-content h2 {
                font-size: 8rem;
                text-transform: uppercase;
                margin-bottom: 10px;
                line-height: 80%;
                max-width: 640px;

                color: #fff;
            }

#hero-slider .card .card-content h1 i, #hero-slider .card .card-content h2 i {
                    font-style: italic;
                }

@media screen and (max-width: 781px) {

#hero-slider .card .card-content h1, #hero-slider .card .card-content h2 {
                    font-size: 10vw
            }

                    #hero-slider .card .card-content h1 i, #hero-slider .card .card-content h2 i {
                        font-size: 8rem;
                        display: block;
                        line-height: 90%;
                    }
                }

#hero-slider .card .card-content p {
                color: #fff;
                font-size: 3rem;
                line-height: 1.1em;
                max-width: 800px;
                margin: 0;
            }

@media screen and (max-width: 781px) {

#hero-slider .card .card-content p {
                    font-size: 2rem;
                    line-height: 1.2em;
                    padding-bottom: var(--gutter)
            }
                }

#hero-slider .card .card-content a {
                color: red;
            }

#hero-slider:before {
        opacity: 0.2;
        content: "";
        display: block;
        height: 42px;
        width: 100%;

        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 1;

        background-image: url("../img/zebra_fat.svg"); /* fallback */
        background-image: url("../img/zebra_fat.svg"), linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));

        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center top;
    }

/* W3C */

body.night #hero-slider:before {
            opacity: 0.8;
            background-image: url("../img/zebra_fat_dark.svg"); /* fallback */
            background-image: url("../img/zebra_fat_dark.svg"), linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0)); /* W3C */
        }

#hero-slider:after {
        opacity: 0.2;
        content: "";
        display: block;
        height: 30px;
        width: 100%;

        position: absolute;
        bottom: 0;
        left: 0px;
        z-index: 2;

        background-image: url("../img/zebra_lean.svg"); /* fallback */
        background-image: url("../img/zebra_lean.svg"), linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));

        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center top;
    }

@media screen and (max-width: 781px) {

#hero-slider:after {
            height: 20px;
            background-size: cover;
    }
        }

/* W3C */

body.night #hero-slider:after {
            opacity: 0.5;
            height: 42px;
            background-image: url("../img/zebra_fat_dark.svg"); /* fallback */
            background-image: url("../img/zebra_fat_dark.svg"), linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)); /* W3C */
        }

@media screen and (max-width: 781px) {
        #hero-slider .flickity-prev-next-button.previous {
            display: none;
        }
    }

#card-slider {
    position: relative;
    z-index: 22;
    padding: 0 0 0px 0;

    margin-top: calc(var(--outline-width) * -1);

    background-image: url("../img/zebra_lean.svg"); /* fallback */
    /*background-image: url("../img/zebra_lean.svg"), linear-gradient(var(--color-fog), #ffffff); */
    background-image: url("../img/zebra_lean.svg"), linear-gradient(var(--color-dust), var(--color-fog));
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 50% var(--outline-width);
}

body.night #card-slider {
        background-image: none;
    }

#card-slider .flickity-viewport {
    }

#card-slider .slides {
    }

#card-slider .slide {
        height: 100px;

        width: 20%;

        margin: var(--outline-width) calc(var(--outline-width) / 2);
        margin-bottom: 80px;
        transition: outline 0s;
    }

@media screen and (max-width: 781px) {

#card-slider .slide {
            width: 32%;
            height: 70px
    }
        }

/*  outline: var(--outline-width) solid transparent; */

#card-slider .slide figure, #card-slider .slide picture {
            display: block;
            width: 100%;
        }

#card-slider .slide figure img, #card-slider .slide picture img {
                object-fit: contain;
                width: 100%;
                height: 100%;
            }

/*  margin-top: calc(var(--outline-width) * -1); */

#card-slider .slide:before {
            content: "";
            position: absolute;
            display: block;

            z-index: -1;

            top: calc(var(--outline-width) * -1);
            left: calc(var(--outline-width) * -1);
            right: calc(var(--outline-width) * -1);
            bottom: calc(var(--outline-width) * -1);

            transition: opacity 0s ease-in-out;
            opacity: 0;

            background-color: var(--color-accent);

            background-image: url("../img/zebra_fat.svg"); /* fallback */
            background-image: url("../img/zebra_fat.svg"), linear-gradient(var(--color-accent), var(--color-accent)); /* W3C */
            background-image: linear-gradient(var(--color-brand), var(--color-accent)); /* W3C */
            background-size: cover;
            background-repeat: repeat-y;
            background-position: center top;
        }

#card-slider .slide.is-nav-selected:before {
                opacity: 1;
                transition: opacity 0.3s ease-in-out;
            }

/*  outline: var(--outline-width) solid var(--color-accent); */

#card-slider .slide.is-nav-selected div {
                opacity: 1;
                transition: opacity 0.3s ease-in-out;
            }

#card-slider .slide.is-nav-selected div a {
                    color: var(--color-accent);
                    transform: translateY(0);
                }

#card-slider .slide.is-nav-selected figure, #card-slider .slide.is-nav-selected picture {
                transition: all 0.7s ease-out;
                filter: grayscale(0%);
                opacity: 1;
                transform: scale(1);
            }

body.night #card-slider .slide.is-nav-selected figure:nth-child(1) {
                        opacity: 10;
                    }

body.night #card-slider .slide.is-nav-selected figure:nth-child(2) {
                        display: none;
                    }

#card-slider .slide.is-nav-selected .card {
                background-color: #fff;
            }

#card-slider .card, #card-slider figure, #card-slider picture {
        height: 100%;
    }

#card-slider figure, #card-slider picture {
        transition: all 0s ease-in-out;
        filter: grayscale(100%);
        opacity: 0.7;
        transform: scale(0.9);
    }

#card-slider figure:nth-child(2) {
            display: none;
        }

body.night #card-slider figure {
            filter: grayscale(0%);
            opacity: 1;
        }

body.night #card-slider figure:nth-child(1) {
                opacity: 0;
            }

body.night #card-slider figure:nth-child(2) {
                display: block;
                position: absolute;
                top: 0px;
                left: 0px;
                width: 100%;
                height: 100%;
            }

#card-slider img {
        object-fit: contain;
    }

#card-slider .card {
        background-color: var(--color-card);
    }

#card-slider .card div {
            opacity: 0;
            transition: opacity 0s ease-in-out;

            position: relative;
            z-index: -1;

            margin-left: calc(var(--outline-width) * -1);
            margin-right: calc(var(--outline-width) * -1);
            margin-top: var(--outline-width);

            padding: 0 var(--outline-width);

            background-color: var(--color-accent);

            text-align: center;
        }

#card-slider .card div a {
                background-color: #2e314a;
                display: inline-block;
                border-radius: 20px;
                padding: 5px 10px;
            }

#card-slider .card div:after {
                content: "";
                position: absolute;
                bottom: -30px;
                left: 0px;
                height: 30px;
                width: 100%;

                background-image: url("../img/box_arrow.svg"); /* fallback */
                background-size: 100%;
                background-repeat: no-repeat;
                background-position: 0% 0%;
            }

.slideshow {
    height: 320px;
}

.slideshow .slide {
        height: auto;
        width: 100%;
    }

.slideshow .slide figure, .slideshow .slide picture {
            display: block;
            max-width: auto;
        }

.slideshow .slide img {
            object-fit: cover;
            height: 320px;
        }

.slideshow .flickity-prev-next-button {
        z-index: 500;
        top: unset;

        opacity: 1;

        bottom: 0px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        transform: translateY(100%);
    }

.slideshow .flickity-prev-next-button svg path {
                fill: hsl(0 0% 20% / 25%);
            }

.slideshow .flickity-prev-next-button:hover svg path {
                    fill: var(--color-brand);
                }

.slideshow .flickity-prev-next-button.previous {
            display: none;
        }

.slideshow .flickity-prev-next-button.next {
            right: 0;
        }

.slideshow .flickity-page-dot {
        z-index: 520;
        width: 6px;
        height: 6px;
        transition: width 0.2s ease-in-out;
        border-radius: 3px;

        background: hsla(0, 0%, 100%, 0.25);
    }

.slideshow .flickity-page-dot.is-selected {
            width: 24px;

            background-color: var(--color-brand);
        }

.slideshow .flickity-page-dot:focus {
            box-shadow: none;
        }

.flickity-prev-next-button {
    background: transparent;

    opacity: 0.3;
    transition: opacity 0.3s ease-in-out;
}

.flickity-prev-next-button:hover {
        opacity: 1;
        background: transparent;
    }

.flickity-prev-next-button:hover svg path {
                fill: var(--color-accent);
            }

.flickity-prev-next-button svg path {
            transition: fill 0.3s ease-in-out;
            fill: #fff;
        }

.flickity-prev-next-button:focus {
        box-shadow: none;
    }

.side-slide .trigger {
        position: absolute;
        cursor: ew-resize;
        z-index: 400;
        top: 0px;
        left: 0px;
        font-size: 0;
        background-repeat: no-repeat;
        background-size: 60%;
        width: 50%;
        height: 100%;
        background-image: url("../img/gallery.svg");
        background-size: 32px;
        background-repeat: no-repeat;
        background-position: 10px 20px;
    }

.shift .side-slide .trigger {
            background-image: url("../img/gallery_close.svg");
        }

.side-slide .closer {
        position: absolute;
        cursor: pointer;
        z-index: 400;
        top: 0px;
        right: 0px;
        font-size: 0;
        background-repeat: no-repeat;
        background-size: 60%;
        width: 50px;
        height: 50px;
        background-image: url("../img/close.svg");
        background-size: 32px;
        background-repeat: no-repeat;
        background-position: 10px 20px;
    }

.shift .side-slide .closer {
            background-image: url("../img/close.svg");
        }

@media screen and (max-width: 781px) {
        .side-slide .trigger, .side-slide .closer {
            display: none;
        }
    }

.side-slide .slideshow {
        height: 100%;
        max-height: 100vh;
        position: sticky;
        top: 0px;
    }

.side-slide .slideshow .slide, .side-slide .slideshow figure, .side-slide .slideshow picture, .side-slide .slideshow img {
            height: 100%;
            width: 100%;
        }

.side-slide .slideshow:before {
            opacity: 0.8;
            transition: opacity 0.7s ease-in-out;
            content: "";
            position: absolute;
            z-index: 300;
            top: 0px;
            left: 0px;
            width: 20%;
            height: 100%;
            background: -webkit-linear-gradient(0deg, rgba(8, 28, 76, 1), rgba(8, 28, 76, 0));
        }

body.night .side-slide .slideshow:before {
                background: -webkit-linear-gradient(0deg, rgb(25, 85, 125, 1), rgb(25, 85, 125, 0));
            }

.side-slide .slideshow:after {
            opacity: 0.8;
            font-family: "ChaneyRegular", Arial, Helvetica, sans-serif;
            content: "GALLERY";
            font-size: 2.8rem;
            line-height: 1em;
            color: var(--color-brand);

            position: absolute;
            z-index: 340;
            top: 20px;
            left: 12px;
            width: 20%;
            height: 100%;

            transform: translateY(180px) rotate(-90deg);
            transform-origin: 0% 0%;
        }

@media screen and (max-width: 781px) {

.side-slide .slideshow:after {
                top: 0px;

                transform: translateY(140px) rotate(-90deg)
        }
            }

.side-slide .flickity-viewport {
        filter: grayscale(80%);
        transition: filter 2s ease-in-out;
    }

@media screen and (max-width: 781px) {

.side-slide .flickity-viewport {
            filter: grayscale(0%);
            transition: none
    }
        }

.side-slide .flickity-prev-next-button {
        z-index: 199;
        top: unset;

        opacity: 1;

        top: 50%;
        bottom: unset;
        width: 44px;
        height: 44px;

        transform: translateY(-50%);
    }

.side-slide .flickity-prev-next-button svg path {
                fill: rgba(255, 255, 255, 0.6);
            }

.side-slide .flickity-page-dots {
        bottom: 20px;
        padding: 0 var(--gutter);
    }

@media screen and (max-width: 781px) {

.side-slide .flickity-page-dots {
            bottom: -50px;
            height: 50px;
            padding-top: var(--gutter);
            padding-bottom: var(--gutter);
            align-items: flex-start;
            gap: 4px
    }

            .side-slide .flickity-page-dots .flickity-page-dot {
                margin: 0;
                margin-bottom: 10px;
                background: var(--color-concrete);
            }
        }

aside#sidecar {
    position: fixed;
    z-index: 900;

    left: -40px;
    top: 50%;

    pointer-events: none;

    transform: translateY(-50%);
}

@media screen and (max-width: 781px) {

aside#sidecar {
        right: 0px !important;
        bottom: -50px;
        width: auto;
        top: unset;
        transform: none
}
    }

aside#sidecar.open {
        pointer-events: all;
    }

aside#sidecar nav#social-nav ul {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            gap: 0px;
        }

@media screen and (max-width: 781px) {

aside#sidecar nav#social-nav ul {
                flex-direction: row;
                justify-content: flex-end;
                background-color: var(--color-space)
        }
            }

aside#sidecar nav#social-nav ul:before {
                width: 40px;
                height: 10px;
                content: "";

                background-color: var(--color-sidecar);

                mask-image: url("../img/roof-top.svg");
                mask-repeat: no-repeat;
            }

@media screen and (max-width: 781px) {

aside#sidecar nav#social-nav ul:before {
                    width: 10px;
                    height: 40px;
                    mask-image: url("../img/roof-left.svg")
            }
                }

aside#sidecar nav#social-nav ul:after {
                width: 40px;
                height: 10px;
                content: "";

                background-color: var(--color-sidecar);
                mask-image: url("../img/roof-bot.svg");
                mask-repeat: no-repeat;
            }

@media screen and (max-width: 781px) {

aside#sidecar nav#social-nav ul:after {
                    display: none
            }
                }

aside#sidecar nav#social-nav ul li {
                transform: translateX(-100px);
                transition: transform 0.3s ease-in-out;
                width: 140px;
            }

@media screen and (max-width: 781px) {

aside#sidecar nav#social-nav ul li {
                    width: auto;
                    transform: none;
                    transition: none
            }

                    aside#sidecar nav#social-nav ul li:first-child a {
                        padding-left: 10px;
                    }
                    aside#sidecar nav#social-nav ul li:last-child a {
                        padding-right: 10px;
                    }
                }

aside#sidecar nav#social-nav ul li:hover {
                    transform: translateX(0px);
                }

aside#sidecar nav#social-nav ul li:hover a:after {
                        opacity: 1;
                    }

aside#sidecar nav#social-nav ul li a {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    justify-content: flex-end;
                    background-color: var(--color-sidecar);
                    color: #fff;
                    width: 100%;
                    height: 40px;
                }

aside#sidecar nav#social-nav ul li a:after {
                        content: "";
                        display: block;

                        width: 40px;
                        height: 40px;
                        background-repeat: no-repeat;

                        opacity: 0.25;
                    }

@media screen and (max-width: 781px) {

aside#sidecar nav#social-nav ul li a:after {
                            opacity: 0.5
                    }
                        }

@media screen and (max-width: 781px) {

aside#sidecar nav#social-nav ul li a {
                        font-size: 0;
                        padding: 0 4px
                }
                    }

aside#sidecar nav#social-nav ul #social-x a:after {
                    background-image: url("../img/x.svg");
                }

aside#sidecar nav#social-nav ul #social-x:hover a:after {
                        background-image: url("../img/x-color.svg");
                    }

aside#sidecar nav#social-nav ul #social-instagram a:after {
                    background-image: url("../img/instagram.svg");
                }

aside#sidecar nav#social-nav ul #social-instagram:hover a:after {
                        background-image: url("../img/instagram-color.svg");
                    }

aside#sidecar nav#social-nav ul #social-twitch a:after {
                    background-image: url("../img/twitch.svg");
                }

aside#sidecar nav#social-nav ul #social-twitch:hover a:after {
                        background-image: url("../img/twitch-color.svg");
                    }

aside#sidecar nav#social-nav ul #social-youtube a:after {
                    background-image: url("../img/youtube.svg");
                }

aside#sidecar nav#social-nav ul #social-youtube:hover a:after {
                        background-image: url("../img/youtube-color.svg");
                    }

aside#sidecar nav#social-nav ul #social-tiktok a:after {
                    background-image: url("../img/tiktok.svg");
                }

aside#sidecar nav#social-nav ul #social-tiktok:hover a:after {
                        background-image: url("../img/tiktok-color.svg");
                    }

aside#sidecar nav#social-nav ul #social-reddit a:after {
                    background-image: url("../img/reddit.svg");
                }

aside#sidecar nav#social-nav ul #social-reddit:hover a:after {
                        background-image: url("../img/reddit-color.svg");
                    }

aside#sidecar nav#social-nav ul #social-facebook a:after {
                    background-image: url("../img/facebook.svg");
                }

aside#sidecar nav#social-nav ul #social-facebook:hover a:after {
                        background-image: url("../img/facebook-color.svg");
                    }

#bottom-feature {

    padding-bottom: var(--gutter);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    gap: var(--gutter);
}

#bottom-feature h2, #bottom-feature h3, #bottom-feature h4 {
        color: var(--color-night);
    }

body.night #bottom-feature h2, body.night #bottom-feature h3, body.night #bottom-feature h4 {
            color: var(--color-brand);
        }

nav#social-tiles ul {
        display: grid;
        max-width: 80vw;

        grid-auto-columns: min-content;

        grid-auto-flow: column;

        gap: 20px;
    }

@media screen and (max-width: 781px) {

nav#social-tiles ul {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center
    }
        }

nav#social-tiles ul li a {
                display: block;

                text-align: center;
                word-break: keep-all;
                white-space: nowrap;

                color: var(--color-dark);
            }

nav#social-tiles ul li a:before {
                    content: "";
                    display: block;

                    margin-bottom: 10px;

                    width: 64px;
                    height: 64px;
                    background-repeat: no-repeat;
                    background-size: 80%;
                    background-position: center;

                    background-color: #fff;
                    border-radius: 64px;
                }

body.night nav#social-tiles ul li a:before {
                        background-color: var(--color-white);
                    }

nav#social-tiles ul #social-x a:before {
                background-image: url("../img/x-dark.svg");
            }

body.night nav#social-tiles ul #social-x a:before {
                    background-image: url("../img/x.svg");
                }

nav#social-tiles ul #social-x:hover a:before {
                    background-image: url("../img/x-dark.svg");
                }

nav#social-tiles ul #social-instagram a:before {
                background-image: url("../img/instagram-dark.svg");
            }

body.night nav#social-tiles ul #social-instagram a:before {
                    background-image: url("../img/instagram.svg");
                }

nav#social-tiles ul #social-instagram:hover a:before {
                    background-image: url("../img/instagram-dark.svg");
                }

nav#social-tiles ul #social-twitch a:before {
                background-image: url("../img/twitch-dark.svg");
            }

body.night nav#social-tiles ul #social-twitch a:before {
                    background-image: url("../img/twitch.svg");
                }

nav#social-tiles ul #social-twitch:hover a:before {
                    background-image: url("../img/twitch-dark.svg");
                }

nav#social-tiles ul #social-youtube a:before {
                background-image: url("../img/youtube-dark.svg");
            }

body.night nav#social-tiles ul #social-youtube a:before {
                    background-image: url("../img/youtube.svg");
                }

nav#social-tiles ul #social-youtube:hover a:before {
                    background-image: url("../img/youtube-dark.svg");
                }

nav#social-tiles ul #social-tiktok a:before {
                background-image: url("../img/tiktok-dark.svg");
            }

body.night nav#social-tiles ul #social-tiktok a:before {
                    background-image: url("../img/tiktok.svg");
                }

nav#social-tiles ul #social-tiktok:hover a:before {
                    background-image: url("../img/tiktok-dark.svg");
                }

nav#social-tiles ul #social-reddit a:before {
                background-image: url("../img/reddit-dark.svg");
            }

body.night nav#social-tiles ul #social-reddit a:before {
                    background-image: url("../img/reddit.svg");
                }

nav#social-tiles ul #social-reddit:hover a:before {
                    background-image: url("../img/reddit-dark.svg");
                }

nav#social-tiles ul #social-facebook a:before {
                background-image: url("../img/facebook-dark.svg");
            }

body.night nav#social-tiles ul #social-facebook a:before {
                    background-image: url("../img/facebook.svg");
                }

nav#social-tiles ul #social-facebook:hover a:before {
                    background-image: url("../img/facebook-dark.svg");
                }

#achievements {
    margin-bottom: 0 !important;
    padding-bottom: 0px !important;
}

#achievements h1 {
        text-align: center;
    }

.achievement-stats {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;

    background-color: var(--color-white);
    padding: var(--gutter);

    margin-top: calc(var(--gutter) * -1);
    margin-bottom: var(--gutter);

    color: var(--color-night);
}

.achievement-stats .stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

@media screen and (max-width: 781px) {

.achievement-stats .stat {
            width: 135px;
            height: 135px
    }
        }

.achievement-stats .stat:before {
            font-size: 5rem;
            margin-bottom: 10px;

            border-radius: 100px;
            width: 120px;
            height: 120px;

            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            background-color: var(--color-fog);
        }

.achievement-stats .stat.stat-iracing:before {
                content: "🏁";
            }

.achievement-stats .stat.stat-team:before {
                content: "🏆";
            }

.achievement-stats .stat.stat-driver:before {
                content: "🏁";
            }

.achievement-stats .stat.stat-champ:before {
                content: "🏆";
            }

.achievement-stats .stat.stat-p1:before {
                content: "🥇";
            }

.achievement-stats .stat.stat-p2:before {
                content: "🥈";
            }

.achievement-stats .stat.stat-p3:before {
                content: "🥉";
            }

.achievement-stats .stat.stat-2over:before {
                content: "🎖️";
            }

.achievement-stats .stat.stat-3over:before {
                content: "🎖️";
            }

.achievement-stats .stat .number {
            font-family: "ChaneyRegular", Arial, Helvetica, sans-serif;
            font-size: 4rem;
            line-height: 60%;

            color: var(--color-brand);
        }

.achievement-stats .stat .number i {
                font-size: 2rem;
            }

.achievement-stats .stat .label {
            font-size: 2rem;
            line-height: 100%;
            text-align: center;

            color: var(--color-brand);
        }

.achievement-year {
    background-color: var(--color-white);
    padding: var(--gutter);

    margin-bottom: var(--gutter);

    color: var(--color-night);
}

.achievement-year h2 {
        margin-bottom: 20px;

        color: var(--color-brand);
    }

.achievement-year .achievement-list {
        --color-border: #e5e5e5;
        --color-odd: #f8f8f8;
    }

body.night .achievement-year .achievement-list {
            --color-border: rgb(14, 61, 84);
            --color-odd: rgb(17, 45, 59);
        }

@media screen and (max-width: 781px) {

.achievement-year .achievement-list {
            display: flex;
            flex-direction: column;
            gap: 20px
    }
        }

.achievement-year .achievement-list .list-row, .achievement-year .achievement-list .list-head {
            display: grid;
            grid-template-columns: 130px 1fr 130px 1fr 1fr;
            grid-template-rows: 1fr;
            grid-column-gap: 0px;
            grid-row-gap: 0px;
        }

@media screen and (max-width: 781px) {

.achievement-year .achievement-list .list-row, .achievement-year .achievement-list .list-head {
                display: grid;
                grid-template-columns: 3fr 100px;
                grid-template-rows: repeat(4, 1fr)
        }
            }

.achievement-year .achievement-list .list-head {
            border-bottom: 2px solid var(--color-border);
        }

.achievement-year .achievement-list .list-head .list-cell {
                border: none;
                /*
                font-family: "ChaneyRegular", Arial, Helvetica, sans-serif;
                font-size: 2rem;
                */
            }

@media screen and (max-width: 781px) {

.achievement-year .achievement-list .list-head {
                display: none
        }
            }

.achievement-year .achievement-list .list-row:last-child {
                border-bottom: 2px solid var(--color-border);
            }

.achievement-year .achievement-list .list-row:nth-child(odd) {
                background-color: var(--color-odd);
            }

.achievement-year .achievement-list .list-row:nth-child(odd) .list-cell {
                    border-right: 2px solid var(--color-border);
                }

.achievement-year .achievement-list .list-row:nth-child(odd) .list-cell:first-child {
                        border-left: 2px solid var(--color-border);
                    }

.achievement-year .achievement-list .list-row:nth-child(even) .list-cell {
                    border-right: 2px solid var(--color-border);
                }

.achievement-year .achievement-list .list-row:nth-child(even) .list-cell:first-child {
                        border-left: 2px solid var(--color-border);
                    }

@media screen and (max-width: 781px) {

.achievement-year .achievement-list .list-row {
                border: 1px solid var(--color-border) !important;
                background-color: #fff !important
        }
            }

.achievement-year .achievement-list .list-cell {
            padding: 0.75em;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
        }

@media screen and (max-width: 781px) {

.achievement-year .achievement-list .list-cell {
                border: none !important;
                padding: 0em
        }
            }

.achievement-year .achievement-list .list-cell strong {
                font-variation-settings: "wght" 600;
                display: block;
            }

.achievement-year .achievement-list .list-cell.label-place {
                align-items: center;
                justify-content: center;
            }

.achievement-year .achievement-list .list-cell.label-place .pill {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-direction: column;
                }

@media screen and (max-width: 781px) {

.achievement-year .achievement-list .list-cell.label-place .pill {
                        border-radius: 100px;
                        width: 80px;
                        height: 80px;
                        background-color: #fff
                }
                    }

.achievement-year .achievement-list .label-type {
            grid-area: 1 / 1 / 2 / 2;
        }

@media screen and (max-width: 781px) {

.achievement-year .achievement-list .label-type {
                grid-area: 1 / 1 / 2 / 2;
                padding-left: 0.5em
        }
                .achievement-year .achievement-list .label-type:before {
                    content: "Type:";
                    padding-right: 0.25em;
                }
            }

.achievement-year .achievement-list .label-title {
            grid-area: 1 / 2 / 2 / 3;
        }

@media screen and (max-width: 781px) {

.achievement-year .achievement-list .label-title {
                padding-left: 0.5em;
                grid-area: 2 / 1 / 3 / 2
        }
            }

.achievement-year .achievement-list .label-place {
            grid-area: 1 / 3 / 2 / 4;
        }

@media screen and (max-width: 781px) {

.achievement-year .achievement-list .label-place {
                min-height: 100px;
                grid-area: 1 / 2 / 5 / 3;
                background-color: var(--color-odd)
        }
            }

.achievement-year .achievement-list .label-team {
            grid-area: 1 / 4 / 2 / 5;
        }

@media screen and (max-width: 781px) {

.achievement-year .achievement-list .label-team {
                padding-left: 0.5em;
                grid-area: 3 / 1 / 4 / 2
        }

                .achievement-year .achievement-list .label-team:before {
                    content: "Team:";
                    padding-right: 0.25em;
                }
            }

.achievement-year .achievement-list .label-drivers {
            grid-area: 1 / 5 / 2 / 6;
        }

@media screen and (max-width: 781px) {

.achievement-year .achievement-list .label-drivers {
                padding-left: 0.5em;
                grid-area: 4 / 1 / 5 / 2
        }

                .achievement-year .achievement-list .label-drivers:before {
                    content: "Team Member:";
                    padding-right: 0.25em;
                }
            }

.achievement-year .pill:before {
            font-size: 3rem;
        }

.achievement-year .pill.type-p1:before {
                content: "🥇";
            }

.achievement-year .pill.type-p2:before {
                content: "🥈";
            }

.achievement-year .pill.type-p3:before {
                content: "🥉";
            }

.achievement-year .pill.type-p4:before, .achievement-year .pill.type-p5:before, .achievement-year .pill.type-p6:before, .achievement-year .pill.type-p7:before, .achievement-year .pill.type-p8:before, .achievement-year .pill.type-p9:before, .achievement-year .pill.type-p10:before, .achievement-year .pill.type-p11:before, .achievement-year .pill.type-p12:before, .achievement-year .pill.type-p13:before, .achievement-year .pill.type-4:before, .achievement-year .pill.type-5:before, .achievement-year .pill.type-6:before, .achievement-year .pill.type-7:before, .achievement-year .pill.type-8:before, .achievement-year .pill.type-9:before, .achievement-year .pill.type-10:before, .achievement-year .pill.type-11:before, .achievement-year .pill.type-12:before, .achievement-year .pill.type-13:before {
                content: "🏁";
            }

.achievement-year .pill.type-champion:before, .achievement-year .pill.type-champions:before {
                content: "🏆";
            }

.achievement-year .pill.type-2nd-overall:before {
                content: "🥈";
            }

.achievement-year .pill.type-3rd-overall:before {
                content: "🥉";
            }

.switch-container {
    --color-bg: var(--color-dark);
    --color-switch: #ffffff;
    --color-icon: #ffffff;

    margin-left: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}

body.night .switch-container {
        --color-bg: var(--color-darker);
        --color-switch: var(--color-dark);
        --color-icon: #ffffff;
    }

.switch-container i.icon {
        height: 20px;
    }

.switch-container i.icon:before {
            font-size: 30px;
            line-height: 0.3em;

            color: var(--color-icon);
        }

.btn-color-mode-switch {
    display: inline-block;
    margin: 0px;
    position: relative;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner {
    margin: 0px;
    width: 42px;
    height: 20px;
    background: var(--color-bg);
    border-radius: 26px;
    overflow: hidden;
    position: relative;

    transition: all 0.3s ease;
    /* box-shadow: 0px 2px 8px 0px rgba(17, 17, 17, 0.5) inset; */
    display: block;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:before, .btn-color-mode-switch > label.btn-color-mode-switch-inner:after {
    position: absolute;
    pointer-events: none;
    z-index: 30;

    width: 16px;
    height: 16px;

    font-family: icons;
    color: var(--color-icon);
    font-size: 16px;
    line-height: 1.45em;
    font-weight: 500;

    text-align: center;
    transition: all 0.3s ease;

    border-radius: 26px;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:before {
    content: attr(data-on);

    top: 2px;
    right: 5px;

    opacity: 1;

    background-color: var(--color-icon);
    mask-image: url("../img/icon_day.svg");
    mask-repeat: no-repeat;
    mask-position: center right;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:after {
    content: attr(data-off);

    left: 2px;
    top: 2px;

    background-color: var(--color-switch);

    box-shadow: 0px 0px 6px -2px #111;
}

.btn-color-mode-switch > .alert {
    display: none;
    background: #ff9800;
    border: none;
    color: #fff;
}

.btn-color-mode-switch input[type="checkbox"] {
    cursor: pointer;
    width: 50px;
    height: 25px;
    opacity: 0;
    position: absolute;
    top: 0;
    z-index: 1;
    margin: 0px;
}

.btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner {
}

.btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:after {
    content: attr(data-on);
    left: 24px;
}

.btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner:before {
    content: attr(data-off);
    right: auto;
    left: 5px;

    background-color: var(--color-icon);
    mask-image: url("../img/icon_night.svg");
    mask-repeat: no-repeat;
    mask-position: center right;
}

.btn-color-mode-switch input[type="checkbox"]:checked + label.btn-color-mode-switch-inner {
    /*background: #66BB6A; */
    /*color: #fff;*/
}

.btn-color-mode-switch input[type="checkbox"]:checked ~ .alert {
    display: block;
}

body.night .daydisplay {
        display: none;
    }

body.night .nightdisplay {
        display: block;
    }

.daydisplay {
    display: block;
}

.nightdisplay {
    display: none;
}

.fib, .fi {
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
}

.fi {
    position: relative;
    display: inline-block;
    width: 1.333333em;
    line-height: 1em;
}

.fi:before {
    content: " ";
}

.fi.fis {
    width: 1em;
}

.fi-xx {
    background-image: url(../flags/4x3/xx.svg);
}

.fi-xx.fis {
    background-image: url(../flags/1x1/xx.svg);
}

.fi-ad {
    background-image: url(../flags/4x3/ad.svg);
}

.fi-ad.fis {
    background-image: url(../flags/1x1/ad.svg);
}

.fi-ae {
    background-image: url(../flags/4x3/ae.svg);
}

.fi-ae.fis {
    background-image: url(../flags/1x1/ae.svg);
}

.fi-af {
    background-image: url(../flags/4x3/af.svg);
}

.fi-af.fis {
    background-image: url(../flags/1x1/af.svg);
}

.fi-ag {
    background-image: url(../flags/4x3/ag.svg);
}

.fi-ag.fis {
    background-image: url(../flags/1x1/ag.svg);
}

.fi-ai {
    background-image: url(../flags/4x3/ai.svg);
}

.fi-ai.fis {
    background-image: url(../flags/1x1/ai.svg);
}

.fi-al {
    background-image: url(../flags/4x3/al.svg);
}

.fi-al.fis {
    background-image: url(../flags/1x1/al.svg);
}

.fi-am {
    background-image: url(../flags/4x3/am.svg);
}

.fi-am.fis {
    background-image: url(../flags/1x1/am.svg);
}

.fi-ao {
    background-image: url(../flags/4x3/ao.svg);
}

.fi-ao.fis {
    background-image: url(../flags/1x1/ao.svg);
}

.fi-aq {
    background-image: url(../flags/4x3/aq.svg);
}

.fi-aq.fis {
    background-image: url(../flags/1x1/aq.svg);
}

.fi-ar {
    background-image: url(../flags/4x3/ar.svg);
}

.fi-ar.fis {
    background-image: url(../flags/1x1/ar.svg);
}

.fi-as {
    background-image: url(../flags/4x3/as.svg);
}

.fi-as.fis {
    background-image: url(../flags/1x1/as.svg);
}

.fi-at {
    background-image: url(../flags/4x3/at.svg);
}

.fi-at.fis {
    background-image: url(../flags/1x1/at.svg);
}

.fi-au {
    background-image: url(../flags/4x3/au.svg);
}

.fi-au.fis {
    background-image: url(../flags/1x1/au.svg);
}

.fi-aw {
    background-image: url(../flags/4x3/aw.svg);
}

.fi-aw.fis {
    background-image: url(../flags/1x1/aw.svg);
}

.fi-ax {
    background-image: url(../flags/4x3/ax.svg);
}

.fi-ax.fis {
    background-image: url(../flags/1x1/ax.svg);
}

.fi-az {
    background-image: url(../flags/4x3/az.svg);
}

.fi-az.fis {
    background-image: url(../flags/1x1/az.svg);
}

.fi-ba {
    background-image: url(../flags/4x3/ba.svg);
}

.fi-ba.fis {
    background-image: url(../flags/1x1/ba.svg);
}

.fi-bb {
    background-image: url(../flags/4x3/bb.svg);
}

.fi-bb.fis {
    background-image: url(../flags/1x1/bb.svg);
}

.fi-bd {
    background-image: url(../flags/4x3/bd.svg);
}

.fi-bd.fis {
    background-image: url(../flags/1x1/bd.svg);
}

.fi-be {
    background-image: url(../flags/4x3/be.svg);
}

.fi-be.fis {
    background-image: url(../flags/1x1/be.svg);
}

.fi-bf {
    background-image: url(../flags/4x3/bf.svg);
}

.fi-bf.fis {
    background-image: url(../flags/1x1/bf.svg);
}

.fi-bg {
    background-image: url(../flags/4x3/bg.svg);
}

.fi-bg.fis {
    background-image: url(../flags/1x1/bg.svg);
}

.fi-bh {
    background-image: url(../flags/4x3/bh.svg);
}

.fi-bh.fis {
    background-image: url(../flags/1x1/bh.svg);
}

.fi-bi {
    background-image: url(../flags/4x3/bi.svg);
}

.fi-bi.fis {
    background-image: url(../flags/1x1/bi.svg);
}

.fi-bj {
    background-image: url(../flags/4x3/bj.svg);
}

.fi-bj.fis {
    background-image: url(../flags/1x1/bj.svg);
}

.fi-bl {
    background-image: url(../flags/4x3/bl.svg);
}

.fi-bl.fis {
    background-image: url(../flags/1x1/bl.svg);
}

.fi-bm {
    background-image: url(../flags/4x3/bm.svg);
}

.fi-bm.fis {
    background-image: url(../flags/1x1/bm.svg);
}

.fi-bn {
    background-image: url(../flags/4x3/bn.svg);
}

.fi-bn.fis {
    background-image: url(../flags/1x1/bn.svg);
}

.fi-bo {
    background-image: url(../flags/4x3/bo.svg);
}

.fi-bo.fis {
    background-image: url(../flags/1x1/bo.svg);
}

.fi-bq {
    background-image: url(../flags/4x3/bq.svg);
}

.fi-bq.fis {
    background-image: url(../flags/1x1/bq.svg);
}

.fi-br {
    background-image: url(../flags/4x3/br.svg);
}

.fi-br.fis {
    background-image: url(../flags/1x1/br.svg);
}

.fi-bs {
    background-image: url(../flags/4x3/bs.svg);
}

.fi-bs.fis {
    background-image: url(../flags/1x1/bs.svg);
}

.fi-bt {
    background-image: url(../flags/4x3/bt.svg);
}

.fi-bt.fis {
    background-image: url(../flags/1x1/bt.svg);
}

.fi-bv {
    background-image: url(../flags/4x3/bv.svg);
}

.fi-bv.fis {
    background-image: url(../flags/1x1/bv.svg);
}

.fi-bw {
    background-image: url(../flags/4x3/bw.svg);
}

.fi-bw.fis {
    background-image: url(../flags/1x1/bw.svg);
}

.fi-by {
    background-image: url(../flags/4x3/by.svg);
}

.fi-by.fis {
    background-image: url(../flags/1x1/by.svg);
}

.fi-bz {
    background-image: url(../flags/4x3/bz.svg);
}

.fi-bz.fis {
    background-image: url(../flags/1x1/bz.svg);
}

.fi-ca {
    background-image: url(../flags/4x3/ca.svg);
}

.fi-ca.fis {
    background-image: url(../flags/1x1/ca.svg);
}

.fi-cc {
    background-image: url(../flags/4x3/cc.svg);
}

.fi-cc.fis {
    background-image: url(../flags/1x1/cc.svg);
}

.fi-cd {
    background-image: url(../flags/4x3/cd.svg);
}

.fi-cd.fis {
    background-image: url(../flags/1x1/cd.svg);
}

.fi-cf {
    background-image: url(../flags/4x3/cf.svg);
}

.fi-cf.fis {
    background-image: url(../flags/1x1/cf.svg);
}

.fi-cg {
    background-image: url(../flags/4x3/cg.svg);
}

.fi-cg.fis {
    background-image: url(../flags/1x1/cg.svg);
}

.fi-ch {
    background-image: url(../flags/4x3/ch.svg);
}

.fi-ch.fis {
    background-image: url(../flags/1x1/ch.svg);
}

.fi-ci {
    background-image: url(../flags/4x3/ci.svg);
}

.fi-ci.fis {
    background-image: url(../flags/1x1/ci.svg);
}

.fi-ck {
    background-image: url(../flags/4x3/ck.svg);
}

.fi-ck.fis {
    background-image: url(../flags/1x1/ck.svg);
}

.fi-cl {
    background-image: url(../flags/4x3/cl.svg);
}

.fi-cl.fis {
    background-image: url(../flags/1x1/cl.svg);
}

.fi-cm {
    background-image: url(../flags/4x3/cm.svg);
}

.fi-cm.fis {
    background-image: url(../flags/1x1/cm.svg);
}

.fi-cn {
    background-image: url(../flags/4x3/cn.svg);
}

.fi-cn.fis {
    background-image: url(../flags/1x1/cn.svg);
}

.fi-co {
    background-image: url(../flags/4x3/co.svg);
}

.fi-co.fis {
    background-image: url(../flags/1x1/co.svg);
}

.fi-cr {
    background-image: url(../flags/4x3/cr.svg);
}

.fi-cr.fis {
    background-image: url(../flags/1x1/cr.svg);
}

.fi-cu {
    background-image: url(../flags/4x3/cu.svg);
}

.fi-cu.fis {
    background-image: url(../flags/1x1/cu.svg);
}

.fi-cv {
    background-image: url(../flags/4x3/cv.svg);
}

.fi-cv.fis {
    background-image: url(../flags/1x1/cv.svg);
}

.fi-cw {
    background-image: url(../flags/4x3/cw.svg);
}

.fi-cw.fis {
    background-image: url(../flags/1x1/cw.svg);
}

.fi-cx {
    background-image: url(../flags/4x3/cx.svg);
}

.fi-cx.fis {
    background-image: url(../flags/1x1/cx.svg);
}

.fi-cy {
    background-image: url(../flags/4x3/cy.svg);
}

.fi-cy.fis {
    background-image: url(../flags/1x1/cy.svg);
}

.fi-cz {
    background-image: url(../flags/4x3/cz.svg);
}

.fi-cz.fis {
    background-image: url(../flags/1x1/cz.svg);
}

.fi-de {
    background-image: url(../flags/4x3/de.svg);
}

.fi-de.fis {
    background-image: url(../flags/1x1/de.svg);
}

.fi-dj {
    background-image: url(../flags/4x3/dj.svg);
}

.fi-dj.fis {
    background-image: url(../flags/1x1/dj.svg);
}

.fi-dk {
    background-image: url(../flags/4x3/dk.svg);
}

.fi-dk.fis {
    background-image: url(../flags/1x1/dk.svg);
}

.fi-dm {
    background-image: url(../flags/4x3/dm.svg);
}

.fi-dm.fis {
    background-image: url(../flags/1x1/dm.svg);
}

.fi-do {
    background-image: url(../flags/4x3/do.svg);
}

.fi-do.fis {
    background-image: url(../flags/1x1/do.svg);
}

.fi-dz {
    background-image: url(../flags/4x3/dz.svg);
}

.fi-dz.fis {
    background-image: url(../flags/1x1/dz.svg);
}

.fi-ec {
    background-image: url(../flags/4x3/ec.svg);
}

.fi-ec.fis {
    background-image: url(../flags/1x1/ec.svg);
}

.fi-ee {
    background-image: url(../flags/4x3/ee.svg);
}

.fi-ee.fis {
    background-image: url(../flags/1x1/ee.svg);
}

.fi-eg {
    background-image: url(../flags/4x3/eg.svg);
}

.fi-eg.fis {
    background-image: url(../flags/1x1/eg.svg);
}

.fi-eh {
    background-image: url(../flags/4x3/eh.svg);
}

.fi-eh.fis {
    background-image: url(../flags/1x1/eh.svg);
}

.fi-er {
    background-image: url(../flags/4x3/er.svg);
}

.fi-er.fis {
    background-image: url(../flags/1x1/er.svg);
}

.fi-es {
    background-image: url(../flags/4x3/es.svg);
}

.fi-es.fis {
    background-image: url(../flags/1x1/es.svg);
}

.fi-et {
    background-image: url(../flags/4x3/et.svg);
}

.fi-et.fis {
    background-image: url(../flags/1x1/et.svg);
}

.fi-fi {
    background-image: url(../flags/4x3/fi.svg);
}

.fi-fi.fis {
    background-image: url(../flags/1x1/fi.svg);
}

.fi-fj {
    background-image: url(../flags/4x3/fj.svg);
}

.fi-fj.fis {
    background-image: url(../flags/1x1/fj.svg);
}

.fi-fk {
    background-image: url(../flags/4x3/fk.svg);
}

.fi-fk.fis {
    background-image: url(../flags/1x1/fk.svg);
}

.fi-fm {
    background-image: url(../flags/4x3/fm.svg);
}

.fi-fm.fis {
    background-image: url(../flags/1x1/fm.svg);
}

.fi-fo {
    background-image: url(../flags/4x3/fo.svg);
}

.fi-fo.fis {
    background-image: url(../flags/1x1/fo.svg);
}

.fi-fr {
    background-image: url(../flags/4x3/fr.svg);
}

.fi-fr.fis {
    background-image: url(../flags/1x1/fr.svg);
}

.fi-ga {
    background-image: url(../flags/4x3/ga.svg);
}

.fi-ga.fis {
    background-image: url(../flags/1x1/ga.svg);
}

.fi-gb {
    background-image: url(../flags/4x3/gb.svg);
}

.fi-gb.fis {
    background-image: url(../flags/1x1/gb.svg);
}

.fi-gd {
    background-image: url(../flags/4x3/gd.svg);
}

.fi-gd.fis {
    background-image: url(../flags/1x1/gd.svg);
}

.fi-ge {
    background-image: url(../flags/4x3/ge.svg);
}

.fi-ge.fis {
    background-image: url(../flags/1x1/ge.svg);
}

.fi-gf {
    background-image: url(../flags/4x3/gf.svg);
}

.fi-gf.fis {
    background-image: url(../flags/1x1/gf.svg);
}

.fi-gg {
    background-image: url(../flags/4x3/gg.svg);
}

.fi-gg.fis {
    background-image: url(../flags/1x1/gg.svg);
}

.fi-gh {
    background-image: url(../flags/4x3/gh.svg);
}

.fi-gh.fis {
    background-image: url(../flags/1x1/gh.svg);
}

.fi-gi {
    background-image: url(../flags/4x3/gi.svg);
}

.fi-gi.fis {
    background-image: url(../flags/1x1/gi.svg);
}

.fi-gl {
    background-image: url(../flags/4x3/gl.svg);
}

.fi-gl.fis {
    background-image: url(../flags/1x1/gl.svg);
}

.fi-gm {
    background-image: url(../flags/4x3/gm.svg);
}

.fi-gm.fis {
    background-image: url(../flags/1x1/gm.svg);
}

.fi-gn {
    background-image: url(../flags/4x3/gn.svg);
}

.fi-gn.fis {
    background-image: url(../flags/1x1/gn.svg);
}

.fi-gp {
    background-image: url(../flags/4x3/gp.svg);
}

.fi-gp.fis {
    background-image: url(../flags/1x1/gp.svg);
}

.fi-gq {
    background-image: url(../flags/4x3/gq.svg);
}

.fi-gq.fis {
    background-image: url(../flags/1x1/gq.svg);
}

.fi-gr {
    background-image: url(../flags/4x3/gr.svg);
}

.fi-gr.fis {
    background-image: url(../flags/1x1/gr.svg);
}

.fi-gs {
    background-image: url(../flags/4x3/gs.svg);
}

.fi-gs.fis {
    background-image: url(../flags/1x1/gs.svg);
}

.fi-gt {
    background-image: url(../flags/4x3/gt.svg);
}

.fi-gt.fis {
    background-image: url(../flags/1x1/gt.svg);
}

.fi-gu {
    background-image: url(../flags/4x3/gu.svg);
}

.fi-gu.fis {
    background-image: url(../flags/1x1/gu.svg);
}

.fi-gw {
    background-image: url(../flags/4x3/gw.svg);
}

.fi-gw.fis {
    background-image: url(../flags/1x1/gw.svg);
}

.fi-gy {
    background-image: url(../flags/4x3/gy.svg);
}

.fi-gy.fis {
    background-image: url(../flags/1x1/gy.svg);
}

.fi-hk {
    background-image: url(../flags/4x3/hk.svg);
}

.fi-hk.fis {
    background-image: url(../flags/1x1/hk.svg);
}

.fi-hm {
    background-image: url(../flags/4x3/hm.svg);
}

.fi-hm.fis {
    background-image: url(../flags/1x1/hm.svg);
}

.fi-hn {
    background-image: url(../flags/4x3/hn.svg);
}

.fi-hn.fis {
    background-image: url(../flags/1x1/hn.svg);
}

.fi-hr {
    background-image: url(../flags/4x3/hr.svg);
}

.fi-hr.fis {
    background-image: url(../flags/1x1/hr.svg);
}

.fi-ht {
    background-image: url(../flags/4x3/ht.svg);
}

.fi-ht.fis {
    background-image: url(../flags/1x1/ht.svg);
}

.fi-hu {
    background-image: url(../flags/4x3/hu.svg);
}

.fi-hu.fis {
    background-image: url(../flags/1x1/hu.svg);
}

.fi-id {
    background-image: url(../flags/4x3/id.svg);
}

.fi-id.fis {
    background-image: url(../flags/1x1/id.svg);
}

.fi-ie {
    background-image: url(../flags/4x3/ie.svg);
}

.fi-ie.fis {
    background-image: url(../flags/1x1/ie.svg);
}

.fi-il {
    background-image: url(../flags/4x3/il.svg);
}

.fi-il.fis {
    background-image: url(../flags/1x1/il.svg);
}

.fi-im {
    background-image: url(../flags/4x3/im.svg);
}

.fi-im.fis {
    background-image: url(../flags/1x1/im.svg);
}

.fi-in {
    background-image: url(../flags/4x3/in.svg);
}

.fi-in.fis {
    background-image: url(../flags/1x1/in.svg);
}

.fi-io {
    background-image: url(../flags/4x3/io.svg);
}

.fi-io.fis {
    background-image: url(../flags/1x1/io.svg);
}

.fi-iq {
    background-image: url(../flags/4x3/iq.svg);
}

.fi-iq.fis {
    background-image: url(../flags/1x1/iq.svg);
}

.fi-ir {
    background-image: url(../flags/4x3/ir.svg);
}

.fi-ir.fis {
    background-image: url(../flags/1x1/ir.svg);
}

.fi-is {
    background-image: url(../flags/4x3/is.svg);
}

.fi-is.fis {
    background-image: url(../flags/1x1/is.svg);
}

.fi-it {
    background-image: url(../flags/4x3/it.svg);
}

.fi-it.fis {
    background-image: url(../flags/1x1/it.svg);
}

.fi-je {
    background-image: url(../flags/4x3/je.svg);
}

.fi-je.fis {
    background-image: url(../flags/1x1/je.svg);
}

.fi-jm {
    background-image: url(../flags/4x3/jm.svg);
}

.fi-jm.fis {
    background-image: url(../flags/1x1/jm.svg);
}

.fi-jo {
    background-image: url(../flags/4x3/jo.svg);
}

.fi-jo.fis {
    background-image: url(../flags/1x1/jo.svg);
}

.fi-jp {
    background-image: url(../flags/4x3/jp.svg);
}

.fi-jp.fis {
    background-image: url(../flags/1x1/jp.svg);
}

.fi-ke {
    background-image: url(../flags/4x3/ke.svg);
}

.fi-ke.fis {
    background-image: url(../flags/1x1/ke.svg);
}

.fi-kg {
    background-image: url(../flags/4x3/kg.svg);
}

.fi-kg.fis {
    background-image: url(../flags/1x1/kg.svg);
}

.fi-kh {
    background-image: url(../flags/4x3/kh.svg);
}

.fi-kh.fis {
    background-image: url(../flags/1x1/kh.svg);
}

.fi-ki {
    background-image: url(../flags/4x3/ki.svg);
}

.fi-ki.fis {
    background-image: url(../flags/1x1/ki.svg);
}

.fi-km {
    background-image: url(../flags/4x3/km.svg);
}

.fi-km.fis {
    background-image: url(../flags/1x1/km.svg);
}

.fi-kn {
    background-image: url(../flags/4x3/kn.svg);
}

.fi-kn.fis {
    background-image: url(../flags/1x1/kn.svg);
}

.fi-kp {
    background-image: url(../flags/4x3/kp.svg);
}

.fi-kp.fis {
    background-image: url(../flags/1x1/kp.svg);
}

.fi-kr {
    background-image: url(../flags/4x3/kr.svg);
}

.fi-kr.fis {
    background-image: url(../flags/1x1/kr.svg);
}

.fi-kw {
    background-image: url(../flags/4x3/kw.svg);
}

.fi-kw.fis {
    background-image: url(../flags/1x1/kw.svg);
}

.fi-ky {
    background-image: url(../flags/4x3/ky.svg);
}

.fi-ky.fis {
    background-image: url(../flags/1x1/ky.svg);
}

.fi-kz {
    background-image: url(../flags/4x3/kz.svg);
}

.fi-kz.fis {
    background-image: url(../flags/1x1/kz.svg);
}

.fi-la {
    background-image: url(../flags/4x3/la.svg);
}

.fi-la.fis {
    background-image: url(../flags/1x1/la.svg);
}

.fi-lb {
    background-image: url(../flags/4x3/lb.svg);
}

.fi-lb.fis {
    background-image: url(../flags/1x1/lb.svg);
}

.fi-lc {
    background-image: url(../flags/4x3/lc.svg);
}

.fi-lc.fis {
    background-image: url(../flags/1x1/lc.svg);
}

.fi-li {
    background-image: url(../flags/4x3/li.svg);
}

.fi-li.fis {
    background-image: url(../flags/1x1/li.svg);
}

.fi-lk {
    background-image: url(../flags/4x3/lk.svg);
}

.fi-lk.fis {
    background-image: url(../flags/1x1/lk.svg);
}

.fi-lr {
    background-image: url(../flags/4x3/lr.svg);
}

.fi-lr.fis {
    background-image: url(../flags/1x1/lr.svg);
}

.fi-ls {
    background-image: url(../flags/4x3/ls.svg);
}

.fi-ls.fis {
    background-image: url(../flags/1x1/ls.svg);
}

.fi-lt {
    background-image: url(../flags/4x3/lt.svg);
}

.fi-lt.fis {
    background-image: url(../flags/1x1/lt.svg);
}

.fi-lu {
    background-image: url(../flags/4x3/lu.svg);
}

.fi-lu.fis {
    background-image: url(../flags/1x1/lu.svg);
}

.fi-lv {
    background-image: url(../flags/4x3/lv.svg);
}

.fi-lv.fis {
    background-image: url(../flags/1x1/lv.svg);
}

.fi-ly {
    background-image: url(../flags/4x3/ly.svg);
}

.fi-ly.fis {
    background-image: url(../flags/1x1/ly.svg);
}

.fi-ma {
    background-image: url(../flags/4x3/ma.svg);
}

.fi-ma.fis {
    background-image: url(../flags/1x1/ma.svg);
}

.fi-mc {
    background-image: url(../flags/4x3/mc.svg);
}

.fi-mc.fis {
    background-image: url(../flags/1x1/mc.svg);
}

.fi-md {
    background-image: url(../flags/4x3/md.svg);
}

.fi-md.fis {
    background-image: url(../flags/1x1/md.svg);
}

.fi-me {
    background-image: url(../flags/4x3/me.svg);
}

.fi-me.fis {
    background-image: url(../flags/1x1/me.svg);
}

.fi-mf {
    background-image: url(../flags/4x3/mf.svg);
}

.fi-mf.fis {
    background-image: url(../flags/1x1/mf.svg);
}

.fi-mg {
    background-image: url(../flags/4x3/mg.svg);
}

.fi-mg.fis {
    background-image: url(../flags/1x1/mg.svg);
}

.fi-mh {
    background-image: url(../flags/4x3/mh.svg);
}

.fi-mh.fis {
    background-image: url(../flags/1x1/mh.svg);
}

.fi-mk {
    background-image: url(../flags/4x3/mk.svg);
}

.fi-mk.fis {
    background-image: url(../flags/1x1/mk.svg);
}

.fi-ml {
    background-image: url(../flags/4x3/ml.svg);
}

.fi-ml.fis {
    background-image: url(../flags/1x1/ml.svg);
}

.fi-mm {
    background-image: url(../flags/4x3/mm.svg);
}

.fi-mm.fis {
    background-image: url(../flags/1x1/mm.svg);
}

.fi-mn {
    background-image: url(../flags/4x3/mn.svg);
}

.fi-mn.fis {
    background-image: url(../flags/1x1/mn.svg);
}

.fi-mo {
    background-image: url(../flags/4x3/mo.svg);
}

.fi-mo.fis {
    background-image: url(../flags/1x1/mo.svg);
}

.fi-mp {
    background-image: url(../flags/4x3/mp.svg);
}

.fi-mp.fis {
    background-image: url(../flags/1x1/mp.svg);
}

.fi-mq {
    background-image: url(../flags/4x3/mq.svg);
}

.fi-mq.fis {
    background-image: url(../flags/1x1/mq.svg);
}

.fi-mr {
    background-image: url(../flags/4x3/mr.svg);
}

.fi-mr.fis {
    background-image: url(../flags/1x1/mr.svg);
}

.fi-ms {
    background-image: url(../flags/4x3/ms.svg);
}

.fi-ms.fis {
    background-image: url(../flags/1x1/ms.svg);
}

.fi-mt {
    background-image: url(../flags/4x3/mt.svg);
}

.fi-mt.fis {
    background-image: url(../flags/1x1/mt.svg);
}

.fi-mu {
    background-image: url(../flags/4x3/mu.svg);
}

.fi-mu.fis {
    background-image: url(../flags/1x1/mu.svg);
}

.fi-mv {
    background-image: url(../flags/4x3/mv.svg);
}

.fi-mv.fis {
    background-image: url(../flags/1x1/mv.svg);
}

.fi-mw {
    background-image: url(../flags/4x3/mw.svg);
}

.fi-mw.fis {
    background-image: url(../flags/1x1/mw.svg);
}

.fi-mx {
    background-image: url(../flags/4x3/mx.svg);
}

.fi-mx.fis {
    background-image: url(../flags/1x1/mx.svg);
}

.fi-my {
    background-image: url(../flags/4x3/my.svg);
}

.fi-my.fis {
    background-image: url(../flags/1x1/my.svg);
}

.fi-mz {
    background-image: url(../flags/4x3/mz.svg);
}

.fi-mz.fis {
    background-image: url(../flags/1x1/mz.svg);
}

.fi-na {
    background-image: url(../flags/4x3/na.svg);
}

.fi-na.fis {
    background-image: url(../flags/1x1/na.svg);
}

.fi-nc {
    background-image: url(../flags/4x3/nc.svg);
}

.fi-nc.fis {
    background-image: url(../flags/1x1/nc.svg);
}

.fi-ne {
    background-image: url(../flags/4x3/ne.svg);
}

.fi-ne.fis {
    background-image: url(../flags/1x1/ne.svg);
}

.fi-nf {
    background-image: url(../flags/4x3/nf.svg);
}

.fi-nf.fis {
    background-image: url(../flags/1x1/nf.svg);
}

.fi-ng {
    background-image: url(../flags/4x3/ng.svg);
}

.fi-ng.fis {
    background-image: url(../flags/1x1/ng.svg);
}

.fi-ni {
    background-image: url(../flags/4x3/ni.svg);
}

.fi-ni.fis {
    background-image: url(../flags/1x1/ni.svg);
}

.fi-nl {
    background-image: url(../flags/4x3/nl.svg);
}

.fi-nl.fis {
    background-image: url(../flags/1x1/nl.svg);
}

.fi-no {
    background-image: url(../flags/4x3/no.svg);
}

.fi-no.fis {
    background-image: url(../flags/1x1/no.svg);
}

.fi-np {
    background-image: url(../flags/4x3/np.svg);
}

.fi-np.fis {
    background-image: url(../flags/1x1/np.svg);
}

.fi-nr {
    background-image: url(../flags/4x3/nr.svg);
}

.fi-nr.fis {
    background-image: url(../flags/1x1/nr.svg);
}

.fi-nu {
    background-image: url(../flags/4x3/nu.svg);
}

.fi-nu.fis {
    background-image: url(../flags/1x1/nu.svg);
}

.fi-nz {
    background-image: url(../flags/4x3/nz.svg);
}

.fi-nz.fis {
    background-image: url(../flags/1x1/nz.svg);
}

.fi-om {
    background-image: url(../flags/4x3/om.svg);
}

.fi-om.fis {
    background-image: url(../flags/1x1/om.svg);
}

.fi-pa {
    background-image: url(../flags/4x3/pa.svg);
}

.fi-pa.fis {
    background-image: url(../flags/1x1/pa.svg);
}

.fi-pe {
    background-image: url(../flags/4x3/pe.svg);
}

.fi-pe.fis {
    background-image: url(../flags/1x1/pe.svg);
}

.fi-pf {
    background-image: url(../flags/4x3/pf.svg);
}

.fi-pf.fis {
    background-image: url(../flags/1x1/pf.svg);
}

.fi-pg {
    background-image: url(../flags/4x3/pg.svg);
}

.fi-pg.fis {
    background-image: url(../flags/1x1/pg.svg);
}

.fi-ph {
    background-image: url(../flags/4x3/ph.svg);
}

.fi-ph.fis {
    background-image: url(../flags/1x1/ph.svg);
}

.fi-pk {
    background-image: url(../flags/4x3/pk.svg);
}

.fi-pk.fis {
    background-image: url(../flags/1x1/pk.svg);
}

.fi-pl {
    background-image: url(../flags/4x3/pl.svg);
}

.fi-pl.fis {
    background-image: url(../flags/1x1/pl.svg);
}

.fi-pm {
    background-image: url(../flags/4x3/pm.svg);
}

.fi-pm.fis {
    background-image: url(../flags/1x1/pm.svg);
}

.fi-pn {
    background-image: url(../flags/4x3/pn.svg);
}

.fi-pn.fis {
    background-image: url(../flags/1x1/pn.svg);
}

.fi-pr {
    background-image: url(../flags/4x3/pr.svg);
}

.fi-pr.fis {
    background-image: url(../flags/1x1/pr.svg);
}

.fi-ps {
    background-image: url(../flags/4x3/ps.svg);
}

.fi-ps.fis {
    background-image: url(../flags/1x1/ps.svg);
}

.fi-pt {
    background-image: url(../flags/4x3/pt.svg);
}

.fi-pt.fis {
    background-image: url(../flags/1x1/pt.svg);
}

.fi-pw {
    background-image: url(../flags/4x3/pw.svg);
}

.fi-pw.fis {
    background-image: url(../flags/1x1/pw.svg);
}

.fi-py {
    background-image: url(../flags/4x3/py.svg);
}

.fi-py.fis {
    background-image: url(../flags/1x1/py.svg);
}

.fi-qa {
    background-image: url(../flags/4x3/qa.svg);
}

.fi-qa.fis {
    background-image: url(../flags/1x1/qa.svg);
}

.fi-re {
    background-image: url(../flags/4x3/re.svg);
}

.fi-re.fis {
    background-image: url(../flags/1x1/re.svg);
}

.fi-ro {
    background-image: url(../flags/4x3/ro.svg);
}

.fi-ro.fis {
    background-image: url(../flags/1x1/ro.svg);
}

.fi-rs {
    background-image: url(../flags/4x3/rs.svg);
}

.fi-rs.fis {
    background-image: url(../flags/1x1/rs.svg);
}

.fi-ru {
    background-image: url(../flags/4x3/ru.svg);
}

.fi-ru.fis {
    background-image: url(../flags/1x1/ru.svg);
}

.fi-rw {
    background-image: url(../flags/4x3/rw.svg);
}

.fi-rw.fis {
    background-image: url(../flags/1x1/rw.svg);
}

.fi-sa {
    background-image: url(../flags/4x3/sa.svg);
}

.fi-sa.fis {
    background-image: url(../flags/1x1/sa.svg);
}

.fi-sb {
    background-image: url(../flags/4x3/sb.svg);
}

.fi-sb.fis {
    background-image: url(../flags/1x1/sb.svg);
}

.fi-sc {
    background-image: url(../flags/4x3/sc.svg);
}

.fi-sc.fis {
    background-image: url(../flags/1x1/sc.svg);
}

.fi-sd {
    background-image: url(../flags/4x3/sd.svg);
}

.fi-sd.fis {
    background-image: url(../flags/1x1/sd.svg);
}

.fi-se {
    background-image: url(../flags/4x3/se.svg);
}

.fi-se.fis {
    background-image: url(../flags/1x1/se.svg);
}

.fi-sg {
    background-image: url(../flags/4x3/sg.svg);
}

.fi-sg.fis {
    background-image: url(../flags/1x1/sg.svg);
}

.fi-sh {
    background-image: url(../flags/4x3/sh.svg);
}

.fi-sh.fis {
    background-image: url(../flags/1x1/sh.svg);
}

.fi-si {
    background-image: url(../flags/4x3/si.svg);
}

.fi-si.fis {
    background-image: url(../flags/1x1/si.svg);
}

.fi-sj {
    background-image: url(../flags/4x3/sj.svg);
}

.fi-sj.fis {
    background-image: url(../flags/1x1/sj.svg);
}

.fi-sk {
    background-image: url(../flags/4x3/sk.svg);
}

.fi-sk.fis {
    background-image: url(../flags/1x1/sk.svg);
}

.fi-sl {
    background-image: url(../flags/4x3/sl.svg);
}

.fi-sl.fis {
    background-image: url(../flags/1x1/sl.svg);
}

.fi-sm {
    background-image: url(../flags/4x3/sm.svg);
}

.fi-sm.fis {
    background-image: url(../flags/1x1/sm.svg);
}

.fi-sn {
    background-image: url(../flags/4x3/sn.svg);
}

.fi-sn.fis {
    background-image: url(../flags/1x1/sn.svg);
}

.fi-so {
    background-image: url(../flags/4x3/so.svg);
}

.fi-so.fis {
    background-image: url(../flags/1x1/so.svg);
}

.fi-sr {
    background-image: url(../flags/4x3/sr.svg);
}

.fi-sr.fis {
    background-image: url(../flags/1x1/sr.svg);
}

.fi-ss {
    background-image: url(../flags/4x3/ss.svg);
}

.fi-ss.fis {
    background-image: url(../flags/1x1/ss.svg);
}

.fi-st {
    background-image: url(../flags/4x3/st.svg);
}

.fi-st.fis {
    background-image: url(../flags/1x1/st.svg);
}

.fi-sv {
    background-image: url(../flags/4x3/sv.svg);
}

.fi-sv.fis {
    background-image: url(../flags/1x1/sv.svg);
}

.fi-sx {
    background-image: url(../flags/4x3/sx.svg);
}

.fi-sx.fis {
    background-image: url(../flags/1x1/sx.svg);
}

.fi-sy {
    background-image: url(../flags/4x3/sy.svg);
}

.fi-sy.fis {
    background-image: url(../flags/1x1/sy.svg);
}

.fi-sz {
    background-image: url(../flags/4x3/sz.svg);
}

.fi-sz.fis {
    background-image: url(../flags/1x1/sz.svg);
}

.fi-tc {
    background-image: url(../flags/4x3/tc.svg);
}

.fi-tc.fis {
    background-image: url(../flags/1x1/tc.svg);
}

.fi-td {
    background-image: url(../flags/4x3/td.svg);
}

.fi-td.fis {
    background-image: url(../flags/1x1/td.svg);
}

.fi-tf {
    background-image: url(../flags/4x3/tf.svg);
}

.fi-tf.fis {
    background-image: url(../flags/1x1/tf.svg);
}

.fi-tg {
    background-image: url(../flags/4x3/tg.svg);
}

.fi-tg.fis {
    background-image: url(../flags/1x1/tg.svg);
}

.fi-th {
    background-image: url(../flags/4x3/th.svg);
}

.fi-th.fis {
    background-image: url(../flags/1x1/th.svg);
}

.fi-tj {
    background-image: url(../flags/4x3/tj.svg);
}

.fi-tj.fis {
    background-image: url(../flags/1x1/tj.svg);
}

.fi-tk {
    background-image: url(../flags/4x3/tk.svg);
}

.fi-tk.fis {
    background-image: url(../flags/1x1/tk.svg);
}

.fi-tl {
    background-image: url(../flags/4x3/tl.svg);
}

.fi-tl.fis {
    background-image: url(../flags/1x1/tl.svg);
}

.fi-tm {
    background-image: url(../flags/4x3/tm.svg);
}

.fi-tm.fis {
    background-image: url(../flags/1x1/tm.svg);
}

.fi-tn {
    background-image: url(../flags/4x3/tn.svg);
}

.fi-tn.fis {
    background-image: url(../flags/1x1/tn.svg);
}

.fi-to {
    background-image: url(../flags/4x3/to.svg);
}

.fi-to.fis {
    background-image: url(../flags/1x1/to.svg);
}

.fi-tr {
    background-image: url(../flags/4x3/tr.svg);
}

.fi-tr.fis {
    background-image: url(../flags/1x1/tr.svg);
}

.fi-tt {
    background-image: url(../flags/4x3/tt.svg);
}

.fi-tt.fis {
    background-image: url(../flags/1x1/tt.svg);
}

.fi-tv {
    background-image: url(../flags/4x3/tv.svg);
}

.fi-tv.fis {
    background-image: url(../flags/1x1/tv.svg);
}

.fi-tw {
    background-image: url(../flags/4x3/tw.svg);
}

.fi-tw.fis {
    background-image: url(../flags/1x1/tw.svg);
}

.fi-tz {
    background-image: url(../flags/4x3/tz.svg);
}

.fi-tz.fis {
    background-image: url(../flags/1x1/tz.svg);
}

.fi-ua {
    background-image: url(../flags/4x3/ua.svg);
}

.fi-ua.fis {
    background-image: url(../flags/1x1/ua.svg);
}

.fi-ug {
    background-image: url(../flags/4x3/ug.svg);
}

.fi-ug.fis {
    background-image: url(../flags/1x1/ug.svg);
}

.fi-um {
    background-image: url(../flags/4x3/um.svg);
}

.fi-um.fis {
    background-image: url(../flags/1x1/um.svg);
}

.fi-us {
    background-image: url(../flags/4x3/us.svg);
}

.fi-us.fis {
    background-image: url(../flags/1x1/us.svg);
}

.fi-uy {
    background-image: url(../flags/4x3/uy.svg);
}

.fi-uy.fis {
    background-image: url(../flags/1x1/uy.svg);
}

.fi-uz {
    background-image: url(../flags/4x3/uz.svg);
}

.fi-uz.fis {
    background-image: url(../flags/1x1/uz.svg);
}

.fi-va {
    background-image: url(../flags/4x3/va.svg);
}

.fi-va.fis {
    background-image: url(../flags/1x1/va.svg);
}

.fi-vc {
    background-image: url(../flags/4x3/vc.svg);
}

.fi-vc.fis {
    background-image: url(../flags/1x1/vc.svg);
}

.fi-ve {
    background-image: url(../flags/4x3/ve.svg);
}

.fi-ve.fis {
    background-image: url(../flags/1x1/ve.svg);
}

.fi-vg {
    background-image: url(../flags/4x3/vg.svg);
}

.fi-vg.fis {
    background-image: url(../flags/1x1/vg.svg);
}

.fi-vi {
    background-image: url(../flags/4x3/vi.svg);
}

.fi-vi.fis {
    background-image: url(../flags/1x1/vi.svg);
}

.fi-vn {
    background-image: url(../flags/4x3/vn.svg);
}

.fi-vn.fis {
    background-image: url(../flags/1x1/vn.svg);
}

.fi-vu {
    background-image: url(../flags/4x3/vu.svg);
}

.fi-vu.fis {
    background-image: url(../flags/1x1/vu.svg);
}

.fi-wf {
    background-image: url(../flags/4x3/wf.svg);
}

.fi-wf.fis {
    background-image: url(../flags/1x1/wf.svg);
}

.fi-ws {
    background-image: url(../flags/4x3/ws.svg);
}

.fi-ws.fis {
    background-image: url(../flags/1x1/ws.svg);
}

.fi-ye {
    background-image: url(../flags/4x3/ye.svg);
}

.fi-ye.fis {
    background-image: url(../flags/1x1/ye.svg);
}

.fi-yt {
    background-image: url(../flags/4x3/yt.svg);
}

.fi-yt.fis {
    background-image: url(../flags/1x1/yt.svg);
}

.fi-za {
    background-image: url(../flags/4x3/za.svg);
}

.fi-za.fis {
    background-image: url(../flags/1x1/za.svg);
}

.fi-zm {
    background-image: url(../flags/4x3/zm.svg);
}

.fi-zm.fis {
    background-image: url(../flags/1x1/zm.svg);
}

.fi-zw {
    background-image: url(../flags/4x3/zw.svg);
}

.fi-zw.fis {
    background-image: url(../flags/1x1/zw.svg);
}

.fi-arab {
    background-image: url(../flags/4x3/arab.svg);
}

.fi-arab.fis {
    background-image: url(../flags/1x1/arab.svg);
}

.fi-cefta {
    background-image: url(../flags/4x3/cefta.svg);
}

.fi-cefta.fis {
    background-image: url(../flags/1x1/cefta.svg);
}

.fi-cp {
    background-image: url(../flags/4x3/cp.svg);
}

.fi-cp.fis {
    background-image: url(../flags/1x1/cp.svg);
}

.fi-dg {
    background-image: url(../flags/4x3/dg.svg);
}

.fi-dg.fis {
    background-image: url(../flags/1x1/dg.svg);
}

.fi-eac {
    background-image: url(../flags/4x3/eac.svg);
}

.fi-eac.fis {
    background-image: url(../flags/1x1/eac.svg);
}

.fi-es-ct {
    background-image: url(../flags/4x3/es-ct.svg);
}

.fi-es-ct.fis {
    background-image: url(../flags/1x1/es-ct.svg);
}

.fi-es-ga {
    background-image: url(../flags/4x3/es-ga.svg);
}

.fi-es-ga.fis {
    background-image: url(../flags/1x1/es-ga.svg);
}

.fi-es-pv {
    background-image: url(../flags/4x3/es-pv.svg);
}

.fi-es-pv.fis {
    background-image: url(../flags/1x1/es-pv.svg);
}

.fi-eu {
    background-image: url(../flags/4x3/eu.svg);
}

.fi-eu.fis {
    background-image: url(../flags/1x1/eu.svg);
}

.fi-gb-eng {
    background-image: url(../flags/4x3/gb-eng.svg);
}

.fi-gb-eng.fis {
    background-image: url(../flags/1x1/gb-eng.svg);
}

.fi-gb-nir {
    background-image: url(../flags/4x3/gb-nir.svg);
}

.fi-gb-nir.fis {
    background-image: url(../flags/1x1/gb-nir.svg);
}

.fi-gb-sct {
    background-image: url(../flags/4x3/gb-sct.svg);
}

.fi-gb-sct.fis {
    background-image: url(../flags/1x1/gb-sct.svg);
}

.fi-gb-wls {
    background-image: url(../flags/4x3/gb-wls.svg);
}

.fi-gb-wls.fis {
    background-image: url(../flags/1x1/gb-wls.svg);
}

.fi-ic {
    background-image: url(../flags/4x3/ic.svg);
}

.fi-ic.fis {
    background-image: url(../flags/1x1/ic.svg);
}

.fi-pc {
    background-image: url(../flags/4x3/pc.svg);
}

.fi-pc.fis {
    background-image: url(../flags/1x1/pc.svg);
}

.fi-sh-ac {
    background-image: url(../flags/4x3/sh-ac.svg);
}

.fi-sh-ac.fis {
    background-image: url(../flags/1x1/sh-ac.svg);
}

.fi-sh-hl {
    background-image: url(../flags/4x3/sh-hl.svg);
}

.fi-sh-hl.fis {
    background-image: url(../flags/1x1/sh-hl.svg);
}

.fi-sh-ta {
    background-image: url(../flags/4x3/sh-ta.svg);
}

.fi-sh-ta.fis {
    background-image: url(../flags/1x1/sh-ta.svg);
}

.fi-un {
    background-image: url(../flags/4x3/un.svg);
}

.fi-un.fis {
    background-image: url(../flags/1x1/un.svg);
}

.fi-xk {
    background-image: url(../flags/4x3/xk.svg);
}

.fi-xk.fis {
    background-image: url(../flags/1x1/xk.svg);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--gutter);
    -webkit-tap-highlight-color: transparent;
}

@media screen and (max-width: 781px) {

html {
        scroll-padding-top: 80px
}
    }

body {
    --swup-fade-theme-duration: 0.4s;
    overflow-x: hidden;
    background-color: var(--color-fog);

    /* allw for sticky footer */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

html.is-changing .transition-fade {
    transition: opacity 0.25s;
    opacity: 1;
}

html.is-animating .transition-fade {
    opacity: 0;
}
