/* core HTML elements */

html, body {
    margin: 0;
    padding: 0;
    line-height: 1;
    box-sizing: border-box;

    font-family: "Open Sans", sans-serif;
    font-style: normal;
}

header {
    margin: 20px 0;
}

section.body {
    margin: 40px 0;
}

footer {
    background-color: #00294D;
    font-size: 0.875rem;
    padding: 25px 0;
    border-top: 3rem solid #2166D8;
    color: #ffffff;
}

    footer a, footer a:link, footer a:visited {
        color: #ffffff;
        text-decoration: none;
    }
        footer a:hover {
            text-decoration: underline;
        }

h1, h2, h3, h4, h5 {
    color: #00294D;
    margin-bottom: 20px;
}

/* custom elements */

.alert-environmenttext {
    border: 2px solid #ff0000;
    background-color: #f59292;
    text-align: center;
    margin: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.required-field-label:after {
    content: ' *';
    color: #ff0000;
}
.required-field-highlight {
    border: 1px solid #ff0000 !important;
    background-color: #f7c2c2;
}

.padding-0 {
    padding: 0 !important;
}

.button-group {
    margin: 20px;
}

    .button-group button, .button-group input[type=submit], .button-group input[type=reset], .button-group a.btn {
        margin-right: 10px;
        margin-bottom: 10px;
    }

.button-group.button-full-width button, .button-group.button-full-width input[type=submit], .button-group input[type=reset].button-full-width, .button-group.button-full-width a.btn, .full-width {
    width: 100%;
}

div.alternating-row-color div.row {
    padding: 10px;
}
div.alternating-row-color div.row:nth-child(even) {
    background-color: #efefef;

}
div.alternating-row-text {
    font-size: .8rem;
}

/* client elements */

.gma_bluebar {
    background-color: #2166D8;
    width: 100%;
    height: 3rem;
    margin: 20px 0;
}

/* fonts */

.red {
    color: #ff0000;
}

.text-small {
    font-size: .8rem;
}

/* landing page top navigation */
.landing-page-top-nav {
    margin: 3rem !important;
}

    .landing-page-top-nav li.nav-item {
        padding: .5rem !important;
        text-align: center;
        font-weight: bold;
    }

    .landing-page-top-nav li.nav-item nav-link {
        line-height: 1.5rem;
    }

    .landing-page-top-nav li.nav-item .nav-link.active {
        text-decoration: underline !important;
    }

/* registration options nav */
div.nav-registration-options * {
    font-size: .8rem;
}
    
div.nav-registration-options h5 {
    padding: 10px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    background-color: #2166D8;
}
div.nav-registration-options a {
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #afafaf;
    display: block;
}