/*login*/
.login {
    margin: 60px auto;
    width: 340px;
    padding: 30px 25px;
    background: white;
    border: 1px solid #c4c4c4;
}

h1.login-title {
    margin: -28px -25px 25px;
    padding: 15px 25px;
    line-height: 30px;
    font-size: 25px;
    font-weight: 300;
    text-align:center;
}

.login-input {
    width: 285px;
    height: 50px;
    margin-bottom: 25px;
    padding-left:10px;
    font-size: 15px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.login-input:focus {
    border-color:#6e8095;
    outline: none;
}
.login-button {
    width: 100%;
    height: 50px;
    padding: 0;
    font-size: 20px;
    color: #fff;
    text-align: center;
    border: 0;
    border-radius: 5px;
    cursor: pointer; 
    outline:0;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,45484d+100 */
    background: rgb(0,0,0); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(69,72,77,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%,rgba(69,72,77,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(69,72,77,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#45484d',GradientType=0 ); /* IE6-9 */
}

.login-lost
{
    text-align:center;
    margin-bottom:0px;
}

.login-lost a
{
    color:#666;
    text-decoration:none;
    font-size:13px;
}

#login_body{
    background-size: cover;
    background-image:url(/img/bg_login-min.jpg);
}

#dashboard_body{
    background-size: cover;
}

header{
    position: absolute;
    top: 0px;
    left: 0px;
    height: 40px;
    right: 0px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0,135,140,1) 0%,rgba(181,3,95,1) 99%); 
}
main{
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 0px;
    right: 0px;
    overflow: auto;

}
main>div{
    width:100%;
    margin: auto;
    /*max-width: 1440px;*/
}
footer{
    position:absolute; 
    bottom:0px; 
    height:40px; 
    line-height:40px; 
    left:0px; 
    right:0px; 
    overflow:hidden;
    color:#fff;
    font-size: 12px;
    background: linear-gradient(135deg, rgba(0,135,140,1) 0%,rgba(181,3,95,1) 99%); 
}


#mat_summaries > .mat_summary{
    width:310px;
    padding-bottom: 30px;
    margin: 5px;
    position: relative;
    border:1px solid #ddd;
    display: inline-block;
    vertical-align: top;
    animation-duration: .8s;
    opacity:0;
    transform: scale(1.1,1.1);
    user-select:none;
}

#mat_summaries.active > .mat_summary{
    opacity:1;
    transform: scale(1,1);
    user-select:auto;
}
.mat_summary >.loader{
    position: absolute;
    top:0px;
    left:0px;
    z-index: 10000;
    width: 100%;
    height: 100%;
    font-size:14px;
    text-align: center;
    color:#777;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#cccccc+0,eeeeee+100 */
    background: rgb(204,204,204); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(204,204,204,1) 0%, rgba(238,238,238,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(204,204,204,1) 0%,rgba(238,238,238,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(204,204,204,1) 0%,rgba(238,238,238,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cccccc', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
    line-height:250px;
    transition: .2s all ease;
    opacity: 0;
    pointer-events: none;
    transform:scale(1.1,1.1);
}
.mat_summary >.loader.active{
    opacity: 1;
    pointer-events: auto;
    transform:scale(1,1);
}

.mat_summary >.name{
    padding: 5px;
    text-align: center;
    font-size: 14px;
    line-height: 15px;
    height: 30px;
    overflow: hidden;
    background: -webkit-linear-gradient(#720272, #7F0008);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mat_summary >.canvas{
    width:100%;
    /*height:300px;*/
    padding:5px;
}

.mat_summary >.canvas >.no_data{
    width:100%;
    height:200px;
    line-height: 200px;
    color:#777;
    font-size: 11px;
    text-align: center;
}


.mat_summary >.bottom{
    position: absolute;
    bottom:0px;
    background: #e5e5e5;
    width:100%;
    font-size: 11px;
    height:30px;
    line-height:30px;
    padding-left: 5px;
    border-top: 1px solid #ddd;
    color:#444;
}
.mat_summary{
    font-size: 0px;
}
.mat_summary .mini{
    width:25%;
    text-align: center;
    display: inline-block;
    vertical-align: top;
}

.mat_summary .mini >i{
    color:#777;
    font-size: 16px;
    height:25px;
    line-height:25px;
    display: block;
    width:100%;
    text-align: center;
    opacity: .7;
}
.mat_summary .mini >label{
    color:#777;
    font-size: 10px;
    height:11px;
    height:11px;
}
.mat_summary .mini >.value{
    color:#111;
    font-weight: 600;
    font-size: 14px;
    height:15px;
    height:15px;
}

#mat_summaries{
    margin-top: 50px;
}

.major_block{
    /*border:1px solid #e5e5e5;*/
    width:100%;
    margin-top: 20px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+99&0+0,0.08+100 */
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.08) 99%, rgba(0,0,0,0.08) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.08) 99%,rgba(0,0,0,0.08) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.08) 99%,rgba(0,0,0,0.08) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#14000000',GradientType=0 ); /* IE6-9 */
    padding: 5px 0px;
}
.major_block >.label{
    width:100%;
    margin-top: 5px;
    height:12px;
    line-height:12px;
    font-size:10px;
    color:rgb(114,2,114);
    text-align: center;
}

.att_block{
    width:20%;
    display: inline-block;
    vertical-align: top;
    padding:2px;
    text-align: center;
}

.att_block >label{
    font-size: 10px;
    line-height: 12px;
    height:12px;
    color:#777;
}

.att_block >div{
    display: inline-block;
    font-size: 11px;
    line-height: 25px;
    height:25px;
    width:50px;
    color:#fff;
    background: #aaa;
    border-radius: 2px;
}
.dev_block{
    width:20%;
}


.dev_block{
    width:20%;
    display: inline-block;
    vertical-align: top;
    padding:2px;
    text-align: center;
    margin-top: 5px;
    user-select:none;
}
.dev_block:hover{
    background: #d5d5d5;
}

.dev_block >label{
    font-size: 10px;
    line-height: 12px;
    height:12px;
    color:#777;
}

.dev_block >i{
    display: block;
    font-size: 16px;
    line-height: 16px;
    height:16px;
    color:#999;
    margin-bottom: 5px;
    margin-top: 10px;
}

.dev_block >.main{
    display: block;
    font-size: 13px;
    line-height: 15px;
    height:15px;
    color:#444;
}

.dev_block >.sub{
    display: block;
    font-size: 10px;
    line-height: 11px;
    height:11px;
    color:green;
}

.three_block{
    width:33%;
    display: inline-block;
    vertical-align: top;
    padding:2px;
    text-align: center;
    margin-top: 5px;
    user-select:none;
}

.three_block >label{
    font-size: 10px;
    line-height: 12px;
    height:12px;
    color:rgb(114,2,114);
}

#dashboard_title{
    text-align: center;
    margin-top: 50px;
    font-size: 32px;
    background: -webkit-linear-gradient(#720272, #7F0008);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#dashboard_options{
    margin-top: 20px;
    text-align: center;
    background: #e5e5e5;
    padding: 5px 0px;
    border-top:1px solid #ddd;
    border-bottom:1px solid #ddd;
}
#dashboard_options >button{
    transition-duration: .5s;
    opacity:0;
    top:50px;
}
#dashboard_options.active >button{
    opacity:1;
    top:0px;
}