/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99999999999999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(255, 255, 255, 0.73); /* Black w/ opacity */
    
}
.centradorMODAL{
    display: flex;
  align-items: center;
  justify-content: center;
    height: 100%;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 0; /* 15% from the top and centered */
  padding: 0px;
  /*border: 1px solid #888;*/
  width: 80%; /* Could be more or less, depending on screen size */
    max-width: 800px;
    position: relative;
}

.modal-content img{
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
}

/* The Close Button */
.close {
      color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    background-image: url(close-icon.png);
    height: 80px;
    width: 80px;
    display: block;
    position: absolute;
    z-index: 2;
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: top 10px right 10px;
    right: 0;
    top: 0;
    background-color: transparent;
    padding: 20px;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}