
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100000; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    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-header {
    background-color: #005BDF;
    color: white;
    font-weight: bold;
    display: block;
    text-align: center;
    vertical-align: middle;
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    /*border: 1px solid #888;*/
    width: 600px;
    min-height: 100px; /* overrides height and max-height */
    height: auto !important;
    max-height: 600px;
    padding: 2px;
}

.modal-body {
    background-color: #f1f1f1;
    /*        width: 600px;
    */ color: #000;
    padding: 20px;
    /*min-height: 100px;*/ /* overrides height and max-height */
    /*height: auto !important;
            max-height: 600px;*/
    overflow-y: auto;
    white-space: pre-wrap;
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: #fefefe;
        text-decoration: none;
        cursor: pointer;
    }

