@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --color-cyan: #0dbfd5; /* Pantone 3115 C*/
    --color-magenta: #905aa6; /* Pantone 2583 C */
    --color-grey-dark: #55565a; /* Pantone Cool Grey 11 C */
    --color-grey-light: #767676; /* Pantone Grey 9 C */
    --color-black: #000000;
    --color-white: #ffffff;
    --red-alert: #ffa494;
    --red-border: #ff3131;
    --hyperlink-blue: #1c3f94;
    --width: 84%;
    --mobile-width: 92%;
    --yellow-banner: #ffbb00;
}

.noto-font, body, button, input, textarea, select {
    font-family: "Noto Sans", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.pageTitle {
    border-bottom: 1px solid var(--color-grey-dark);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2vh;
    gap: 2vh;
}

html, body {
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    height: 100%;
    color: var(--color-grey-dark);
}

#main-content {
    flex: 1;
}
.banner {
    background-color: var(--yellow-banner);
    color: var(--color-black);
    text-align: center;
    font-size: 16px;
    padding: 10px;
}
h1 {
    text-align: center;
    color: var(--color-cyan);
    font-size: 44px;
}

h2 {
    color: var(--color-grey-dark);
    font-size: 24px;
}

label {
    color: var(--color-grey-dark);
}

p {
    color: var(--color-grey-dark);
    font-size: 16px;
}

a {
    color: var(--hyperlink-blue);
}

input, select {
    color: var(--color-black);
    font-size: 16px;
}

    input::placeholder {
        color: var(--color-grey-light);
        font-size: 16px;
    }

    input:not([type="radio"]):not([type="checkbox"]), select {
        min-height: 40px;
    }

footer {
    color: var(--color-grey-dark);
    font-size: 14px;
    font-style: italic;
}

.phsa-footer {
    color: var(--color-grey-dark);
    font-size: 13px;
}

.alert-danger {
    font-size: 16px;
    background-color: var(--red-alert);
    border-color: rgb(192, 38, 45);
    color: black;
}


.alert {
    padding: 15px;
    margin-bottom: 21px;
    border: 2px solid var(--red-border);
    border-radius: 0;
}
.green-alert {
    background-color: #cde8b8;
    border-color: transparent;
}
.text-danger:not(:empty) {
    color: var(--red-border) !important;
}

.input-validation-error {
    outline: 2px solid var(--red-border);
}

.primary-button {
    display: flex;
    justify-content: center;
}

    .primary-button button {
        background-color: var(--color-magenta);
        border-radius: 25px;
        color: white;
        padding: 15px 50px;
        border-color: transparent;
    }

    .primary-button a {
        background-color: var(--color-magenta);
        border-radius: 25px;
        color: white;
        padding: 15px 50px;
        border-color: transparent;
    }

#nav {
    display: flex;
    height: 100px;
    /*padding: 0 50px;*/
    border-bottom: 1px solid var(--color-grey-dark);
}

    #nav a {
        color: var(--color-cyan);
    }

#nav-inner {
    max-width: 1170px;
    width: 100%;
    margin: auto;
}

#nav img {
    height: 80px;
    margin: 10px 0;
}

#nav-left {
    width: fit-content;
    height: 100%;
    display: inline-block;
}

#nav-right {
    display: flex;
    width: fit-content;
    height: 100%;
    /*display: inline-block;*/
    float: right;
    align-items: center;
}

    #nav-right div {
        display: flex;
        height: 100%;
        align-items: center;
    }

    #nav-right > div:not(:last-child):not(.icon)::after {
        content: "|";
        align-items: center;
        padding: 0 20px 0 20px;
    }

    #nav-right .icon {
        display: none;
    }

}

.pageWrapper {
    max-width: 1170px;
    width: 100%;
    margin: auto;
    overflow: hidden;
}
/*Mobile*/
.both-footers {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 1em;
}

#footer-top .div1 {
    display: flex;
    flex-direction: row;
    height: fit-content;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.full-width-bg {
    background-color: var(--color-grey-light);
    padding: inherit;
}

#footer-bottom {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.search-buttons {
    display: flex;
    flex-direction: row;
    gap: 5em;
    padding: 1vh;
}

.clear-button {
    background-color: transparent;
    color: var(--color-grey-dark);
    border: none;
    border-bottom: 2px solid var(--color-grey-dark);
    min-width: fit-content;
}

.search-button {
    background-color: var(--color-cyan);
    color: white;
    border-radius: 25px;
    padding: 10px 30px;
    border-color: transparent;
    display: flex;
    justify-content: center;
}

.search-section {
    display: flex;
    flex-direction: column;
    gap: 4pt;
}

.search-field {
    display: flex;
    flex-direction: column;
}

.search-section {
    display: flex;
    flex-direction: column;
    gap: 4pt;
}
.helpertext {
    font-size: 14px;
}
.bold {
    font-weight: bold;
}
.margin-bottom{
    margin-bottom: 1rem;
}
@media only screen and (max-width: 600px) {
    h1 {
        text-align: left;
        color: var(--color-cyan);
        font-size: calc(1.375rem + 1.5vw)
    }

    h2 {
        color: var(--color-grey-dark);
        font-size: 24px;
    }

    p {
        color: var(--color-grey-dark);
        font-size: 16px;
    }

    #nav {
        border-bottom: none;
        /*        padding:0 50px;*/
    }

    .pageTitle {
        border-bottom: none;
        padding: 0px;
    }

    #nav-right {
        display: flex;
        flex-direction: column;
        text-align: right;
        align-items: flex-end;
    }

        #nav-right > div {
            display: none;
        }

            #nav-right > div.show {
                display: flex;
            }

            #nav-right > div:not(:last-child):not(.icon)::after {
                content: none
            }

        #nav-right .icon {
            float: right;
            display: flex;
            height: 100%;
            align-items: center;
            text-decoration: none;
        }

    .icon i {
        margin-left: 8px;
    }

    #footer-top .div1 {
        flex-direction: column;
        align-items: flex-start;
    }

    #footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media only screen and (max-width: 600px) {


    .text {
        align-self: flex-end;
    }

    .image {
        width: 242px;
        height: 63px;
    }

    .paragraph {
        display: flex;
    }

    .phsa-footer {
        text-align: center;
    }
}
