.modal-proman {
  display: none; /* Oculto por defecto */
  position: fixed;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 40%;
  height: 35%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
  transform: translate(-50%, -50%);
  border-radius: 20px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.modal-content-proman {
  background-color: #fefefe;
  border: 1px solid #888;
  border-radius: 20px;
  padding: 20px;
}

.abutton {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-85%, -50%);
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  background-color: rgb(255, 3, 3);
  border-radius: 5px;
  color: black;
  text-decoration: none;
  cursor: pointer;
}