/*
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 : 10-Feb-2016, 18:13:03
    Author     : Brent Young
*/
#ajaxLoadingBackdrop.modal-backdrop {
    display: none;
    z-index: 999998;
}
#ajaxLoading.loading {
    display: inline-block;
    font-weight: bold;
    display: none;
    text-transform:capitalize;
    position: fixed;
    top: 49%;
    left: 50%;
    z-index: 999999;
    font-size: 20px;
    padding-left: 20px;
    border: 3px solid #31708f;
    border-radius: 10px;
}

[class*='glyphicon'].animate {
    -animation: spin 1.2s infinite linear;
    -webkit-animation: spin2 1.2s infinite linear;
}

@-webkit-keyframes spin2 {
    from { -webkit-transform: rotate(0deg);}
    to { -webkit-transform: rotate(360deg);}
}

@keyframes spin {
    from { transform: scale(1) rotate(0deg);}
    to { transform: scale(1) rotate(360deg);}
}