.modalWindow {
    position: fixed;
    font-family: arial;
    font-size:80%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(255, 255, 255, 0.1);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 200ms ease-in;
    -moz-transition: opacity 200ms ease-in;
    transition: opacity 200ms ease-in;
    pointer-events: none;
    display: none;
}

/* .modalHeader h2 { color: #189CDA; border-bottom: 2px groove #efefef; } */
.modalHeader h2 { color: #189CDA; }
.modalWindow:target {
    opacity:1;
    pointer-events: auto;
    display: block;
}

.modalWindow > div {
    width: 280px;
    height: 98%;
    /* position: relative; */
    position: absolute;
    top: -1%;
    margin: 1% 1%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #fff;
    -moz-box-shadow: 0px 13px 12px #888;
    -webkit-box-shadow: 0px 13px 12px #888;
    box-shadow: 0px 13px 12px #888;
    overflow-wrap: break-word;
    overflow-y: auto;
}

@media screen and (max-width: 600px) {
    .modalWindow > div {
        width: 98%;
        height: 99%;
    }
}

.modalWindow .modalHeader { padding: 5px 20px 0px 20px; }
.modalWindow .modalContent { padding: 20px 20px 5px 20px; }
.modalWindow .modalFooter { padding: 8px 20px 8px 20px; }
.modalFooter {
    background: #ffffff;
}

.modalFooter .border-top-1 {
    border-top: 1px solid #999;
}

.modalFooter p {
    color:#202020;
    text-align:right;
    margin:0;
    padding: 5px;
}

.ok, .close, .cancel {
    background: #ffffff;
    color: #818181;
    line-height: 25px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
}

.close {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 22px;
    height: 22px;
    font-size: 10px;
}

.ok, .cancel {
    width:80px;
    float:right;
    margin-left:20px;
}

.ok:hover { background: #189CDA; }
.close:hover, .cancel:hover { background: #f87352; }
.clear { float:none; clear: both; }