/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jun 12, 2019, 12:25:19 PM
    Author     : knott
*/

#alertBox {
    position: fixed;
    width: 100%;
    z-index: 3001;
    top: 0;
    left: 0;
}

#alertBox .alert {
    border-radius: 0 !important;
    margin: 0 auto;
}

#remoteAlertBox .alert {
    margin: 0 auto;
}

#remoteAlertBox .alert~* {
    margin-top: 1rem;
}


#pageBlocker {
    z-index: 1001;
    position:fixed;
    padding:0;
    margin:0;
    top:0;
    left:0;
    width: 100%;
    background-color:rgba(0,0,0,0);
    transition: background-color 5s linear;
    height: 0;
}

#pageBlocker.show {
    height: 100%;
    background-color:rgba(0,0,0,.3);
}