﻿#fadingBarsG
{
    position: relative;
    width: 124px;
    height: 15px;
    margin: 0 auto;
}

.fadingBarsG
{
    position: absolute;
    top: 0;
    background-color: none;
    background-image: url('plane-mini.png');
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    -moz-animation-name: bounce_fadingBarsG;
    -moz-animation-duration: 0.8s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-direction: linear;
    -moz-transform: scale(.3);
    -webkit-animation-name: bounce_fadingBarsG;
    -webkit-animation-duration: 0.8s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: linear;
    -webkit-transform: scale(.3);
    -ms-animation-name: bounce_fadingBarsG;
    -ms-animation-duration: 0.8s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-direction: linear;
    -ms-transform: scale(.3);
    -o-animation-name: bounce_fadingBarsG;
    -o-animation-duration: 0.8s;
    -o-animation-iteration-count: infinite;
    -o-animation-direction: linear;
    -o-transform: scale(.3);
    animation-name: bounce_fadingBarsG;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
    animation-direction: linear;
    transform: scale(.3);
}

#fadingBarsG_1
{
    left: 0;
    -moz-animation-delay: 0.32s;
    -webkit-animation-delay: 0.32s;
    -ms-animation-delay: 0.32s;
    -o-animation-delay: 0.32s;
    animation-delay: 0.32s;
}

#fadingBarsG_2
{
    left: 16px;
    -moz-animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
    -ms-animation-delay: 0.4s;
    -o-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

#fadingBarsG_3
{
    left: 31px;
    -moz-animation-delay: 0.48s;
    -webkit-animation-delay: 0.48s;
    -ms-animation-delay: 0.48s;
    -o-animation-delay: 0.48s;
    animation-delay: 0.48s;
}

#fadingBarsG_4
{
    left: 47px;
    -moz-animation-delay: 0.56s;
    -webkit-animation-delay: 0.56s;
    -ms-animation-delay: 0.56s;
    -o-animation-delay: 0.56s;
    animation-delay: 0.56s;
}

#fadingBarsG_5
{
    left: 62px;
    -moz-animation-delay: 0.64s;
    -webkit-animation-delay: 0.64s;
    -ms-animation-delay: 0.64s;
    -o-animation-delay: 0.64s;
    animation-delay: 0.64s;
}

#fadingBarsG_6
{
    left: 78px;
    -moz-animation-delay: 0.72s;
    -webkit-animation-delay: 0.72s;
    -ms-animation-delay: 0.72s;
    -o-animation-delay: 0.72s;
    animation-delay: 0.72s;
}

#fadingBarsG_7
{
    left: 93px;
    -moz-animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
    -ms-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

#fadingBarsG_8
{
    left: 109px;
    -moz-animation-delay: 0.88s;
    -webkit-animation-delay: 0.88s;
    -ms-animation-delay: 0.88s;
    -o-animation-delay: 0.88s;
    animation-delay: 0.88s;
}

@-moz-keyframes bounce_fadingBarsG
{
    0%
    {
        -moz-transform: scale(1);
        background-color: #FFFFFF;
    }

    100%
    {
        -moz-transform: scale(.3);
        background-color: #efefef;
    }
}

@-webkit-keyframes bounce_fadingBarsG
{
    0%
    {
        -webkit-transform: scale(1);
        background-color: #FFFFFF;
    }

    100%
    {
        -webkit-transform: scale(.3);
        background-color: #efefef;
    }
}

@-ms-keyframes bounce_fadingBarsG
{
    0%
    {
        -ms-transform: scale(1);
        background-color: #FFFFFF;
    }

    100%
    {
        -ms-transform: scale(.3);
        background-color: #efefef;
    }
}

@-o-keyframes bounce_fadingBarsG
{
    0%
    {
        -o-transform: scale(1);
        background-color: #FFFFFF;
    }

    100%
    {
        -o-transform: scale(.3);
        background-color: #efefef;
    }
}

@keyframes bounce_fadingBarsG
{
    0%
    {
        transform: scale(1);
        /*background-color:#FFFFFF;*/
    }

    100%
    {
        transform: scale(.3);
        background-color: #efefef;
    }
}

#loader
{
    /* IE 8 */
    background:#000;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";

    background: rgba(0,0,0,0.7);
    height: 100%;
    left: 0;
    /*opacity: 0.7;*/
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
    text-align: center;
}

    #loader div#inf
    {
        background: #007E10;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=200)";
        position: fixed;
        top: 50%;
        left: 50%;
        margin-right:-50%;
        transform: translate(-50%, -50%);
        width: 500px;
        padding: 20px;
        background: rgba(0, 126, 16,1);
        color: #fff;
        text-align: center;
        border-radius: 20px;
        border: 8px solid #fff;
        border: 8px solid rgba(255,255,255,0.9);
    }

        #loader div#inf p
        {
            padding: 20px;
        }

        #loader div#inf #loadgif
        {
            padding: 5px;
            border-radius: 5px;
            background: #fff;
        }


@media only screen and (max-width: 768px)
{
    #loader div#inf
    {
        width:95%;
        box-sizing:border-box;
    }
}