/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
/* Cookie Notice
------------------------------------------------------------  */
#cookieNotice {
  right: 0 !important;
  bottom: 1rem !important;
  left: 1rem !important;
  z-index: 9999 !important;
  max-width: 450px;
  padding: 1rem !important;
  color: #000000 !important;
  text-align: justify !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.125) !important;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  -moz-animation: fadeInUp 1.5s;
  -webkit-animation: fadeInUp 1.5s;
  animation: fadeInUp 1.5s;
}
#cookieNotice h3 {
  margin-top: 0;
  font-weight: 700;
  font-size: 1.3rem;
}
#cookieNotice .learn-more {
  color: #000000 !important;
}
#cookieNotice .confirm {
  margin-left: 1.5rem !important;
  padding: .5rem 1rem !important;
  background: green !important;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
#cookieNotice .confirm:hover {
  background: #005c00 !important;
}
@media (max-width: 576px) {
  #cookieNotice {
    left: 1rem !important;
  }
}
@media (max-width: 575.98px) {
  #cookieNotice {
    right: 1rem !important;
    left: 1rem !important;
  }
}
/* LOGIN */
html {
  height: 100%;
}
body.login {
  min-height: 100%;
  background: #5f707b;
  /* IE10 Consumer Preview */
  background-image: -ms-linear-gradient(bottom, #53626c 0%, #5f707b 100%);
  /* Mozilla Firefox */
  background-image: -moz-linear-gradient(bottom, #53626c 0%, #5f707b 100%);
  /* Opera */
  background-image: -o-linear-gradient(bottom, #53626c 0%, #5f707b 100%);
  /* Webkit (Safari/Chrome 10) */
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #53626c), color-stop(1, #5f707b));
  /* Webkit (Chrome 11+) */
  background-image: -webkit-linear-gradient(bottom, #53626c 0%, #5f707b 100%);
  /* W3C Markup, IE10 Release Preview */
  background-image: linear-gradient(to top, #53626c 0%, #5f707b 100%);
}
body.login > .container {
  padding-top: 10%;
}
body.login > .container p.logotipologin {
  text-align: center;
}
body.login > .container .well.login {
  /* IE10 Consumer Preview */
  background-image: -ms-linear-gradient(top, #ffffff 0%, #e5e8ef 100%);
  /* Mozilla Firefox */
  background-image: -moz-linear-gradient(top, #ffffff 0%, #e5e8ef 100%);
  /* Opera */
  background-image: -o-linear-gradient(top, #ffffff 0%, #e5e8ef 100%);
  /* Webkit (Safari/Chrome 10) */
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #e5e8ef));
  /* Webkit (Chrome 11+) */
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #e5e8ef 100%);
  /* W3C Markup, IE10 Release Preview */
  background-image: linear-gradient(to bottom, #ffffff 0%, #e5e8ef 100%);
}
body.login > .container .well.login legend {
  font-size: 19px;
}
body.login > .container .well.login legend a {
  font-size: 17px;
}
