/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: absolute; /* Stay in place */
  left: 50%;
  top: 50%;
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 10%;
  top: 10%;
  width: 50%; /* Full width */
  height: 60%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.1); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #ff0000;
  float: right;
  font-size: 70px;
  font-weight: bold;
  position: relative;
  z-index: 99999999999;
}

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


@media screen and (max-height: 650px) {
  .modal {width: 100%;}
  .modal {height: 100%;}
  .modal-content {padding: 5px;}
  .close {float: top;}
}
