﻿body {
    margin: 8px 0;
    background-color: #e4e4e4;
}

.container{
    max-width: 1000px;
    margin: auto;
}

.headerFixed{
    position: fixed;
    width: 100%;
    max-width: 1000px;
    height: 10%;
    max-height: 37px;
}

.menuDashboard{
    text-align: center;
    overflow: auto;
    position: fixed;
    width: 100%;
    height: 78%;
    max-width: 1000px;
    top: 12%;
}

.menu{
    display: inline-block;
    width: 100%;
    margin: 10px;
    max-width: 144px;
    padding: 20px 5px 0 5px;
    cursor: pointer;
    box-shadow: 0 10px 30px #eaeaea;
}

.menuImageContainer{
    position: relative;
    height: 100px;
}

.menuIcon{
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 100px;
}

.menuTitle{
    display: block;
    padding: 7px;
    font-size: 14px;
    color: #808080;
    height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu a{
    text-decoration: none;
}

.gvCSS{
    width: 100%;
}

.gvHeaderCSS{
    background-color: darkgrey;
    color: white;
    font-size: 14px;
}

.gvHeaderCSS th{
    padding: 5px;
    border-color: #dedede;
}

.gvRowCSS td{
    border-color: #dedede;
    padding: 5px;
}

.selectedRow{
    background: linear-gradient(180deg, #f5f5f5 5%, #dff7ff);
}

.selectedRow td{
    border-color: #dedede;
    padding: 5px;
}

.gvEmptyCSS{
    border-color: transparent;
}

.mainContainer{
    width: 100%;
    max-width: 998px;
    margin: auto;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    min-height: 100%;
    box-shadow: 0 0 20px white;
    background-color: white;
}

.containerHeader{
    padding: 0 10px;
}

.containerTitle{
    font-size: 18px;
    margin: 0;
}

.containerBody{
    padding: 0px 0;
}

.controlBox{
    float: left;
}

.searchBox{
    float: right;
    margin-top: 20px;
}

.btnCSS{
    border: none;
    outline: none;
    padding: 10px 15px;
    cursor: pointer;
    min-width: 80px;
    margin: 5px 5px 5px 0;
    box-shadow: 0 5px 10px #bbbbbb;
    transition: box-shadow 0.7s;
    background-color: #76c0f3;
    color: white;
    font-weight: bold;
}

.btnCSS:hover{
    box-shadow: 0 5px 20px #568ea0;
}

.formContainer{
    padding: 10px;
    max-width: 900px;
    margin: auto;
    font-size: 14px;
}

.fieldBox{
    padding: 7px 0;
}
.fieldBox-Score {
    padding: 5px 0;
    width:150px;
    display:inline;
    float:left;
}

.fieldLabel{
    display: inline-block;
    width: 100%;
    margin-right: 10px;
    vertical-align: top;
    max-width:270px;
}

.formButtonBox{
    text-align: center;
    padding: 10px 0;
}

.pageTitlePanel {
    background-color: #0395d0;
    box-shadow: 0 2px 15px lightgrey;
    padding: 5px;
    color: white;
}

.pageTitle{
    font-size: 16px;
    font-weight: bold;
}

input[type='text'], input[type='password'], select, textarea{
    outline: none;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid lightgrey;
    transition: box-shadow 0.6s;
}

input[type='text']:hover, input[type='password']:hover, select:hover, textarea:hover, input[type='text']:focus, input[type='password']:focus, select:focus, textarea:focus{
    box-shadow: 0 0 7px #8cd8f1;
    border-color: #8cd8f1;
}

input[type='text'], input[type='password']{
    /*min-width: 270px;*/
    max-width:500px;
    width:100%;
}

select {
    max-width: 500px;
    width: 100%;
}

.popupPanel{
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #989797;
    opacity: 0.6;
}

.popupBox{
    position: fixed;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    box-shadow: 0 0px 20px #eaeaea;
    max-width: 700px;
}

.popupHeader, .popupFooter{
    padding: 20px;
    background-color: #e8eaea;
}

.popupBody{
    padding: 20px;
    background-color: #dadada;
    text-align: center;
}

.popupControlBox{
    text-align: center;
}

.popupTitle{
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

.popupContent{
    text-align: center;
}

.popupYes, .popupNo{
    border: none;
    outline: none;
    padding: 10px 25px;
    margin: 0 10px;
    box-shadow: 0 5px 10px lightgrey;
    color: white;
    transition: box-shadow 0.7s;
    cursor: pointer;
}

.popupYes{
    background-color: #2d94d4;
}

.popupNo{
    background-color: #d28d2a;
}

.popupYes:hover, .popupNo:hover{
    box-shadow: 0 5px 10px #adadad;    
}

.loginContainer{
    width: 95%;
    max-width: 500px;
    margin: auto;
    margin-top: 5%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px lightgrey;
}

.loginHeader{
    padding: 15px 25px;
    border-bottom: 1px solid #dadada;
}

.loginBody{
    padding: 15px 25px;
}

.loginFooter{
    padding: 0 25px 15px 25px;
    text-align: center;
}

.fieldBoxLogin{
    padding: 7px 0;
    max-width: 369px;
    margin: auto;
}

.fieldLabelLogin{
    display: inline-block;
    width: 40%;
}

.btnLogin{
    border-radius: 10px;
}

.loginMsg{
    color: red;
}

.btnLogout{
    float: right;
    border-left: none;
    border-right: none;
    outline: none;
    padding: 10px 15px;
    cursor: pointer;
    min-width: 80px;
    background-color: inherit;
    font-style: italic;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: transparent;
    border-radius: 10px;
    transition: border-color 0.7s;
}

.btnLogout:hover{
    border-color: #409ff3;
}

.menuImage{
    min-width: 150px;
    height: 150px;
    max-width: 200px;
    display: block;
    width: 100%;
}

.divMenuInfo{
    width: 60%;
    float: left;
}

.divMenuImage{
    width: 30%;
    float: left;
    margin-right: 30px;
}

@media screen and (max-width: 599px){
    .divMenuInfo, .divMenuImage{
        width: 100%;
    }

    .divMenuImage{
        text-align: center;
        margin-bottom: 7px;
    }

    .menuImage{
        margin: auto;
    }
}

.containerFooter{
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10%;
    opacity: 0.9;
    max-height: 40px;
}

.copyright{
    text-align: center;
}

@media screen and (max-width: 404px){
    .fieldLabel{
        width: 50%;
        margin-bottom: 5px;
    }
}

.radCSS label{
    line-height: 24px;
    display: inline;
}

.radCSS input{
    margin-right: 10px;
}

.txtAreaCSS{
    width: 100%;
    height: 130px;
}

.loader{
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #94c6f1;
    border-bottom: 3px solid #94c6f1;
    width: 70px;
    height: 70px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: fixed;
    top: 50%;
    left: 50%;
    box-shadow: 0 0 20px #d3dfe0;
}

.popupPanel, .popupPanelLoader{
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #989797;
    opacity: 0.6;
}

.popupPanelLoader{
    display: block;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: translate(-50%, -50%) rotate(0deg); }
    100% { -webkit-transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.infoPopupBox{
    width: 95%;
    max-width: 530px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 0 20px snow;
    display: none;
}

.infoHeader{
    padding: 15px 0;
    border-bottom: 1px solid lightgrey;
}

.infoBody{
    padding: 15px;
}

.btnCloseInfo{
    float: right;
    background-color: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0 15px;
}

.btnCloseInfo:hover{
    color: red;
}

.infoHeaderTitle{
    padding: 15px;
    font-weight: bold;
}

.msgBlock{
    display: block;
    padding: 5px 0;
}

.detailBox{
    display: none;
    width: 100%;
    max-width: 600px;
}

.detailImage{
    float: left;
    margin-left: 5%;
    margin-right: 20px;
    width: 140px;
    margin-bottom: 7px;
}

.detailInfo{
    display: inline-block;
    max-width: 388px;
}

.downloadCol{
	min-width: 93px;
}