html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1.15;
    font-family: 'Nanum Gothic', sans-serif;
    background: #43C6AC;
    opacity: 0.98;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #F8FFAE, #43C6AC);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #43C6AC, #43C6AC); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, 
blockquote:after,
q:before, 
q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a{
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    text-decoration:none;
    outline:none;
}
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a:hover,
a:focus{
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    text-decoration:none;
    outline:none;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #ccc;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #ccc;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #ccc;
}
:-moz-placeholder { /* Firefox 18- */
    color: #ccc;
}
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px white inset !important;
}
/*---------------START----------------*/
#login{
    position: relative;
    float: left;width: 100%;
    height: 100vh;
    background: rgb(2,0,36);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(248,255,174,1) 0%, rgba(177,233,173,1) 59%, rgba(67,198,172,1) 100%);
}
.login-outer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;    
    max-width: 1200px;
    width: 100%;
}
.login-outer img{
    width:600px;
}
.login-box{
    max-width: 480px;
    width: 100%;
    padding: 50px 30px;
}
.login-box .form-group{
    margin-bottom: 30px;
}
.login-box h1{
    font-size: 26px;
    line-height: 32px;
    font-weight: 800;
    margin-bottom: 50px;
}
.login-box label{
    font-size: 18px;
    color: #1f1f1f;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
    line-height: 20px;    
}
.login-box .form-control{
    height: 50px;
    line-height: 36px;
    font-size: 18px;
    color: #000;
    border-radius: 6px;
    font-weight: 500;    
    padding:12px 15px;
    background-color: rgba(255,255,255,0.6);
    border:1px solid #fff; 
}
.btn-green{
    display: block;
    height: 50px;
    text-align: center;
    border-radius: 6px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 50px;
    font-weight: 800;
    color: #ffffff;
    background-color: #1f1f1f9e;
    width: 100%;
    border:0px;
    cursor: pointer;
}
.btn-green:hover,
.btn-green:focus{
    color: #ffffff;
    -webkit-box-shadow: 0px 5px 34px -6px rgba(0,0,0,0.33);
    -moz-box-shadow: 0px 5px 34px -6px rgba(0,0,0,0.33);
    box-shadow: 0px 5px 34px -6px rgba(0,0,0,0.33);
}
#dashboard{
    float: left;
    /*overflow-y: scroll;*/
    width: 100%;
    /*background:url(../images/bg-img.jpg) no-repeat;*/
    background-size: cover;
    height: 100%;
    position: relative;
    background: #43C6AC;
    opacity: 0.98;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #F8FFAE, #43C6AC);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #F8FFAE, #43C6AC); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.outerlayer{
    float: left;
    width: 100%;
    height: 100%;
    position: absolute;
    top:0px;
    left:0px;
}
.header{
    float: left;
    padding: 0px 30px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
}
.header h1{
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
}
.dashboardcontent{
    position: relative;
    z-index: 99;
    width: 100%;
}
.projectlsitouter{
    width: 100%;
    text-align: center;
}
.projectlist{
    width: 100%;
    margin: 0 auto;
    max-width: auto;
    height: 100%;
    min-height: 380px;
    /*overflow-y: scroll;*/
    padding: 0px 20px 60px;
    margin-bottom: 10%;
    float: left;
}
.projectlist li{
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.projectlist li span{
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    color: #1f1f1f;
    margin-top: 15px;
}
.projectlist li a{
    width: 100%;
    height: auto;
    max-height: 200px;
    background-color:#ffffff;
    opacity: 0.6;
    border-radius: 30px;
    padding: 10px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin: 0px 0 32px;
    align-items: center;
     -webkit-transition: all 0.3s ease-in-out 0s;
     -moz-transition: all 0.3s ease-in-out 0s;
     transition: all 0.3s ease-in-out 0s;
-webkit-box-shadow: 0px 5px 23px -9px rgba(0,0,0,0.3);
-moz-box-shadow: 0px 5px 23px -9px rgba(0,0,0,0.3);
box-shadow: 0px 5px 23px -9px rgba(0,0,0,0.3);    
}
.projectlist li a:hover,
.projectlist li a:focus{
     opacity: 1;   
     -webkit-transition: all 0.3s ease-in-out 0s;
     -moz-transition: all 0.3s ease-in-out 0s;
     transition: all 0.3s ease-in-out 0s;
}
.projectlist li a img{
    width: 220px;
}
.projectlist::-webkit-scrollbar,
.projectlist::-moz-scrollbar {
    width: 0px;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
 }
/*----------------END-----------------*/
label.error{color:#FF0000 !important;line-height: 15px;margin-top: 5px;font-size: 13px !important;text-transform: capitalize;}
.errorcls{display: none !important;}
#login_loader img{width: auto;text-align: center;display: table;margin: 15px auto;}
.login-page .form-login-error.form-login-error p{padding: 10px;color:#FFF;margin: 0;}
.dropdown li a{cursor: pointer;}
/*.projectlistouter{float: left;}*/
.logout{float: right; position: relative; left:20px; top: -5px;}
.logout img{width: 50px !important;}