﻿.background {
    background-color: #f6f6f6;
}
.page-title {
    padding-top: 2em;
    padding-bottom: 1em;
}
input {
    border-radius: 3px;
}
.label {
    font-weight: bolder;
    display: block;
}
.label .required {
    color: red;
    margin-left: 2px;
}
.bold {
    font-weight: bolder;
}
.alert-banner {
    font-size: 22px;
    font-weight: 400;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.multiline {
    white-space: pre-wrap;
}

.message-container {
    margin-top: 100px;
}

.next-button {
    width: 15em;
    bottom: 5em;
    right: 10em;
    float: right;
    margin-top: 3em;
    margin-left: 1em;
}

.action-button {
    width: 15em;
    bottom: 5em;
    right: 10em;
    margin-top: 2em;
}

.support-button {
    left: 3em;
    font-size: 0.8em;
    bottom: 8em;
    padding-left: 1em;
    padding-right: 1em;
    max-width: 15em;
}

input, select, textarea {
    display: block;
    width: 100%;
    padding: .5rem .75rem;
    font-size: 1rem;
    line-height: 1.25;
    color: #464a4c;
    background-color: #fff;
    background-image: none;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s
}

.field-validation-error {
    display: block;
    color: red;
    font-weight: bolder;
    text-decoration: underline;
}

.validation-summary-valid {
    display: none;
}

.left-column-menu ul {
    color: white;
    list-style-type: none;
    padding-top: 2em;
    padding-left: 0;
    font-weight: bold;
    width: 100%;
    text-align: center;
}
.left-column-menu ul li {
    padding: 0.5em 0 0.5em 0;
}

.left-column-menu ul li:hover {
    background-color: #96c0e6;
    cursor: pointer;
    width: 100%;
}
.top-header-menu {
    background-color: #96c0e6;
    height: 5em;
    box-shadow: 0 3px 5px grey;
    margin-bottom: 1em;
}
.logo-container {
    margin: 0.5em;
    padding: 2em 0 2em 0;
    border-radius: 10px;
    background: #ffffff;
}
.logo {
    display: block;
    max-width: 100%;
    max-height: 100%;
    padding: 10px 10px 10px 10px;
    margin: 0 auto;
}
.line-separator{
    height: 1px;
    background-color: silver;
    margin: 10px;
    width: 80%
}
.missing-value {
    border: 3px solid red;
}
.invalid-value, .input-validation-error {
    border: 3px solid red;
}
.grey-out {
    background-color: lightgrey;
}
.future-date {
    background-color: orange;
}

.menu-active {
    background-color: #589FE8;
}

.bot-menu {
    text-align: center;
    left: 1.5em;
    bottom: 0;
    padding-top: 5em;
}

.page-content {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.iReferral-logo img {
    max-height: 10em;
    max-width: 100%;
}

.left-column-menu { 
    background-color: #2f72b6; 
    top: 0;
    width: 23em;
    -webkit-box-shadow: 10px 10px 25px -12px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 25px -12px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 25px -12px rgba(0,0,0,0.75);
    min-height: 900px;
}

.environment-warning {
    color: Red;
    text-align: center;
    font-size: 50px;
    font-variant: small-caps;
    font-family: Helvetica, sans-serif;
    font-weight: bold;
    text-align: center;
    display: block;
}

@media screen and (max-height: 1024px) {
    .iReferral-logo img {
        max-height: 5em;
    }
    input {
        min-width: 4em; /*Small fields are not readable on small screens*/
    }
}

@media screen and (min-height: 900px) {
    .left-column-menu {
        display: block;
        height: 100%;
        overflow-y: auto;
        position: fixed;
        padding-right: 0;
        z-index: 1; /* this to place the menu over the page*/
    }
    .page-content {
        padding-left: 20%; /*Size of the left menu column*/
    }
    .bot-menu {
        left: 0;
        bottom: 2em;
        right: 0;
        position: absolute;
    }
}

@media screen and (max-height: 900px) {
    .left-column-menu {
        left: 0;
        padding-right: 0;
    }
    .iReferral-logo img {
        max-height: 3em;
    }
    input {
        min-width: 4em; /*Small fields are not readable on small screens*/
    }
}


.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
} 