<!-- start Simple Custom CSS and JS -->
<style type="text/css">
#fifa-campaign {
    section {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    h1, h2, h3, h4, h5, h6 {
        margin-bottom: 1rem;
        padding: 1rem 1rem 0.5rem;
        border: 2px solid black;
        font-family: 'Bebas Neue', sans-serif;
        font-weight: 400;
        font-style: normal;
        line-height: 1;
        align-self: center;
    }

    h1 {
        font-weight: bold;
        font-size: 3rem;

        em {
            color: white;
            font-style: normal;
        }
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.8rem;
    }
    h4 {
        font-size: 1.6rem;
    }

    p {
        margin: 0.25rem 0;
    }

    ul {
        list-style-type: disc;

        li {
            margin-left: 2rem;
            padding-left: 0;
            background-image: none;
        }

        li::marker {
            color: #fbac00;
        }
    }

    ol {
        li::before {
            color: black;
            background-color: #fbac00;
        }
    }

    /* Classes */
    .tabs {
        display: flex;
        flex-direction: row;
        justify-content: center;

        &#tbnav {
            gap: 4rem;
        }

        &#countries {
            gap: 2rem;
        }

        * {
            cursor: pointer;
            opacity: 0.6;

            &:hover {
                opacity: 1;
            }

            &.active {
                opacity: 1;
            }
        }
    }

    .bg-yellow {
        display: inline-block;
        margin-top: 1rem;
        color: black;
        background-color: #fbac00;

        transform: rotate(-3deg);
        -webkit-transform: rotate(-3deg);
        -moz-transform: rotate(-3deg);
        -ms-transform: rotate(-3deg);
        -o-transform: rotate(-3deg);

        em, strong {
            color: white;
        }
    }

    .bg-black {
        color: white;
        background-color: black;

        em, strong {
            color: #fbac00;
        }
    }

    .bg-code {
        color: black;
        background-color: #D6DB2A;
    }

    .button {
        cursor: pointer;
        margin: 0.3rem auto 1rem;
        display: inline-block;
        background-color: #fbac00;
        color: black !important;
        border: 2px solid black;
        border-radius: 0;
        font-size: 1.2rem;
        text-transform: uppercase;
        line-height: 1.5rem;
        letter-spacing: normal;

        &:hover {
            color: white !important;
        }
    }

    .join {
        color: black !important;
        background-color: #D6DB2A;

        em {
            color: black !important;
        }
    }

    .code-logo {
        display: flex;

        a {
            margin: 0 auto;
        }

        img {
            max-width: 200px;
        }
    }

    .country-info {
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.5rem;
    }

    th, td {
        padding: 0.25rem 0.25rem;
    }

    th {
        min-width: 160px;
    }

    /* Desktop mods */
    @media (min-width: 601px) {
        padding: 2rem;

        h1 {
            font-size: 5rem;
        }
        h2 {
            font-size: 4rem;
        }
        h3 {
            font-size: 3.6rem;
        }
        .long {
            font-size: 2.4rem;
        }
        th, td {
            padding: 0.5rem 1rem;
        }
        .two-col {
            display: flex;
            flex-flow: row wrap;
            width: 100%;

            .subcol {
                display: flex;
                flex-direction: column;
                flex-basis: 100%;
                flex: 1;

                ul {
                    margin-top: 0 !important;
                }
            }
        }
    }

    /* Mobile mods */
    @media (max-width: 600px) {
        .dt-only {
            display: none;
        }
    }

    /* Image adjusts */
    .banner {
        margin: 1rem auto;
        @media (min-width: 1201px) {
            img {
                width: 1200px;
            }
        }
    }
    .logos {
        align-items: center;
        .dtz {
            @media (min-width: 801px) {
                width: 800px;
            }
        }
        .biz-logos {
            display: flex;
            flex-flow: row wrap;
            align-items: center;
            justify-content: center;
            img {
                height: 100px;
                margin: 1rem 2rem;
            }
        }
        .ngo-logos {
            display: flex;
            flex-flow: row wrap;
            align-items: center;
            justify-content: center;
            img {
                height: 100px;
                margin: 1rem 2rem;
            }
        }
        .img-adjust {
            height: calc(100px + 2rem) !important;
            margin: 0 2rem !important;
        }
    }

    /* Form */

    #modal-overlay {
        display: flex;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    #modal {
        background: #fff;
        padding: 1.5rem;
        max-width: 480px;
        width: 100%;
        position: relative;
        border-radius: 6px;
    }

    #close-modal {
        position: absolute;
        top: 8px;
        right: 8px;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: black;

        &:hover {
            color: white;
            background-color: #fbac00;
        }
    }

    .hidden {
        display: none !important;
    }

    #business-form {
        display: flex;
        flex-direction: column;
        line-height: 1;
    }

    .formIntro {
        margin: 1rem 0;
    }

    input {
        color: black;
        border: 2px solid black;

        &:focus-visible {
            outline-color: #fbac00;
        }
    }
}</style>
<!-- end Simple Custom CSS and JS -->
