/**
*   (https://www.w3schools.com/howto/howto_css_modals.asp)
*   Very easy CSS, from w3schools, two containers, the
*   first one covering all page with some opacity and Z-INDEX: 1,
*   and inside other container, in the middle.
*   Also the close button, in the top right cornet...
*/

.modal-azr {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
    background-color: rgba(0,0,0,0.4); /* Black  with opacity */ 
}

.modal-azr-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

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

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