﻿/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    right: 0;
    top: 50%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 9998
}

/* Modal content */
.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding:10px;
    border: 1px solid #888;
    width: 94%;
    max-width: 600px;
    font-size:11pt;
    font-family:verdana;
    position:relative;
    z-index:9999;
    bottom:0
}

/* Close button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    z-index:9999
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
