/* GLOBAL */
/* ---------------------------------------------------- */
.btn-blue {
  background-color: #1A237E;
  width: 150px;
  color: #fff;
  border-radius: 2px
}

.btn-blue:hover {
  background-color: #4c54af;
  color: #fff;
  cursor: pointer
}

.btn-yellow {
  background-color: yellow;
  width: 150px;
  color: #fff;
  border-radius: 2px
}

.btn-yellow-mini {
  background-color: white;
  border: 1px solid rgb(216, 216, 4);
  width: 70px;
  color: black;
  border-radius: 2px
}

.btn-yellow-mini:hover {
  background-color: rgb(216, 216, 4);
  color: #fff;
}

.btn-gray {
  background-color: gray;
  width: 150px;
  color: #fff;
  border-radius: 2px
}

.btn-gray:hover {
  background-color: rgb(168, 168, 168);
  color: #fff;
  cursor: pointer
}

.bg-blue {
  color: #fff;
  background-color: #1A237E;
}

.text-link {
  font-size: 14px !important;
  color: #2867B2 !important;
}

.text-error {
  font-size: 0.875em;
  color: red;
}

/* Alert */
/* -------------------- */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
/* -------------------- */

/* Loading Bar */
/* -------------------- */
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* -------------------- */

/*JQUERY DATEPICKER*/
/* -------------------- */
.ui-datepicker-trigger {
  border-style: none;
}

.ui-datepicker-trigger {
  color: white;
  background-color: #62ae33;
  border-radius: 3px;
  width: 40px;
  border-width: 1px;
  border-color: #62ae33;
}
/* -------------------- */

/* LOGIN */
/* ---------------------------------------------------- */
#body-login {
  color: #000;
  overflow-x: hidden;
  height: 100%;
  background-color: #B0BEC5;
  background-repeat: no-repeat
}

#form-login .container-fluid {
  margin-top: 40px;
  width: 50%;
}

#form-login  .card0 {
  box-shadow: 0px 4px 8px 0px #757575;
  border-radius: 0px
}

#form-login  .card2 {
  margin: 0px 40px
}

#form-login  .logo {
  width: 200px;
  height: 100px;
  margin-top: 20px;
  margin-left: 35px
}

#form-login  .image {
  width: 360px;
  height: 280px
}

#form-login  .border-line {
  border-right: 1px solid #EEEEEE
}

#form-login  .facebook {
  background-color: #3b5998;
  color: #fff;
  font-size: 18px;
  padding-top: 5px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer
}

#form-login  .twitter {
  background-color: #1DA1F2;
  color: #fff;
  font-size: 18px;
  padding-top: 5px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer
}

#form-login  .linkedin {
  background-color: #2867B2;
  color: #fff;
  font-size: 18px;
  padding-top: 5px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer
}

#form-login  .line {
  height: 1px;
  width: 45%;
  background-color: #E0E0E0;
  margin-top: 10px
}

#form-login  .or {
  width: 10%;
  font-weight: bold
}

#form-login .text-sm {
  font-size: 14px !important;
}

#form-login  ::placeholder {
  color: #BDBDBD;
  opacity: 1;
  font-weight: 300
}

#form-login  :-ms-input-placeholder {
  color: #BDBDBD;
  font-weight: 300
}

#form-login  ::-ms-input-placeholder {
  color: #BDBDBD;
  font-weight: 300
}

#form-login  input,
textarea {
  padding: 10px 12px 10px 12px;
  border: 1px solid lightgrey;
  border-radius: 2px;
  margin-bottom: 5px;
  margin-top: 2px;
  width: 100%;
  box-sizing: border-box;
  color: #2C3E50;
  font-size: 14px;
  letter-spacing: 1px
}

#form-login  input:focus,
textarea:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid #304FFE;
  outline-width: 0
}

#form-login  button:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline-width: 0
}

#form-login  a {
  color: inherit;
  cursor: pointer
}
/* ---------------------------------------------------- */