.Cargarflotante {
	position: absolute;
	top: 20%; /* Buscamos el centro horizontal (relativo) del navegador */
	left: 40%; /* Buscamos el centro vertical (relativo) del navegador */
	z-index:1;
}

/* funcion modal */
.inputbuttonlog {
	display:block;
	padding:10px;
	width:100%;
	background:#39403A;
	margin:10px 0;
	font-size:20px;
	border-radius:10px;
	color: white;
    cursor: pointer;
	}
.modal {
  overflow: auto;
  display: none;
  position: fixed; 
  padding-top: 50px;
  left: 0; 
  top: 0;
  width: 100%;
  height: 100%; 
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
  position: relative; 
  background-color: white;
  margin: auto; 
  width: 50%; 
  
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
	padding: 5px 20px 13px 20px;
	background: #fff;
	border-radius:5px 5px 20px 20px;
}
.close-btn {
	background: #606061;
	color: #FFFFFF;
	line-height: 25px;
	position: absolute;
	right: 1px;
	text-align: center;
	top: 1px;
	width: 44px;
	height:44px;
	padding:5px;
	text-decoration: none;
	font-weight: bold;
	border-radius:3px;
	font-size:20px;
	cursor: pointer;
}
.close-btn:hover {
	background: #FAAC58; 
	color:#222;
}
.titulomodal {
 background:#69bde4;
 height:45px;
 padding:0px;color:#FFF;
 text-align:center;
}
.piemodal {
 background:#56be01;
 height:45px; 
 padding:10px; 
 color:#FFF;
 text-align:center;
 border-radius:0px 0px 10px 10px;
}