/* Mensajeria Modal (parametrizado) */
.msgModal {
  display: none; /* Oculto por default */
  position: fixed; /* en una sola posición   fixed; */
  z-index: 1; /* desde arriba */
  left: 0;  /*  0; */
  top: 0;   /*  0; */
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* activa el scroll se lo necesita */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.msgModal-content {
  background-color: #fefefe;
  margin: 22% auto; /* 15% desde arriba y centrado */
  padding: 20px;
  border: 1px solid #888;
  width: 50%; /* dependiendo del tamaño de la pantalla */
  border-radius: 10px;
}

/* Cierra ventana Button */
.msgClose {
  color: #aaa;
  float: right;
  font-size: 35px;
  font-weight: bold;
}

.msgClose:hover,
.msgClose:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}

#msgTexto {
  color: black;
  font-size: 16px;
}
