/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    /*position: fixed; */ /* Stay in place */
    position: absolute;
    z-index: 25;
    cursor: move;
    padding-top: 0px; /* Location of the box */
    left: 30;
    top: 30;
    margin-left: 0px;
    margin-top: 0px;
    width: auto; /* Full width */
    height: auto; /* Full height */
    /*overflow: auto;*/ /* Enable scroll if needed */
    border: 1px solid #888;
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    /*background-color: #fefefe;*/
    margin: 0px;
    z-index: 26;
    padding-bottom: 0px;
    border: 0px solid #888;
    /*border: 10px solid #2196F3;*/
    width: 100%;
    height: 100%;
    /*overflow-y: scroll;
    overflow-x: hidden;
    */
    /*
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;    
    */
}

/* The Close Button */
.close {
    color: #aaaaaa;
    /*color: #000000;*/
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}