﻿body {
    background-color: lightgrey;
    line-height: 1.5;
    font-family: sans-serif;
}
.container {
    margin: auto;
    background-color: rgb(255, 255, 255);
    padding: 3em;
    border-radius: 4px;
    max-width: 75%;
    min-width: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.header h2 {
    display: inline-block;
    max-width: 60%;
    padding-left: 1em;
}
.header img {
    display: inline-block;
}
.left {
    float: left;
    width: 50%;
}
.right {
    float: right;
    width: 50%;
}

.clear {
    clear: both;
}

label {
    display: inline-block;
    width: 190px;
}

input {
    margin-bottom: 10px;
}

button {
    padding: 5px;
    margin-top: 5px;
}

.footer {
    text-align: center;
    font-size: 12px;
}

#Comments {
    width: 360px;
    height: 65px;
}

.textarea * {
    vertical-align: top;
}

.footNotes {
    font-size: 11px;
}

.loaderContainer {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: rgba(0,0,0,0.5);
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid red;
    width: 2em;
    height: 2em;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}