﻿/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    padding: 1em;
    font-size: 1.5em;
    line-height: 1.5em;
    margin-top: 5em;
}

/* The Close Button */
.closemodal {
    color: #aaa;
    float: right;
    margin: 0px;
    font-size: 1.8em;
    font-weight: normal;
}

.closemodal:hover,
.closemodal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


