

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

.loading_gif{
    display:    none;
    position:   fixed;
    z-index:    1000;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, .8 ) 
                url('../loading.gif') 
                50% 50% 
                no-repeat;
}

.adaptive_loading_gif {
    display:    none;
    background: rgba( 255, 255, 255, .8 ) 
                url('../loading.gif') 
                50% 50% 
                no-repeat;
}

.small_loading_gif {
    display:    none;
    height:     20px;
    background: rgba( 255, 255, 255, .8 ) 
                url('../loading.gif') 
                50% 50% 
                no-repeat;
    background-size: 2vh 2vh;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading {
    overflow: hidden;   
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .modal {
    display: block;
}



/* Progressbar vertikal zentrieren */
.table > tbody > tr > td {
    vertical-align: middle !important;
}
.table > tbody > tr > td > .progress {
    margin-bottom: 0px !important;
}

div.pending {
    color: black;
    background-color: #d9534f;
}

td.running {
    color: black;
    background-color: #5cb85c;
}

td.pending {
    color: black;
    background-color: #f0ad4e;
}

td.ended {
    color: white;
    background-color: #d9534f;
}

td.unknown {
    color: white;
    background-color: grey;
}

td.good {
    color: black;
    background-color: #5cb85c;
}

td.fair {
    color: black;
    background-color: #f0ad4e;
}

td.bad {
    color: white;
    background-color: #d9534f;
}
