/*
 *  jquery-loading - v1.0.3
 *  Easily add and manipulate loading states of any element on the page
 *  http://github.com/CarlosBonetti/jquery-loading
 *
 *  Made by Carlos Bonetti
 *  Under MIT License
 */

.loading-overlay {
    display: table;
    opacity: .7;
}

.loading-overlay-content {
    display: table-cell;
    font-size: 1.15em;
    font-weight: 700;
    letter-spacing: .4em;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
}

.loading-overlay.loading-theme-light {
    background-color: #fff;
    color: #000;
}

.loading-overlay.loading-theme-dark {
    background-color: #000;
    color: #fff;
}

.ie .custom-overlay {
    background-color: rgb(0, 0, 0);
    filter: alpha(opacity=15);
    zoom: 1;
}

.custom-overlay {
    background-color: rgba(0, 0, 0, 0.05);
    bottom: 0px;
    left: 0px;
    position: fixed;
    right: 0px;
    top: 0px;
    z-index: 1000000;
}


.wait { }