img {
  vertical-align: middle;
  border-style: none;
}
.img-fluid {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
  max-width: 100%;
  height: 180px;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
  max-width: 100%;
  height: 250px;
} 
#contenedor_carga {
  background-color: rgb(250, 240, 245, 0.9);
  height: 100%;
  width: 100%;
  position: fixed;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  z-index: 10000;
}
#carga {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;  
 -webkit-animation: girar 1.5s linear infinite;
 -o-animation: girar 1.5s linear infinite;
 animation: girar 1.5s linear infinite;
}
 @keyframes girar {
   from {transform: rotate(0deg);}
   to {transform: rotate(360deg);}
 }
/*# sourceMappingURL=adminlte.css.map */