/* ----------------- VENTANA DE ACTUALIZACION -----------------------*/
.modalActualizar {
  position: fixed;
  font-family: Arial, Helvetica, sans-serif;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
  z-index: 99999;
  opacity:0;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: none;
 }

 .modalActualizar:target {
  opacity:1;
  pointer-events: auto;
 }

 .modalActualizar > div {
  width: 58px;
  position: relative;
  
  margin: 20% auto;
  padding: 13px 13px 6px;
  background: #fff;
  background: -moz-linear-gradient(#fff, #999);
  background: -webkit-linear-gradient(#fff, #999);
  background: -o-linear-gradient(#fff, #999);
  box-shadow: inset 0px 3px 2px rgba(0,0,0,1);
  -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
 }


 .modalAlerta {
  width: 100%;
  position: fixed;
  font-family: Arial, Helvetica, sans-serif;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
  z-index: 999999;
  /* opacity:0; */
  display: none;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: none;

 }

 .modalAlerta:target {
  opacity:1;
  pointer-events: auto;
 }

 #formularioAlerta {
  position: absolute;
  background: #fff;
  -moz-border-bottom-right-radius : 2px;
  -moz-border-bottom-left-radius : 2px;
    -webkit-border-bottom-right-radius : 2px;
    -webkit-border-bottom-left-radius : 2px;
      border-bottom-right-radius : 2px;
      border-bottom-left-radius : 2px;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
}

.cabeceraAlerta .icon-cross2{
  margin: 5px;
  text-decoration: none;
  font-size: 30px;
}


.cabeceraAlerta {
  height: 40px;
  background: #8A1818;
  border-bottom: 1px solid #808080;
}

 .modalAlerta #mensaje span {
    float:left;
    font-size: 20px;
    font-weight: bold;
    padding-top: 15px;
    margin-right: 20px;

 }

 .modalAlerta #mensaje #msjIco {
    
    font-size: 30px;
    margin-right: 15px;
    padding-top: 10px;

 }

 .modalAlerta #mensaje #txtMsj {
    
    color: #555555;
  
 }



 .modalAlerta #mensaje {
    padding-top: 5px;
    padding-bottom: 15px;
    margin: auto;
 }

 .pieAlerta { 
    height: 30px;
    text-align: right;
    padding-top: 40px;
    margin-right: 20px;    
}

 .btnAlert {

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #d4314b;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #010283;
    margin-top: 10px;
    margin-right: 5px;
    float: right;
 }

.btnAlert:hover {
  color:#555555;
  border: 1px solid #555555;

}

 .btnAlert:active {
    color:#555555;
    border: 1px solid #555555;
}

.icon-warning {
    
    margin-left:10px;
    margin-right: 10px;
    margin-top: 0px;
    font-size: 30px;
    color: #8A1818;
    text-decoration: none;
    cursor: default;
    
}   

.icon-info2 {
    
    margin-left:10px;
    margin-right: 10px;
    margin-top: 0px;
    font-size: 50px;
    color: #8A1818;
    text-decoration: none;
    float: left;
    
}

.icon-help {
    
    margin-left:10px;
    margin-right: 10px;
    margin-top: 0px;
    font-size: 30px;
    color: #8A1818;
    text-decoration: none;
    cursor: default;
    
}

.icon-blocked {
    
    margin-left:10px;
    margin-right: 10px;
    margin-top: 0px;
    font-size: 50px;
    color: #8A1818;
    text-decoration: none;
    float: left;
    
}

/* ----------------- FIN VENTANA DE ALERTAS Y CONFIMACIONES -----------------------*/

/* Ventanas modales de dialogos */

.modalDialogo {
  width: 100%;
  position: fixed;
  font-family: Arial, Helvetica, sans-serif;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
  z-index: 99999;
  /*opacity:0;*/
  display: none;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: none;
  overflow-y:auto;
 }

 .modalDialogo:target {
  opacity:1;
  pointer-events: auto;
  overflow-y:auto;
 }

 

 @media screen and (max-width: 700px) {


  #formularioAlerta {
      max-width: 98%;
      min-width: 95%;

  }

  .modalActualizar > div {
      margin: 50% auto;
  }

}
