﻿/*------------------------------------------------------------------
[Loading Stylesheet]

Project: Website Apps
Version: 1.0
Update: 19/02/20 
------------------------------------------------------------------*/

.cgcloader {
    position: relative;
    top: 45%;
    left: 50%;
    transform: rotate(45deg);
    width: 0px;
    animation: preloader_6 5s infinite linear;
}

    .cgcloader span {
        width: 30px;
        height: 30px;
        position: absolute;
        display: block;
        animation: preloader_6_span 1s infinite linear
    }

        .cgcloader span:nth-child(1) {
            background: #4aaf4d
        }

        .cgcloader span:nth-child(2) {
            left: 32px;
            background: #195b8c;
            animation-delay: .2s
        }

        .cgcloader span:nth-child(3) {
            top: 32px;
            background: #195b8c;
            animation-delay: .2s
        }

        .cgcloader span:nth-child(4) {
            top: 32px;
            left: 32px;
            background: #195b8c;
            animation-delay: .2s
        }

@keyframes preloader_6_span {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(.5)
    }

    100% {
        transform: scale(1)
    }
}

.loading-container {
    background-color: #fff;
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
}