/* ---------------------------
		   IDE0
	     01/01/20
---------------------------- */



/* ---------------------------
   			GENERICOS
---------------------------- */

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: #fff;
	background: url("../img/fondoportada.jpg") no-repeat;
	background-size: cover;
}

html, body {
    height: 100%;
}

strong {
    font-weight: 700;
}

.spacer{clear:both;display:block}
.spacer-10{clear:both;height:10px;display:block}
.spacer-20{clear:both;height:20px;display:block}
.spacer-40{clear:both;height:40px;display:block}
.spacer-90{clear:both;height:90px;display:block}
.spacer-sec{clear:both;height:160px;display:block}
.nomargin{margin:0!important}
.nopad{padding:0!important}
.pdr-0 { padding-right: 0; }
.pdl-0 { padding-left: 0; }
a { color: #FF354B; }
a:hover { color: #773b00; text-decoration: none;}
h4 { text-transform: uppercase; font-weight: 600;}
h4 span {font-weight: 400; font-size: 1.1rem;}
.pointer { cursor: pointer;}
.mt2r {margin-top: 2rem;}


.fc-title {
    color:#0d3451;
}

.img-fluid {
    display: block;
    margin: 0 auto;
}

.btn-img {
    padding: 0;
    border: none;
    background-color: transparent;
    outline: none!important;
    box-shadow: none!important;
}

.btn-red {
    background-color: #c7cf41;
    border-color: #c7cf41;
    color: #fff;
    padding: .5rem .75rem;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.btn-red.btn-sm {
    padding: .25rem .5rem;
}

.btn-red:hover,
.btn-red:focus {
    background-color: #84a93c;
    border-color: #84a93c;
    color: #fff;
}
.btn-red i {
    margin-right: 5px;
}

.btn-cent:hover {
	padding: .5rem 5rem;
}

/* ---------------------------
   	    LOGIN FORM
---------------------------- */

.login-box {
    max-width: 350px;
    margin: 80px auto 80px auto;
    text-align: center;
    font-size: 22px;
	background-color: #fff;
	-webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  	box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
	-webkit-border-radius: 10px;
  	border-radius: 10px;
	padding: 1rem;
	color: #606060;

}

.login-box input[type='text'],
.login-box input[type='email'],
.login-box input[type='password'] {
   font-size: 13px;
	text-align: center;
}

.login-box input[type='email']:focus,
.login-box input[type='password']:focus {
    border-color:#FF354B;
}

.login-box form {
    margin: 20px auto;
}

.login .logo-gates img {
    max-width: 70px;
    margin: 0 auto 20px auto;
}


/* ---------------------------
   			MODALES
---------------------------- */

.modal-header {
    min-height: 60px;
    border-bottom: none;
    padding-right: 0;
}

.modal-header .close {
    opacity: 1;
    color: #fff;
    font-size: 30px;
}

.modal-footer {
    text-align: center;
    justify-content: center;
}

.modal {
    background-color: rgba(1, 5, 8, 0.8);
}

.modal-content {
    border: none;
    background-color: transparent;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.0);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.0);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0);
}

.modal-backdrop.in,
.modal-backdrop.fade.in {
    background-color: transparent;
}

.modal-body {
    color: #fff;
    font-size: 18px;
    text-align: center;
}

.modal-dialog {
    margin: 30px auto;
    width: 95%;
}


.modal-body {
    background-color: #fff;
    color: #515151;
}

#alerta hr {
    border-color: #f08c16;
    margin-top: 6px;
    margin-bottom: 16px;
}

#cargando .modal-dialog {
    max-width: 240px;
    width: 95%;
    margin-top: 10%;
}

#cargando .modal-body {
    background-color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

#modalClose .modal-dialog {
    max-width: 600px;
}


#modalClose .modal-body {
    text-align: left;
}

#modalClose .form-check-inline {
    font-size: 13px;
}



/* ---------------------------
   	     ANIMACIONES
---------------------------- */


.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}


@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

