
.dialogBox {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-image: url(images/wood.jpg); */
    /* background-size: 100%; */
    z-index: 3;
    xcursor: pointer;
    xdisplay: none;
    display: block;
    background-color: #00000082;
}
.dialogBox .close {
    color: #FFFFFF;
    font: 20px/100% arial, sans-serif;
    position: absolute;
    right: 10px;
    top: 10px;
    content: '✖';
    /* UTF-8 symbol */
}
.dialogBox .background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-color: #00000082; */
    background: rgba(0, 0, 0, 0.5);
}

.dialogBox .dialogBoxWindow {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /* left: 0px; */
    background-color: #333333;
    xbackground-color: #00000087;
    max-width: 100%;
    max-height: 100%;
    /* width: 500px;
    height: 400px; */
    width: 85%;
    xheight: 85%;
    background-color: #333333;
    box-sizing: border-box;
    xoverflow: auto;
    display: flex;
    flex-flow: column;

}

.dialogBox header {
    background-color: #479ace;
    padding: 10px 10px;
    position: relative;
    font-size: 20px;
    text-align: center;
    min-height: 20px;
}

.dialogBox main {
    background-color: #333333;
    padding: 10px 15px;
    flex-grow: 1;
    overflow: auto;
}