@font-face {
    font-family: "OpenSans-Regular";
    src: url("/aahpublic/fonts/opensansregular.woff");
    font-display: swap;
}

@font-face {
    font-family: "Raleway-Regular";
    src: url("/aahpublic/fonts/ralewayregular.woff");
    font-display: swap;
}

body {
    margin: 0;
    font-size: 14px;
    font-family: "OpenSans-Regular", Verdana, Helvetica, sans-serif;
    letter-spacing: .03em;
    line-height: 1.35em;
    color: #222;
}

h1 {
    font-family: "Raleway-Regular", Verdana, Helvetica, sans-serif;
    font-size: 3em;
    font-weight: 200;
    color: #1d4f81;
    line-height: 1em;
}

h2 {
    font-family: "Raleway-Regular", Verdana, Helvetica, sans-serif;
    font-size: 2em;
    font-weight: 200;
    color: #1d4f81;
    line-height: 1em;
}

h3 {
    font-family: "Raleway-Regular", Verdana, Helvetica, sans-serif;
    font-size: 1.25em;
    font-weight: 200;
    color: #222;
    line-height: 1em;
}

h4 {
    font-family: "Raleway-Regular", Verdana, Helvetica, sans-serif;
    font-size: 1.25em;
    font-weight: 200;
    color: #555;
    line-height: 1em;
}

h5 {
    font-family: "Raleway-Regular", Verdana, Helvetica, sans-serif;
    font-size: 1em;
    font-weight: 200;
    color: #222;
    line-height: 1em;
}

legend {
    font-family: "Raleway-Regular", Verdana, Helvetica, sans-serif;
    font-size: 1.25em;
    font-weight: 200;
    color: #555;
    line-height: 1em;
}

.content {
    max-width: 800px;
    margin: auto;
}

p, label, input, select {
    font-size: 1em;
    letter-spacing: .03em;
    line-height: 1.35em;
    color: #222;
}

input, select {
    padding: 1px 2px;

    box-sizing: content-box;
    border-radius: 0;
    border: 1px solid #767676;

    font-family: "OpenSans-Regular", Verdana, Helvetica, sans-serif;

    height: 1.5em;
}

input[type="radio"] {
    height: revert;
    vertical-align: middle;
    margin: 0;
}

input[type="submit"] {
    cursor: pointer;
    color: #fff;
    background-color: #1d4f81;
    border-color: transparent;
    padding-top: 8px;
    padding-bottom: 8px;
    font-weight: 400;
    font-size: 1.25em;
    width: 100%;
}

input[type="submit"]:hover {
    background-color: #146C9C;
}

input[type="submit"]:disabled {
    border-color: #e1e1e1;
    background-color: #fdfdfd;
    color: #b1b1b1;
    cursor: not-allowed;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.flex-item-full {
    width: 100%;
}

.flex-item {
    width: 100%;
}

@media (min-width: 576px) {
    .flex-item {
        width: 50%;
    }
}

@media (min-width: 768px) {
    .flex-item {
        max-width: 250px;
    }

    .flex-item-full {
        max-width: 500px;
    }
}

.pt-1 {
    padding-top: 0.5rem;
}

a {
    text-decoration: none;
    color: #5252FF;
    cursor: pointer;
}

a:visited {
    color: #114c86;
}

a:hover {
    color: #66676a;
    text-decoration: underline
}

