#loader {
    width: 100vw;
    height: 100vh;
    opacity: 1;
    padding-top: 150px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    z-index: 100;
}

#page.has--overlay {
    overflow: hidden
}

#page.has--overlay:after {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2000;
    background-color: #0f0e9f;
    content: "";
    opacity: .9;
}

#bar {
    width: 30px;
    height: 0px;
    display: block;
    position: relative;
    margin: 40px auto
}

.bar {
    background-color: #fff;
    border: 0px solid #000;
    float: left;
    height: 20px;
    margin-left: 5px;
    width: 5px;
    opacity: 0.1;
    -webkit-animation-name: bounceG;
    animation-name: bounceG;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-transform: scale(0.7);
    transform: scale(0.7)
}

#bar-1 {
    -webkit-animation-delay: 0.3495s;
    animation-delay: 0.3495s
}

#bar-2 {
    -webkit-animation-delay: 0.466s;
    animation-delay: 0.466s
}

#bar-3 {
    -webkit-animation-delay: 0.5825s;
    animation-delay: 0.5825s
}

.loading-backdrop {
    z-index: 9999;
    opacity: .6;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

@-webkit-keyframes bounceG {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1
    }
    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0.2
    }
}

@keyframes bounceG {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1
    }
    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0.2
    }
}

@media only screen and (min-width: 640px) {
    #loader {
        padding-top: 100px
    }
}

@media only screen and (min-width: 768px) {
    #loader {
        padding-top: 200px
    }
}

@media only screen and (min-width: 1200px) {
    #loader {
        padding-top: 300px
    }
}