.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    left: 30%;
    top: 10%;
    /*  width: 450px; Full width */
    /* height: 300px; Full height */
    overflow: auto; /* Enable scroll if needed */
    /* background-color: rgb(0,0,0); Fallback color */
    /* background-color: rgba(0,0,0,0.4); Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    /* margin: 10% auto; 15% from the top and centered */
    padding: 32px 32px 48px 32px;
    border: 1px solid #d9d9d9;
    /* width: 90%; Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 12px;
    font-weight: bold;
}

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

    /* Modal Button */
.modalbtn {
    color: #004B87;
    text-decoration: none;
}
    .modalbtn:hover {
        color: #004B87;
        text-decoration: underline
    }