.dialog {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    display: flex;

}

.dialog__content {
    margin: auto;
    background: white;
    border-radius: 12px;
    min-height: 50px;
    min-width: 500px; !important;
    padding: 20px;
}

.dialogHeader {
    position: relative;
    border-bottom: 1px solid #eeeeee;
    justify-content: space-between;
    padding: 15px 15px 15px 30px;
}

.dialogFooter {
    border-top: 1px solid #eeeeee;
    flex-direction: column;
}

.dialogBody {
    position: relative;
    padding: 20px 10px;
}

.btnClose {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    font-size: 20px;
    margin: 10px;
    cursor: pointer;
    font-weight: bold;
    color: #818181;
    background: transparent;
    display: block;
    transition: 0.3s;
    /*display: block;*/
    /*height: 20px;*/
    /*width: 20px;*/
    border-radius: 25%;
    border: 1px solid black;
}

.btnClose:hover {
    color: #f1f1f1;
}