div#_customDialog::before
{
    background: none repeat scroll 0 0 transparent;
    box-shadow: 0 0 8px 0 black;
    content: "";
    display: block;
    height: 100%;
    position: relative;
    width: 100%;
}

@keyframes alert
{
    from
    {
        box-shadow: 0 0 0 99999px rgba(0,0,0, 0.1);
    }
    to
    {
        box-shadow: 0 0 0 99999px rgba(0,0,0, 0.5);
    }
}

@-webkit-keyframes alert
{
    from
    {
        box-shadow: 0 0 0 99999px rgba(0,0,0, 0.1);
    }
    to
    {
        box-shadow: 0 0 0 99999px rgba(0,0,0, 0.5);
    }
}

div#_customDialog
{
    -webkit-animation-name: alert;
    -webkit-animation-duration: 2s;
    -webkit-animation-name: alert;
            animation-name: alert;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    box-shadow: 0 0 0 99999px rgba(0,0,0, 0.5);
    pointer-events: all !important;
}

div#_customDialog > *
{
    margin-top: 11%;
    position: absolute;
    top: 0;
}

._bodydialogModal
{
    pointer-events: none;
    /*position: fixed;*/
/*    overflow-y: scroll;
    width: 100%;*/
}

