﻿* {
    color: #333333;
    font-family: -apple-system-font, "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 17px;
    line-height: 1.25em;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    vertical-align: baseline;
    background: transparent;
    transition-duration: .5s;
}

html, body {
    margin: 0;
    padding: 0;
    border: 0;
    position: absolute;
    width: 100%;
    min-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #FFFFFF;
}

body {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: center;
}

body > * {
    padding: 0 1.25em;
}

h1, h2, h3, h4, legend {
    font-size: inherit;
    font-weight: bold;
    text-align: center;
    text-overflow: ellipsis;
    color: #333333;
    /*white-space: nowrap;
    overflow: hidden;*/
    margin: 1.5em 0 1em;
    padding: 0;
}

pre {
    overflow: hidden;
}

main > *, section {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

header, main, section, aside, footer {
    order: 0;
    flex: 0 1 auto;
    align-self: stretch;
}

main, section {
    order: 0;
    flex: 1 1 auto;
    align-self: stretch;
    margin-bottom: 1em;
}

.textField {
    height: 30px;
    border: 0 solid #b0b4b6;
    padding: 0;
    margin: 0;
    background: #fff;
    text-indent: 10px;
    color: #000;
}

.fullWidth {
    width: 100%;
}

.small {
    font-size: 13px;
}

.dropdown {
    font-size: 14px;
    position: relative;
}

.hidden {
    height: 0;
    opacity: 0;
}

.rightAlign {
    position: absolute;
    top: 0;
    right: 10px;
}


p {
    margin: 0;
}

header h1 {
    max-height: 54px;
    margin: 0.75em 0 0;
}

header h2 {
    color: #D34700;
    font-size: 1.25em;
    margin-top: 1em;
}

header p {
    max-width: 480px;
    margin: 0 auto 1em;
    font-weight: normal;
    text-align: center;
}

section h2 {
    text-transform: none;
    font-weight: normal;
    margin: 0;
}

section > div {
    border: 1px solid #333333;
    padding: 1em;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

table * {
    font-weight: normal;
}

caption {
    text-align: left;
    color: #333333;
    padding-bottom: .5em;
}

th {
    color: #333333;
    padding: .5em 0;
    text-align: left;
}

tr:first-child th {
    padding-top: 0;
}

tr:last-child th {
    padding-bottom: 0;
}

td, .vcard, p {
    font-weight: bold;
}

ul {
    list-style: none;
    margin: 1em 0;
    padding: 0;
    width: 100%;
}

li {
    margin: 1.5em 0 0 0;
}

li:first-child {
    margin-top: 0;
}

li:last-child {
    margin-bottom: 2em;
}

a {
    white-space: nowrap;
    text-decoration: none;
    /*color: #FFFFFF;*/
    font-size: inherit;
    font-weight: bold;
}

.vcard {
    margin: .5em 0 0 1em;
}

.actionButton, .editButton, .cancelButton {
    border-width: 1px;
    border-style: solid;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    height: 3em;
    width: 100%;
    line-height: 3em;
    margin: 0;
    overflow: hidden;
    padding: 0 .66em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.actionButton {
    color: #FFFFFF;
    border-color: #D34700;
    background-color: #D34700;
}

.actionButton:hover, .actionButton:active {
    border-color: #AC1B19;
    background-color: #AC1B19;
}


.editButton, .cancelButton {
    color: #FFFFFF;
    border-color: #4861AF;
    background-color: #4861AF;
}

.editButton:hover, .editButton:active, .cancelButton:hover, .cancelButton:active {
    color: #FFFFFF;
    border-color: #34447D;
    background-color: #34447D;
}

aside#contact {
    color: #ffffff;
    background-color: #D34700;
    text-align: center;
    margin: 0;
    max-width: 100%;
}

aside#contact p, aside#contact a {
    color: #ffffff;
    max-width: 480px;
    margin: 1em auto;
    font-weight: initial;
}

aside#contact a {
    font-weight: bold;
}

footer {
    text-align: center;
    background-color: #1E1E23;
}

footer p:first-child {
    font-style: normal;
}

footer p {
    font-weight: normal;
    font-style: italic;
    color: #FFFFFF;
    margin: 0;
    padding: .251em 0;
    font-size: .75em;
}

footer p a {
    font-weight: normal;
    color: #FFFFFF;
    font-size: 1.25em;
    vertical-align: middle;
}

footer p:first-child {
    padding-top: 2em;
}

footer p:last-child {
    padding-bottom: 2em;
}

#throbber {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    z-index: 999;
    height: 100%;
    width: 100%;
    background-color: RGBA(0, 0, 0, .25);
    text-align: center;
}

#throbber > div {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 40%;
    margin: -3.25em -20%;
    background-color: RGBA(0, 0, 0, .85);
    border-radius: 1em;
    padding: 1em;
}

#throbber img {
    width: 2.5em;
    margin: 0 auto 1em;
}

#throbber p {
    color: #FFFFFF;
    text-align: center;
}

.processing > *:not([id=throbber]) {
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

body.processing > #throbber {
    display: block !important;
    pointer-events: none;
}

#faq * {
    word-wrap: break-word;
    overflow: visible !important;
    white-space: normal !important;
}

#faq p {
    font-weight: normal;
    text-align: justify;
    margin-bottom: 1em;
}

#terms p {
    font-weight: normal;
    text-align: justify;
    margin-bottom: 1em;
}

.errors {
    text-align: center;
}

