body{
  font-family: 'Times New Roman', Times, serif !important;
  /* background-color: #5D6D7E !important; */
  background-image: linear-gradient(to right top, #051937, #1c4d62, #558386, #9ebaac, #ecf2df);
  background-attachment: fixed;
}

html{
  font-family: 'Times New Roman', Times, serif !important;

}


/* BLOCKUI */
#circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
width: 150px;
  height: 150px;	
}

.loader {
  width: calc(100% - 0px);
height: calc(100% - 0px);
border: 8px solid #162534;
border-top: 8px solid #09f;
border-radius: 50%;
animation: rotate 5s linear infinite;
}

@keyframes rotate {
100% {transform: rotate(360deg);}
} 

.fondo
{
background: #ECE9E6;  /* fallback for old browsers */
background: -webkit-linear-gradient(to top, #FFFFFF, #ECE9E6);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, #FFFFFF, #ECE9E6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.colorModal
{
  background: #333333;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to bottom, #dd1818, #333333);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to bottom, #dd1818, #333333); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  
}
.blackText
{
  color:rgb(87, 85, 85) !important;
  letter-spacing: 1px;
  font-weight: bold;
}
hr.style1 {
  height: 5px;
	border: 0;
	box-shadow: 0 5px 5px -5px #8c8b8b inset;
}


/*
Full screen Modal 
*/
.fullscreen-modal .modal-dialog {
    margin: 0;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
  @media (min-width: 768px) {
    .fullscreen-modal .modal-dialog {
      width: 750px;
    }
  }
  @media (min-width: 992px) {
    .fullscreen-modal .modal-dialog {
      width: 970px;
    }
  }
  @media (min-width: 1200px) {
    .fullscreen-modal .modal-dialog {
       width: 1170px;
    }
  }
  

  .img-responsive {
    max-width: 100%;
    height: auto;
  }

  .img-responsive-movile {
    margin-left: 10%;
    max-width: 80%;
    height: auto;
  }

/* Img thumbails */
  .img {
    max-width: 150px;
    height: auto;
    margin: 5px 5px 5px 5px;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s; /* Safari */
    z-index: 1;
    }

.img:hover {
	cursor: pointer;
	-webkit-transform: scale(2,2);
    -ms-transform: scale(2,2);
    transform: scale(2,2);
    transition-duration: 1.5s;
    -webkit-transition-duration: 1.5s; /* Safari */
    z-index: 1;
    }
    

    .ul {
      list-style-type: none;
    }
    
    .li {
      display: inline-block;
    }
    
    input[type="checkbox"][id^="cb"] {
      display: none;
    }
    
    .label {
      border: 1px solid #fff;
      padding: 5px;
      display: block;
      position: relative;
      margin: 5px;
      cursor: pointer;
      z-index: 1;
    }
    
    .label:before {
      background-color: white;
      color: white;
      content: " ";
      display: block;
      border-radius: 50%;
      border: 1px solid green;
      position: absolute;
      top: -5px;
      left: -5px;
      width: 25px;
      height: 25px;
      text-align: center;
      line-height: 28px;
      transition-duration: 0.4s;
      transform: scale(0);
    }
    
    .label img {
     
      transition-duration: 0.2s;
      transform-origin: 50% 50%;
    }
    
    :checked + label {
      border-color: #ddd;
    }
    
    :checked + label:before {
      content: "✓";
      background-color: rgb(29, 173, 3);
      transform: scale(1);
    }
    
    :checked + label img {
      transform: scale(0.9);
      box-shadow: 0 0 5px #333;
      z-index: -1;
    }



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

/* VEHICULOS */

.columnHidden
{
    display: none;
}

@-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;
  }
}

/* Simple CSS3 Fade-in Animation */
@-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; } }