﻿body > div.dialogwindow {
    min-width: 33%;
    max-width: 1200px;
    min-height: 200px;
    left: 0px;
    top: 0px;
    position: fixed;
    background-color: white;
    z-index: 901;
    padding:0px;
}
.dialogwindow .head {
    padding: 10px;
    background-color: #007bff;
    color: white;
    line-height: 20px;
    font-size: 20px;
}

.dialogwindow .head .close {
    cursor: pointer;
    font-weight: bold;
    font-size: 20px;
    color: white;
}
.dialogwindow .close {
    float:right;
    color:red;
}

body > div.dialogwindow-modal {
    background-color: black;
    position: fixed;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    z-index: 900;
    opacity: 0.5;
    margin: 0px;
}


.dialogwindow.admin .head {
    background-color: black !important;
    color: white !important;
}
.dialogwindow.admin .body {
    background-color: white !important;
    color: black !important;
}