/* Login */
@import url(http://fonts.googleapis.com/css?family=Raleway:800,700,400);
#con-login {
  background: url(../asset/bg/bg_login.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  text-align: center;
}
.login-form {
  margin: 10px auto 20px auto;
  max-width: 400px;
}
#logo_brand {
  width: 80%;
  margin: 50px 0px 0px 0px;
}
.navbar-inverse {
  border: none;
  background-color: #4e4e4e;
  box-shadow: 0px 2px 16px #666666;
}
.noborder {
  border-radius: 0px;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    opacity: 1\9; /* IE9 only */
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
    opacity: 1\9; /* IE9 only */
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    opacity: 1\9; /* IE9 only */
  }
  to {
    opacity: 1;
  }
}
.fades-in {
  opacity: 0; /* make things invisible upon start */
  -webkit-animation: fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;

  -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;

  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
}
.fades-in.one {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.fades-in.two {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.fade-in.three {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
}
.welcome {
  font-family: "Raleway", serif;
  text-align: center;
}
.modal.in .modal-dialog {
  position: fixed;
  bottom: 0px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.nav-tabs > li > a {
  border: none;
  color: #fff;
  font-weight: bold;
}

.nav-tabs > li.active > a,
.nav-tabs > li > a:hover {
  border: none;
  color: #ffcc00 !important;
  background: transparent;
}

.nav-tabs > li > a::after {
  content: "";
  background: #ffcc00;
  height: 2px;
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: -1px;
  transition: all 250ms ease 0s;
  transform: scale(0);
}

.nav-tabs > li.active > a::after,
.nav-tabs > li:hover > a::after {
  transform: scale(1);
}

.tab-nav > li > a::after {
  background: #21527d none repeat scroll 0% 0%;
  color: #fff;
}

.tab-content {
  padding: 20px;
}

.nav-tabs > li > a {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.form-control {
  border-radius: 0px !important;
}
