.modal-loading {
    display:    none;
    position:   fixed;
    z-index:    99999;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba(0,0,0,0.1) 
                url('../images/ajax-loader.gif') 
                50% 50% 
                no-repeat;
}

body.loading {
    overflow: hidden;   
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .modal-loading {
    display: block;
}


.loadingItems {
    display:    none;
    z-index:    99999;
    top:        0;
    left:       0;
    height:     250px;
    width:      100%;
    background:  rgb(255 255 255 / 10%) url(../images/ajax-loader.gif) 50% 50% no-repeat;
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .loadingItems {
    display: block;
}

