*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin:0px;
    padding:0px;
}
html,body {
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background:#30444F;
    color: #fff;
    font-size: 13px;
    font-weight:400;
    overflow: hidden;
}
h1{
    text-align: center;
    font-size:40px;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow:0px 3px 5px rgba(0,0,0,0.2);
}
.login-container{
    position: absolute;
    top:0px;left:0px;bottom:0px;right:0px;
}
.login-bg{
    position: absolute;
    top:0px;left:0px;bottom:0px;
    width: 60%;/*
    background: url(../images/login/bg.jpg) no-repeat center;
    background-size: cover;*/
}
#slider{
    position: absolute;
    top:0px;left:0px;bottom:0px;right:0px;
}
#slider .slide{
    background-size:cover;
    background-position: center;
    width: 100%;
    height: 100%;
}
.login-bg::before{
    content: "";
    position: absolute;
    top:0px;left:0px;bottom:0px;right:0px;
    box-shadow: inset 0px 0px 100px rgba(0,0,0,0.8);
}
.login-bg::after{
    content: "";
    position: absolute;
    top:0px;left:0px;bottom:0px;right:0px;
    background: rgba(0,0,0,0.1);
}
.start-bg{
    position: absolute;
    top:0px;left:0px;bottom:0px;
    width: 60%;
    background: url(../images/login/bg2.jpg) no-repeat center;
    background-size: cover;
}
.start-bg::before{
    content: "";
    position: absolute;
    top:0px;left:0px;bottom:0px;right:0px;
    box-shadow: inset 0px 0px 100px rgba(0,0,0,0.8);
}
.start-bg::after{
    content: "";
    position: absolute;
    top:0px;left:0px;bottom:0px;right:0px;
    background: rgba(0,0,0,0.1);
}
.login-form{
    position: absolute;
    top:0px;right:0px;bottom:0px;
    width: 40%;
    background:#c0392b url(../login/img/login-bg.jpg);
    padding:50px;
    z-index: 10;
}
.login-form form{
}
.control{
    padding:0 0 10px;
}
.inputbox{
    width: 100%;
    padding:10px;
    text-align: center;
    color:#555;
    border:none;
    background: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    font-size:18px;
}
.inputbox:focus{
    border:none;
    outline:none;
    background: #fff;
}
select{
    width: 100%;
    padding:10px;
    text-align: center;
    color:#333;
    border:none;
    background: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    font-size:14px;
}
.buttonset{
    overflow: hidden;
}
.buttonset .button:first-child{
    width: 49%;
    float:left;
}
.buttonset .button:last-child{
    width: 100%;
    float:right;
    text-align: center;
}
.button{
    background: #f39c12;
    color:#fff!important;
    padding:12px 15px;
    border:none;
    width:100%;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    font-size:16px;
    margin-bottom: 10px;
    border:none;
   /* border-bottom: 5px solid rgba(0,0,0,0.3);*/
    box-shadow: 0px 1px 3px rgba(0,0,0,0.3);
    text-decoration: none!important;
}
.button-submit{
    background: #3498db;
    color:#fff;    
}
.login-info{
    padding-left:50px; 
}
.link{
    overflow: hidden;
    position: absolute;
    top: 50%;
    right: 100%;
    width: 100px;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    background: #333;
    border-radius: 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px;
}
.link a{
    color:#fff;
    text-decoration: none;
    text-align: center;
    vertical-align: top;
    font-size:11px;
    padding:15px;
    text-transform: uppercase;
    display: block;
    font-weight: bold;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.link a:last-child{
    border:none;
}
.link a .fa{
    font-size: 30px;
    display: block;
    margin-bottom: 15px;
}
.link a img{
    display: block;
    margin: 0 auto;
    width: 40px;
    margin-bottom: 15px;
}
.link a:hover{
    color:#fff;
}
#logo{
    position: absolute;
    bottom:0px;left:0px;right:0px;
    padding:10px 30px;
    background: rgba(0,0,0,0.2);
}
#logo img{
    height:80px;
    float: left;
}
#logo h2{
    font-size:16px;
    text-transform: uppercase;
    margin:10px 0 5px 110px;
}
#logo p{
    margin-left: 110px;
    color:rgba(255,255,255,0.5);
    font-size: 11px;
}
#notification{
    text-align: center;
    padding:15px;
    margin-bottom: 15px;
}
#notification.failed{
    background: #c0392b;
    color:#fff;
}
#notice{
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding:15px;
    margin-bottom: 15px;
}
.overlay{
    position: fixed;
    top:0px;left:0px;bottom:0px;right:0px;
    background: rgba(0,0,0,0.8);
    overflow: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition:all 200ms ease-in-out;
    z-index: 9999;
}
.overlay h2{
    margin-bottom: 30px;
    font-weight: 200;
}
.overlay.active{
    visibility: visible;
    opacity: 1;
}
.overlay .box{
    background:#fff;
    border-radius: 5px;
    color:#333;
    width: 600px;
    max-width: 100%;
    display:block;
    overflow: hidden;
    transition:all 200ms ease-in-out;
    transform:translate3d(0,100px,0);
}
.overlay.active .box{
    transform:translate3d(0,0,0);
}
.overlay .box.box-sm{
    width: 400px;
}
.overlay .box .box-header{
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    background: #c0392b;
    color: #fff;
}
.box-bg{
    width: 600px;
}
.box-bg .bg{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
    width: 200px;
    border-radius: 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px;
}
.box-bg .content{
    margin-left: 200px;
}
.box-legend{
    background: rgba(0,0,0,0.1);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}
.box-inner-scroll{
    min-height: 200px;
    overflow: auto;
    padding: 15px 0;
}
.btn-download{
    background: #F39C12;
    color: #fff!important;
    text-decoration: none!important;
    border-bottom: 2px solid rgba(0,0,0,0.2);
    border-radius: 3px;
    padding: 5px;
    white-space: nowrap;
}
table.data{
    border-collapse: collapse;
    width: 100%;
}
table.data td{
    padding: 10px;
}
table.data tr{
    background: #fff;
}
table.data tr:nth-child(even){
    background: #f5f5f5;
}
.overlay .close{
    position: absolute;
    top:5px;right:20px;
    font-size:40px;
    color:#aaa;
    font-weight: 200;
    text-decoration: none;
}
.overlay .box-inner{
    margin:50px;
}
.overlay .box-inner-sm{
    margin:0px;
}
.overlay .box-inner-sm h2{
    font-weight: 200;
    margin:30px 30px 0;
}
.overlay.error .box{
    animation: shake .6s linear;
}
.clearfix{
    clear: both;
}
.overlay .box .form-group{
    margin-bottom: 10px;
    width: 100%;
}
.overlay .box .inputbox{
    text-align: left;
    width: 100%;
    font-size:14px;
}
.overlay .box select{
    background: #ddd;
}
.overlay .box a{
    color:#f39c12;
}
.preloader{
    position: fixed;
    top:0px;left:0px;bottom:0px;right:0px;
    z-index: 9999;
    /*background: #354A5E;*/
    background:#c0392b url(../images/login/login-bg.jpg);
     display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#fff;
    transform:translate3d(0,0,0);
    -webkit-transform:translate3d(0,0,0);
    transition:all 300ms linear;
    -webkit-transition:all 300ms linear;
}
.preloader.pull{
    transform:translate3d(0,-100%,0);
    -webkit-transform:translate3d(0,-100%,0);
}
.preloader .box{
    text-align: center;
}
.preloader h2{
    font-size: 30px;
    font-weight: 200;
}
.preloader img{
    margin-top: 30px;
}
.preloader .loading{
    width: 400px;
    height: 170px;
    background: url(../images/login/loading.gif) no-repeat center;
    background-size: cover;
}
.skip-preloader{
    position:fixed;
    top:0px;
    left:50%;
    width: 300px;
    margin-left: -150px;
    text-align: center;
    padding:5px 10px;
    background: rgba(255,255,255,0.2);
    color:#fff!important;
    text-decoration: none!important;
    display: block;
    transition:all 300ms;
    -webkit-transition:all 300ms;  
    transform:translate3d(0,-100%,0);
    -webkit-transform:translate3d(0,-100%,0);
    visibility: hidden;
    opacity: 0;
    z-index: 99999;
}
.skip-preloader.on{
    visibility: visible;
    opacity: 1;
    transform:translate3d(0,0,0);
    -webkit-transform:translate3d(0,0,0);
}
.skip-preloader.hide{
    display: none!important;
}
.skip-preloader:hover{
    background: rgba(255,255,255,0.4);
}
.spinner {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #fff;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}
p.help-block-error{
    color:rgba(255,255,255,0.5)!important;
    background: rgba(0,0,0,0.3);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    line-height: 30px;
    text-align: center;
}
@media (max-width: 1200px) {
    .link a{
        font-size:8px;
    }
    .link a .fa{
        font-size:30px;
    }
}
@media (max-width: 768px) {
    html,body{
        overflow: auto;
    }
    h1{
        font-size: 30px;
    }
    #slider{
        position: fixed;
        top:0;left:0;bottom:0;right:0;
    }
    .login-bg{
        top:0px;left:0px;bottom:0;right:0;
        width: 100%;
        background-attachment: fixed;
    }
    .login-form{
        top:auto;left:auto;bottom:auto;right:auto;
        position: relative;
        width: 100%;
        margin:0 auto;
        background: rgba(0,0,0,0.5);
        z-index: 999!important;
    }
    .login-form form{
        z-index: 999;
        position: relative;
        overflow: hidden;
    }
    #logo{
        position: relative!important;
        top:auto!important;left:auto!important;bottom:auto!important;right:auto!important;
        background: none;
        padding:0px;
    }
    #logo img{
        max-width: 100%;
        height: auto;
    }
    .inputbox{
        font-size: 12px;
    }
    .button{
        font-size:12px;
    }
    .column-left,.column-right{
        float: none;
        padding:0px;
        width: 100%;
    }
    .overlay{
        overflow: hidden;
    }
    .overlay .box{
        position: fixed;
        top:0;left:0;bottom:0;right:0;
        overflow: auto;
        width: 100%;
    }
    .link{
        margin:30px 0;
    }
    .link a{
        width: 50%;
        border:none;
        margin-bottom: 15px;
    }
}