
dialog:not([open]) {
    visibility: hidden;
    opacity: 0;
}
dialog {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 31, 54, 0.53);
    width: 100%;
    height: 100%;
    z-index: 9999999;
    border: none;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    visibility: visible;
    opacity: 1;
    transition: 0.5s all;
    perspective: 1000px;
}
dialog:not([open]) .alert {
    transform: rotateX(0) scale(1) translateX(100%);
}
dialog .alert {
    background: #FFF;
    max-width: 96%;
    max-height: 96%;
    overflow: auto;
    margin: auto;
    border-radius: 10px;
    width: 573px;
    position: relative;
    cursor: auto;
    padding: 0 15px;
    transition: 0.5s all;
    color: #103651 !important;
}
dialog .alert a.close {
    display: block;
    position: absolute;
    right: 5px;
    width: 20px;
    fill: #909090;
    height: 20px;
    top: 5px;
    cursor: pointer;
    z-index: 999;
}
dialog .alert a.close:hover {
    fill: #df0202;
}
dialog .alert .dialog_header {
    padding: 35px 15px 7px;
}
.dialog_footer {
    padding: 10px 0;
}
.dialog_footer {
    padding: 15px 0;
    text-align: right;
}