.__dialog{
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background: #f8f8f8;
}
.__dialog .dialog-header{
    height: 5rem;
    line-height: 5rem;
}
.__dialog .dialog-content{
    text-align: center;
    overflow: auto;
}
.__dialog .dialog-close{
    cursor: pointer;
    position: fixed;
    text-align: center;
    top: 1rem;
    right: 1rem;
    line-height: 3rem;
    height: 3rem;
    width: 3rem;
    color: white;
    background: rgba(0,0,0,.35);
    border-radius: 50%;
    z-index: 999999;
    -webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;
}