/********************************************************************************
--- Demo Web App List ---
*********************************************************************************/

.web-app-list {
    counter-reset: section;
}

/*
.web-app-list > div:before {
    counter-increment: section;
    content:counter(section) ". ";
    font-weight: bold;
}
*/

/********************************************************************************
--- Loading Overlay & Animation ---
*********************************************************************************/
.spinner{
    position:fixed;
    z-index:999999;
    top:50%;
    left:50%;
    margin:-30px 0 0 -30px;
    height:60px;
    width:60px;
    -webkit-animation:rotation .6s infinite linear;
    -moz-animation:rotation .6s infinite linear;
    -o-animation:rotation .6s infinite linear;
    animation:rotation .6s infinite linear;
    border-left:6px solid #f1f3f5;
    border-right:6px solid #f1f3f5;
    border-bottom:6px solid #f1f3f5;
    border-top:6px solid #0066a5;
    border-radius:100%}
@-webkit-keyframes rotation{
    from{
        -webkit-transform:rotate(0deg)}
    to{
        -webkit-transform:rotate(359deg)}
}@-moz-keyframes rotation{
    from{
        -moz-transform:rotate(0deg)}
    to{
        -moz-transform:rotate(359deg)}
}@-o-keyframes rotation{
    from{
        -o-transform:rotate(0deg)}
    to{
        -o-transform:rotate(359deg)}
}@keyframes rotation{
    from{
        transform:rotate(0deg)}
    to{
        transform:rotate(359deg)}
}
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    background: rgba(67, 69, 71,0.45);
    -webkit-animation-name: overlayFadeIn;
    animation-name: overlayFadeIn;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 250ms;
    animation-duration: 250ms;
}
@-webkit-keyframes overlayFadeIn{
    0%{
        opacity:0}
    100%{
        opacity:1}
}@keyframes overlayFadeIn{
    0%{
        opacity:0}
    100%{
        opacity:1}
}	