/* Style the modal box */
.modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
}

/* Style the modal content */
.modal-content {
    background-color: #fefefe;
    color: red;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    max-width: 700px;
    width: 80%;
    box-sizing: border-box;
    border-radius: 5px;
    position: relative;
    z-index: 99999;
    font-weight: bold;
    font-size: large;
}

/* Style the close button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
