/* Visuals for all pages - BEGINNING */
@charset "utf-8";
* {
    /* Setting the parameters for the whole website for all views */
    font-family: sans-serif;
    font-size: 1em;
    color: #1C4D6F;
    //text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
}

html {
    width: 100%;
}

body {
    display: table;
    min-width: 100%;
    position: absolute;
    height: auto;
    text-align: center;
    background-image: url('../images/dimension.png');
    margin: 0;
    padding: 0;
    padding-bottom: 20px;
    top: 0;
    background-repeat: repeat;
}

.gray-out-div {
    margin: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    opacity: 0.7;
    background: #000000;
    top: 0;
    left: 0;
    position: fixed;
    visibility: hidden;
}

input {
    padding: 10px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

h1 {
    background-color: #0093d0;
    height: 40px;
    line-height: 40px;
    color: white;
    font-weight: bold;
    font-size: 140%;
    border-bottom: 2px solid #006DBD;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

#index-main-body-wrapper {
    max-width: 300px;
    min-width: 250px;
    width: auto;
    height: auto;
    margin: 100px auto 0px auto;
    padding: 0 0 20px 0px;
    background-color: #ffffff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

input[type="text"],
input[type="password"],
input[type="search"] {
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 90%;
    background: #ffffff;
    margin-bottom: 10px;
    border: 1px solid #cccccc;
    padding: 3%;
    color: #000000;
    font: 95% Arial, Helvetica, sans-serif;
    height: 3em;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="search"]:focus {
    box-shadow: 0 0 5px #0093d0;
    padding: 3%;
    border: 1px solid #0093d0;
}

select::-ms-expand {
    display: none;
}

#header-menu-items select {
    margin: 0;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: none;
    min-width: 150px;
    padding: 4px 24px 4px 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../images/down-arrow.png) 96% / 16px no-repeat #eee;
    background-color: #ffffff;
} 

.button {
    padding: 5% 3%;
    width: 84%;
    background: #0093d0;
    border-bottom: 2px solid #006DBD; 
    display: inline-block;
    color: #ffffff;
    text-transform: none;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.button:hover{
    background: #0063CE;
}

.error-div {
    padding: 10px 0px;
    color: #f05b56;
    font-weight: 500;
}

.progress-circle {
    position: fixed;
    margin: 0;
    margin-top: 20%;
    left: 50%;
    margin-left: -110px;
    opacity: 0;
    display: none;
    z-index: 9;
    /* Opacity animation */
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.header {
    //position: relative;
    min-height: 50px;
    height: auto;
    padding-right: 2%;
    width: 98%;
    background: rgba(245, 245, 245, 0.7);
    z-index: 5;
    /* Outer Shadow */
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px;
    -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px;
    font-size: 0.8em;
    overflow: auto;
}

#header-logo {
    height: 54px;
    float: left;
    padding: 5px;
}

.header h2 {
    float: left;
    padding: 0;
    margin: 0;
    margin-top: 6px;
    width: 120px;
}

#logout-button {
    width: 20px;
    height: 20px;
    display: inline-block;
    overflow: hidden;
    position: absolute;
    vertical-align: top;
    top: 16px;
    left: 16px;
    cursor: pointer;
    z-index: 99;
    opacity: 1.0;
}

#logout-button:hover {
    opacity: 0.8;
}