.modal {
    display: none; 
    position: fixed; 
    z-index: 9999999999999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #fefefe;
    margin: auto; 
    padding: 0px;
    border: 1px solid #888;
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-content h4 {
    margin-bottom: 0px;
    padding: 20px;
    padding-bottom: 0px;
}

.modal-content p {
    margin-bottom: 0px;
    padding: 20px;
    padding-top: 0px;
}

.close {
    color: #2e3d62;
    float: right;
    font-size: 37px;
    font-weight: bold;
    position: inherit;
    right: 27px;
    top: 14px;
    z-index: 99999999999;
        opacity: .9;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}