﻿.dialog-backdrop {
    background-color: rgb(0 0 0 / 9%);
    /*background-color: rgba(0, 0, 0, 0.45);*/
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 4;
}

.dialog {
    /*width: 500px;*/
    position: absolute;
    top: 5%;
    z-index: 1020;
    background-color: #FFF;
    border-radius: 6px;
    display: none;
}

.dialog-header {
    color: #FFF;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

    .dialog-header h5 {
        margin: 0;
        padding: 0 10px 0 10px;
        line-height: 40px;
        color: #FFF;
    }

        .dialog-header h5 .close-dialog {
            float: right;
            text-decoration: none;
            color: #FFF;
        }

.dialog-footer {
    background-color: #F1F1F1;
    padding: 0 10px 0 10px;
    line-height: 40px;
    text-align: right;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top: solid 1px #CCC;
}

.dialog-body {
    padding: 15px;
    color: black;
}
