
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #000a2d;
    --primary-color-buttons: #083D94;
    --primary-color-links: #0060cd;
    --font-color-base: #000;
    --font-size-base: 12px;
}

/* Universal box-sizing reset */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Set default font inheritance for form elements */
input, button, textarea, select {
  font: inherit;
}

/* Remove default text decoration and inherit color for links */
a, a:visited, a:link {
  text-decoration: none;
}
    a:hover {
      text-decoration: underline;
    }
    a.btn {

        text-decoration: inherit;
    }

html, body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

/* header container */
header {
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    background-color: var(--primary-color);
}

/* body container */
div#body {

    padding: 6px;

}

/* footer container */
footer {
    margin-top: 40px;
    padding:  30px 0 20px 0;
    min-height: 200px;
    background-color: var(--primary-color);
    color: #fff;
}

    footer *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {

        font-size: 12px;
        color: #fff;
    }

    footer a, footer a:link, footer a:visited {
        color: #fff !important;
    }
    footer a:hover {
        color: inherit;
        text-decoration: underline;
    }

    footer a.socialMediaIcon * {

        font-size: 2rem !important;
        text-decoration: none;

    }

h1 {
    margin-bottom: 20px;
}

.alert-environment-text {

    font-size: 1.6em;
    text-align: center;
    border-color: #000;

}


.responsive-button-group {
    margin-top: 30px;
}


.responsive-button-group button, .responsive-button-group input[type=submit], .responsive-button-group a {
    margin-right: 10px;
    margin-bottom: 10px;
}

.required-field-label:after {
    color: red;
    content: ' *';
}

.required-field-highlight {

    border: 1px solid navy;
    background-color: #dfdeff;

}

/* TEXT effects */
.text-red {
    color: red;
}
.text-blue {
    color: blue;
}
.text-green {
    color: green;
}

.bold {
    font-weight: bold;
}

.font-size-90percent {
    font-size: .9rem;
}

.font-size-80percent, .tiny-text {
    font-size: .8rem;
}

.badge-preview-container {
    border: 1px solid #a0a0a0;
    padding: 30px 2px 20px 2px;
    text-align: center;
    min-height: 200px;
}

nav a {
    text-decoration: none !important;
    color: var(--primary-color) !important;
}

    nav a:hover {
        opacity: .7;
    }

    nav a.active {
        font-weight: bold;
    }