
/* Gary set up a project in Adobe, which generated this import URL */
/* Font specified by client: https://fonts.adobe.com/fonts/din-2014 */
@import url("https://use.typekit.net/xkk5grr.css");

:root {
    --primary-color: #002e58;
    --primary-color-buttons: var(--primary-color);
    --primary-color-links: var(--primary-color);

    --client-color-orange: #f47920;
    --client-color-skyBlue: #1182c6;
    --footer-color-text: #cce4f3; /* a light blue */
    --font-family-base: "din-2014", sans-serif;
    --font-color-base: #000;
    --font-size-base: 0.875em;
    --social-media-icon-color: #fbad18;
}

/* 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 {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-size: var(--font-size-base);
    font-family: var(--font-family-base);
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    line-height: 1.5;
    color: #000;
    background: url("../_images/body_bg.png");
    background-size: auto;
    background-size: cover;
}

/* header container */
header {
    margin: 0;
    padding: 0;
    background-color: var(--primary-color);
}

.tagline {
    background: #acd6eb;
    color: #002e58;
    text-transform: uppercase;
    padding: 10px 0 10px 0;
    margin: 0 0 20px 0;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9em;
}

/* body container */
div#body {

    padding: 6px;

}

.page_content_container {

    background-color: #fff;
    padding: 20px;
    min-height: 400px;

}

h1 {
    color: var(--primary-color);
}

h2, h3, h4, h5, h6 {
    color: var(--client-color-skyBlue);
    text-transform: uppercase;
}

h1 {
    font-size: 1.8em;
    margin-bottom: 20px;
    background: url("../_images/h1_bg.png") repeat-x bottom left;
    font-weight: 700;
    line-height: 1.3em;
    padding-bottom: 4px;
}

h2 {
    font-size: 1.4em;
}

h3 {
    font-size: 1.3em;
}

h4 {
    font-size: 1.2em;
}

h5 {
    font-size: 1.1em;
}

h6 {
    font-size: 1.0em;
}

.promocode-label {
    font-size: 1.3em;
    color: maroon;
}

.alert-environment-text {

    font-size: 1.6em;
    text-align: center;
    border: 4px solid lime;
    margin: 0;

}

.responsive-button-group {
    margin-top: 30px;
    text-align: left;
}

.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;
    }

    

/* footer container */
footer {
    margin-top: 40px;
    padding:  30px 0 20px 0;
    min-height: 200px;
    background-color: var(--primary-color);
    color:var(--footer-color-text) !important;
}

    footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
    color:var(--footer-color-text) !important;
    }

    footer *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {

        font-size: 12px;
    }

    footer a, footer a:link, footer a:visited {
        color: var(--client-color-orange); !important;
        text-decoration: none;
    }
    footer a:hover {
        color: var(--footer-color-text) !important;
    }

    footer .socialMediaIcons * {
        color: var(--social-media-icon-color) !important;
        font-size: 20px;
    }

    /* JSA demo question overrides */
.jsa-demo-questiontext {
    font-weight: bold;
}

.jsa-demo-selectmultiplecontrol-instructions {
    font-size: .8rem;
    padding-top: 12px;
    padding-left: 30px;
}

/* for HTML dialog control, backdrop color */
::backdrop {
  background-color: #000;
  opacity: 0.75;
}