html {
    box-sizing: border-box;
    font-size: 16px;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ol, ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

html {
    height: 100%;
}

body {
    height: 100%;
    margin: 0px;
    padding: 0px;
    background: #fff;
    color: #444;
    font-family: 'Open Sans', sans-serif;
    display: flex;
    flex-flow: column nowrap;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 19px;
}

h3 {
    font-size: 15px;
    margin: 16px 0px 10px 0px;
}

a {
    color: #444;
    outline: none;
}

    a:visited {
        color: #444;
    }

input {
    font-size: 16px;
    height: 30px;
}

header {
    width: 100%;
    min-width: 320px;
    height: 150px;
}

    header .content {
        width: 100%;
        max-width: 1100px;
        margin: 0px auto 0px auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    header .logo-line {
        height: 1px;
        margin-top: 80px;
        background: #ccc;
        flex-grow: 1;
    }

    header .logo {
        width: 100px;
        height: 100px;
        margin-top: 12px;
        background: #fff;
        flex-grow: 0;
    }

footer {
    width: 100%;
    min-width: 320px;
    height: 50px;
    margin-top: 20px;
        /*
        -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px -2px 3px;
        -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px -2px 3px;
        box-shadow: rgba(0, 0, 0, 0.3) 0px -2px 3px;
        */
    }

    footer .content {
        width: 100%;
        max-width: 1100px;
        margin: 20px auto 0px auto;
        display: flex;
        flex-direction: column;
        font-size: 13px;
        align-items: center;
    }

        footer .content a {
            font-weight: 600;
        }

.top-section {
    /*
    background: linear-gradient(180deg, rgba(218,218,222) 0%, rgba(255,255,255) 100%);
    border-top: solid 1px #999;
    */
}

.view-container {
    width: 100%;
    min-width: 320px;
    max-width: 1100px;
    margin: 20px auto 0px auto;
    padding: 0px 10px;
}

.contact {
    margin-top: 16px;
    font-size: 13px;
}
    .contact a {
        font-weight: 600;
    }

.label-value-pair {
    display: flex;
    flex-flow: row wrap;
}

.label {
    display: inline-block;
    width: 100px;
    font-weight: 500;
}

.wide-label {
    display: inline-block;
    width: 140px;
    font-weight: 500;
}

.value {
    display: inline-block;
    width: 100px;
    text-align: right;
}

.header-row {
    display: flex;
    flex-flow: row nowrap;
    justify-content: start;
    padding-bottom: 12px;
    border-bottom: #666 1px solid;
    margin: 40px 0px 30px 0px;
}

.input-row {
    padding-top: 10px;
    height: 50px;
    margin-bottom: 16px;
}

.two-input-row {
    padding-top: 10px;
    height: 50px;
    display: flex;
    flex-flow: row nowrap;
    margin-bottom: 16px;
}

.half-input-row {
    display: block;
    margin-right: 4px;
    margin-bottom: 16px;
}

.error-row {
    height: 30px;
    margin-top: -12px;
    margin-bottom: 16px;
    color: red;
    font-size: 13px;
    display: none;
}

.wide-input {
    border: solid 1px #aaa;
    width: 300px;
    height: 40px;
    padding-left: 10px;
    outline: none;
    font-size: 16px;
}

    .wide-input:focus {
        border: solid 1px #bbb;
        border-bottom: solid 2px blue;
        outline: none;
        height: 39px;
    }

.short-input {
    border: solid 1px #aaa;
    width: 148px;
    height: 40px;
    padding-left: 10px;
    outline: none;
    font-size: 16px;
}

    .short-input:focus {
        border: solid 1px #bbb;
        border-bottom: solid 2px blue;
        outline: none;
        height: 39px;
    }

.input-label {
    width: fit-content;
    width: -moz-fit-content;
    height: 20px;
    background: #fff;
    opacity: 0.99;
    margin: -51px 0px 0px 10px;
    padding: 0px 4px;
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: black;
}

.icon {
    height: 24px;
    margin: 0px 8px 0px 4px;
}

.icon-larger {
    height: 32px;
    margin: 0px 8px 0px 4px;
}

.submit {
    width: 300px;
    height: 40px;
    font-size: 16px;
    background-color: #334466;
    color: #fff;
    border-radius: 5px;
    border: solid 1px #999;
    cursor: pointer;
}
    .submit:disabled {
        background-color: #7788AA;
        cursor: not-allowed;
    }

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ring div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 64px;
        height: 64px;
        margin: 8px;
        border: 8px solid #fff;
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: #fff transparent transparent transparent;
    }

        .lds-ring div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .lds-ring div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .lds-ring div:nth-child(3) {
            animation-delay: -0.15s;
        }

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
