 /* The Modal (background) */
div.modal {
    display: none; /* Hidden by default */
    align-items: center;
    position: fixed; /* Stay in place */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: hidden; /* No scroll */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.75); /* Black w/ opacity */
    z-index:2;
}

div.modal.visible{
    display: flex; 
}

 /* Modal Header */
div.modal-header {
    padding: 2px 16px;
    color:#FFFFFF;
    position:absolute;
    right:0;
    top:0;
}

div.modal-footer {
    padding: 2px 16px;
    background-color: #555555;
    color: white;
}

/* Modal Content/Box */
div.modal-content {
    margin: auto;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width:800px;
    position: relative;
    padding: 0;
    overflow:auto;
    max-height:99%;
}

div.modal-body {
    background-color: #555555;
    padding:50px;
    color: #fff;
}

div.modal-body h2 {
    font-family:"Intel Clear Pro", Helvetica, Arial, sans-serif;
    color: #FFFFFF;
    text-transform: uppercase;
    margin:0px;
    padding:0px;
    margin-bottom:36px;
    font-size:70px;
    font-weight:200;
}

div.modal-body h3 {
    font-family:"Intel Clear", Helvetica, Arial, sans-serif;
    font-size:18px;
    color: #FFFFFF;
}

div.modal-body p {
    color: white;
    font-size:15px;
}

div.modal-body a {
    color: #3AC7FC;
    text-decoration: none;
}

/* The Close Button */
div.modal span.close-modal {
    color: #43C7FA;
    position: absolute;
    top:0px;
    right:0px;
    width:50px;
    height:50px;
    display:block;
    text-align:center;
    font-size: 50px;
    font-weight: 100;
    font-family: sans-serif;
}

div.modal span.close-modal:hover,
div.modal span.close-modal:focus {
    color: #43C7FA;
    text-decoration: none;
    cursor: pointer;
} 

div.modal hr {
    margin:25px 0px 25px 0px;
}	

div.modal span.mono {
    background-color:transparent;
}
