/* The Modal (background) */
.modal {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    display: block; /* Visible by default - toggle between block and none */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 90%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(174, 214, 241); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #AED6F1   ;
    margin: auto;
    padding: 10px;
    border: 1px solid #888;
    width: 95%;
    height: 95%;
    overflow: scroll;
}

/* The Close Button */
.modal-close {
    color: #777777;
    float: right;
    font-size: 24px;
    font-weight: bold;
    text-align: right;
    vertical-align: middle;
}

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