﻿/*Custom Modal Popup*/
.modalPopup {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* 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 */
}

.modalPopupZ9999 {
    z-index: 9999;
}

/* Modal Content/Box */
.modalPopupContent {
    background-color: #fefefe;
    margin: 50px auto; /* 15% from the top and centered */
    border: 1px solid #888;
    width: 70%;
}

    .modalPopupContent input[type="text"], .modalPopupContent input[type="label"], .modalPopupContent span {
        border-top: none;
        border-left: none;
        border-right: none;
    }

    .modalPopupContent .errorMsg {
        padding-bottom: 10px !important;
    }

@media screen and (max-width:600px) {
    .modalPopupContent {
        width: 95% !important;
    }
}

.modalPopupContent .modalHeader .modalButton {
    float: right;
    padding: 0 10px 0 0 !important;
    color: white;
    background: rgb(8,109,176);
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.modalPopupContent .modalHeader {
    background-color: rgb(8,109,176);
    padding: 10px;
    color: white;
    font-size: 20px;
    font-family: Calibri;
}

.modalPopupContent .modalBody {
    padding: 10px;
    background-color: white;
    min-height: 50px;
}

.modalPopupContent .modalFooter {
    padding: 10px;
    border-top: solid 1px rgba(128, 128, 128, 0.2);
}
