﻿


/* Pace.js */
.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.pace-inactive {
    display: none;
}

.pace .pace-progress {
    background: #29d;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 100%;
    width: 100%;
    height: 2px;
}
/* Spash */
.splash{
    background:#29d;
    width:100%;
    height:100%;
    z-index:1000;
    position:fixed;
    top:0;
    left:0;
    color:#fff;
}
/* Loader */
.lds-grid {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
    left: 50%;
    top: 50%;   
    margin: -32px 0 0 -32px;
}
    .lds-grid div {
        position: absolute;
        width: 27px;
        height: 27px;
        background: #fff;
        animation: lds-grid 2.4s linear infinite;
    }
        .lds-grid div:nth-child(1) {
            top: 3px;
            left: 3px;
            border-top-left-radius:50%;
            animation-delay: -1.8s;
        }
        .lds-grid div:nth-child(2) {
            top: 3px;
            left: 34px;
            border-top-right-radius:50%;
            animation-delay: -1.2s;
        }

        .lds-grid div:nth-child(3) {
            top: 34px;
            left: 3px;
            border-bottom-left-radius:50%;
            animation-delay: 0;
        }

        .lds-grid div:nth-child(4) {
            top: 34px;
            left: 34px;
            border-bottom-right-radius:50%;
            animation-delay: -0.6s;
        }
@keyframes lds-grid {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.1;
    }
}


