#modal-container {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  flex-direction: column;
  z-index: 99999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: hidden; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  padding: 2% 5% 0% 5%;

}
.modal-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: white;
}

#modal-iframe{
  width: 100%;
  height: 100%;
  overflow: scroll;
  border: 0;
}

.close {
  background-color: rgba(0,0,0,0.4);
  align-self: flex-end;
  color: white;
  font-size: 3em;
  font-weight: bold;
  padding: 1px 15px 1px 15px;
}

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