﻿.modal-dialog-backdrop {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: .2;
    z-index: 9999;
    display: none;
    opacity: 0.2;
    background-color: black;
}

.dialogs-wrapper {
    display: none;
    top: 84px;
    z-index: 10000;
    position: absolute;
    width: 100%;
}

.dialogs-wrapper * {
    box-sizing: border-box;
}

.prompt-dialog {
    display: none;
    width: 400px;
    border: 1px solid gray;
    margin-left: auto;
    margin-right: auto;
}

.dialog-body-area {
    padding: 5px;
    background-color: #e0edff;
}

.textarea {
    width: 100%;
    height: 120px;
    resize: none;
    margin-top: 5px;
}

.dialog-title-area {
    border-bottom: 1px solid gray;
    overflow: hidden;
    background: linear-gradient(#e0edff,#c1dbfa,#d5e4f4);
    color: #5368b7;
    padding-top: 0.5em;
    border-bottom: solid 1px #a3c0e8;
    height: 28px;
    padding-left: 5px;
    padding-right: 5px;
}

.dialog-footer {
    padding-bottom: 5px;
    text-align: right;
    padding-right: 5px;
    background-color: #e0edff;
}

.dialog {
    box-shadow: 2px 2px 9px rgba(0,0,0,.2);
}