html, body {
    height: 100%;
  background-color: #f5f1f1 !important;
}

.jumbotron.vertical-center {
margin-bottom: 0; /* Remove the default bottom margin of .jumbotron */
}

.vertical-center {
min-height: 100%;  /* Fallback for vh unit */
min-height: 100vh; /* You might also want to use
                      'height' property instead.
                      
                      Note that for percentage values of
                      'height' or 'min-height' properties,
                      the 'height' of the parent element
                      should be specified explicitly.

                      In this case the parent of '.vertical-center'
                      is the <body> element */

/* Make it a flex container */
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex; 

/* Align the bootstrap's container vertically */
  -webkit-box-align : center;
-webkit-align-items : center;
     -moz-box-align : center;
     -ms-flex-align : center;
        align-items : center;

/* In legacy web browsers such as Firefox 9
   we need to specify the width of the flex container */
width: 100%;

/* Also 'margin: 0 auto' doesn't have any effect on flex items in such web browsers
   hence the bootstrap's container won't be aligned to the center anymore.

   Therefore, we should use the following declarations to get it centered again */
       -webkit-box-pack : center;
          -moz-box-pack : center;
          -ms-flex-pack : center;
-webkit-justify-content : center;
        justify-content : center;
        
        
 background-color: #f5f1f1!important;       
        
}

.container .footer .azul{
  background-color: #0066B6;
  height: 18px;
border-bottom-left-radius: 3px;	
}

.container .footer .rojo{
  background-color: #EB3836;
  height: 18px;
border-bottom-right-radius: 3px;
}

.panel-caja{
  max-width: 900px;
  min-width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 10px;
 
  box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
}

.caja{
  height: 370px;
  padding: 15px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  /* Firefox v3.5+ */
  -moz-box-shadow:1px 1px 3px rgba(0,0,0,0.25);
  /* Safari v3.0+ and by Chrome v0.2+ */
  -webkit-box-shadow:1px 1px 3px rgba(0,0,0,0.25);
  /* Firefox v4.0+ , Safari v5.1+ , Chrome v10.0+, IE v10+ and by Opera v10.5+ */
  box-shadow:1px 1px 3px rgba(0,0,0,0.25);
  -ms-filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=0,Color=#a5000000,Positive=true)";
  filter:progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=0,Color=#a5000000,Positive=true);
  
}

.panel-footer{
  padding: 0px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
}


.form-control{
  border: 2px solid #eeeeeeb0;
  -webkit-box-shadow: inset 0 0px 0px rgba(0,0,0,.075);
  box-shadow: inset 0 0px 0px rgba(0,0,0,.075);	
  border-radius: 7px;
  width: 55% !important;
  margin-right: 0;
  height: 50px;
  float: right;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.btn{
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 5px;
  height: 50px;
}

.btn-primary{

color: #fff;
background-color: #6396ff;
border-color: #68AACE;	
}

.contenedor-input-codigo{
  padding-right: 0;
}

.contenedor-boton-codigo{
  padding-left: 0;
}

.titulo-buscador{
  color: #090707;
  font-size: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.alert{
  margin-top: 100px;
}

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

.lupa{
  width: 140px;
  height: 125px;
}

.margen-top{
  margin-top:70px;
}

@media (max-width: 992px) {
  .form-control{
      border: 2px solid #eeeeeeb0;
      -webkit-box-shadow: inset 0 0px 0px rgba(0,0,0,.075);
      box-shadow: inset 0 0px 0px rgba(0,0,0,.075);	
      border-radius: 7px;
      width: 75% !important;
      margin-right: 0;
      height: 50px;
      float: right;
      font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  }
}

@media (max-width: 768px) {
  .form-control{
      border: 2px solid #eeeeeeb0;
      -webkit-box-shadow: inset 0 0px 0px rgba(0,0,0,.075);
      box-shadow: inset 0 0px 0px rgba(0,0,0,.075);	
      border-radius: 7px;
      width: 100% !important;
      margin-right: 0;
      height: 50px;
      float: right;
      font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  }
}

.rotar{
   rotate: -16deg; 
   width: 710px;
   position: absolute;
   margin-left: -735px;
   margin-top: -41px;
}

@media (max-width: 992px) {
    .rotar{
        display: none;
    }
  }

  .caja-imagen{
    height: 350px;
  }

















 