﻿div#load_screen {
    opacity: 1;
    z-index: 999999;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    div#load_screen .neptune-loader-heading {
        color: #145af2;
        font-weight: 700;
        font-size: 17px;
        z-index: 9999;
        transform: translateX(-50%);
        margin-top: 35px;
        display: none;
    }

.loader {
    color: #ffffff;
    font-size: 10px;
    margin: 10% auto;
    position: relative;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

#loader img {
    width: 120px;
}

#ripple {
    margin: 20px auto;
    width: 200px;
    height: 200px;
    background-image: -webkit-radial-gradient(center,rgba(238,238,238,0.5) 60%,rgba(0,0,0,1) 100%);
    border-radius: 100px;
    transform-origin: center center !important;
    animation: fly 2s infinite;
    animation-timing-function: linear;
}

    #ripple:after {
        content: "";
        position: absolute;
        width: 200px;
        height: 200px;
        background-image: -webkit-radial-gradient(center,rgba(238,238,238,0.5) 60%,rgba(0,0,0,1) 100%);
        border-radius: 100px;
        transform-origin: center center !important;
        animation: fly 1.5s infinite;
        animation-timing-function: linear;
    }

    #ripple:before {
        content: "";
        position: absolute;
        width: 200px;
        height: 200px;
        background-image: -webkit-radial-gradient(center,rgba(238,238,238,0.5) 60%,rgba(0,0,0,1) 100%);
        border-radius: 100px;
        transform-origin: center center !important;
        animation: fly 1.7s infinite;
        animation-timing-function: linear;
    }

@-webkit-keyframes fly {
    0% {
        transform: scale(0.5);
        opacity: 0;
        transform-origin: center center;
    }

    50% {
        transform: scale(1);
        opacity: 1;
        transform-origin: center center;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
        transform-origin: center center;
    }
}

#loader {
    position: absolute;
    top: 55%;
    left: 40%;
    transform: translate(-50%,-50%);
    text-align: center;
    color: #eee;
    font-weight: bold;
    line-height: 80px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transition: all 0.5s;
    -webkit-backface-visibility: hidden;
    border: 0px solid #eee;
    z-index: 1;
}
