﻿
.popupDialog {
    display: none;
    z-index: 2;
    /*position: absolute;
    top: 40vh;
    left: -1000px;*/
    /*height: 20vh;
    width: 20vw;*/
    background-color: white;
    border: 1px solid;
    border-color: black;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}

    /*.popupDialog.show {
        left: 40vw;
    }*/

    .popupDialog .header {
        /*height: 30px;*/
        background-color: dimgrey;
        color: white;
        height: 20px;
    }

    .popupDialog .content {
        margin: 5px;
    }

    .popupDialog .footer {
        height: 35px;
        border-top: solid;
        text-align: center;
    }

        .popupDialog .footer > input {
            margin-top: 4px;
        }

.infoPopup {
    z-index: 2147483647;
    position: absolute;
    top: 20vh;
    left: 20vw;
    /*left: -1000px;*/
    /*height: 20vh;
    width: 20vw;*/
    padding: 5px;
    background-color: white;
    border: 1px solid;
    border-color: black;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}

    .infoPopup .hidden {
        display: none;
    }

.modalOverlay {
    display: none;
    position: fixed; /* Stay in place */
    z-index: 1; /* 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 */
}
