﻿/*.loader {
    text-align: center;
    text-transform: uppercase;
    font-family:  verdana;
    font-size: 2.6875em;
    color: #db3d20;
    letter-spacing: 0.01em;
    position: fixed;
    background: rgba(0, 0, 0, .5);
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    z-index: 9999;
    padding: 300px 0px 0px 0px;
}

    .loader span {
        text-shadow: 0 0 2px rgba(204, 208, 212,0.9), 0 15px 25px rgba(0, 0, 0, 0.3), 0 -2px 3px rgba(0, 0, 0, 0.1), 0 -5px 10px rgba(255, 255, 255, 0.5), 0 5px 10px rgba(0, 0, 0, 0.3), 0 3px 4px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.45);
        animation: loading 0.85s ease-in-out infinite alternate;
    }

@keyframes loading {
    to {
        text-shadow: 0 0 2px rgba(204, 208, 212,0.2), 0 0 3px rgba(0, 0, 0, 0.02), 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(255, 255, 255, 0), 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(255, 255, 255, 0), 0 0 0 rgba(255, 255, 255, 0);
    }
}

.loader span:nth-child(2) {
    animation-delay: 0.15s;
}

.loader span:nth-child(3) {
    animation-delay: 0.30s;
}

.loader span:nth-child(4) {
    animation-delay: 0.45s;
}

.loader span:nth-child(5) {
    animation-delay: 0.60s;
}

.loader span:nth-child(6) {
    animation-delay: 0.75s;
}

.loader span:nth-child(7) {
    animation-delay: 0.90s;
}*/


#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    /*background: rgba(0, 0, 0, .5);*/
    /* change if the mask should have another color then white */
    z-index: 9999;
    /* makes sure it stays on top */
}

#status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    /* centers the loading animation horizontally one the screen */
    top: 50%;
    /* centers the loading animation vertically one the screen */
    background-image: url('/Images/login-loader.gif');
    /* path to your loading animation */
    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px;
    /* is width and height divided by two */
}
