.main {
    background: #011637 none repeat scroll 0 0;
    height: 100%;
    left: 0;
    margin: auto;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
    text-align: center;
}

.loaderimg {
    border-radius: 150px;
    height: 320px;
    margin: 165px 0 0 -160px;
    position: absolute;
    text-align: center;
    width: 320px;
    z-index: 0;
}

#outer-circle {
    border: 10px solid #0037ff;
    border-top-color: #0037ff;
    border-bottom-color: #061580;
    margin: 140px auto;
    text-align: center;
    width: 360px;
    height: 360px;
    -webkit-border-radius: 360px;
    -moz-border-radius: 360px;
    border-radius: 360px;
    -webkit-animation: turning_cw 5s infinite;
    -moz-animation: turning_cw 5s infinite;
    animation: turning_cw 5s infinite;
    position: relative;
    opacity: 1;
}

#outer-circle:hover {
    -webkit-box-shadow: 0 0 100px 15px #453D9B;
    -moz-box-shadow: 0 0 100px 15px #453D9B;
    box-shadow: 0 0 100px 15px #453D9B
}

#inner-circle {
    border: 10px solid red;
    border-left-color: #061580;
    border-right-color: red;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
    position: absolute;
    margin: 0px;
    width: 340px;
    height: 340px;
    -webkit-border-radius: 340px;
    -moz-border-radius: 340px;
    border-radius: 340px;
    -webkit-animation: turning_acw 3s infinite;
    -moz-animation: turning_acw 3s infinite;
    animation: turning_acw 3s infinite;
}

#center-circle {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -moz-border-radius: 148px;
    border: 10px solid #06ab04;
    border-left-color: #06ab04;
    border-right-color: #061580;
    -webkit-transform: rotate( 360deg);
    -moz-transform: rotate(360deg);
    transform: rotate( 360deg);
    position: absolute;
    margin: 0px;
    width: 320px;
    height: 320px;
    -webkit-border-radius: 320px;
    -moz-border-radius: 300px;
    border-radius: 320px;
    -webkit-animation: turning_acw 3s infinite;
    -moz-animation: turning_acw 3s infinite;
    animation: turning_acw 3s infinite;
}

#content {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    -webkit-border-radius: 150px;
    -moz-border-radius: 150px;
    border-radius: 150px;
    /* background:#fff; */
    text-align: center;
    margin: 5px;
    line-height: 120px;
    font-size: 30px;
    color: #00bff0;
    text-shadow: 0 2px 2px #000;
    font-weight: 700;
    overflow: hidden;
}

@-webkit-keyframes aura {
    0% {
        text-shadow: 0 2px 2px #000
    }

    50% {
        text-shadow: 0 10px 10px #000;
        line-height: 190px
    }

    100% {
        text-shadow: 0 2px 10px #000
    }
}

@-webkit-keyframes turning_cw {
    0% {
        -webkit-transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes turning_acw {
    0% {
        -webkit-transform: rotate(360deg)
    }

    100% {
        -webkit-transform: rotate(0deg)
    }
}

@-moz-keyframes aura {
    0% {
        text-shadow: 0 2px 2px #000
    }

    50% {
        text-shadow: 0 10px 10px #000;
        line-height: 190px
    }

    100% {
        text-shadow: 0 2px 10px #000
    }
}

@-moz-keyframes turning_cw {
    0% {
        -moz-transform: rotate(0deg)
    }

    100% {
        -moz-transform: rotate(360deg)
    }
}

@-moz-keyframes turning_acw {
    0% {
        -moz-transform: rotate(360deg)
    }

    100% {
        -moz-transform: rotate(0deg)
    }
}

@keyframes aura {
    0% {
        text-shadow: 0 2px 2px #000
    }

    50% {
        text-shadow: 0 10px 10px #000;
        line-height: 190px
    }

    100% {
        text-shadow: 0 2px 10px #000
    }
}

@keyframes turning_cw {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes turning_acw {
    0% {
        transform: rotate(360deg)
    }

    100% {
        transform: rotate(0deg)
    }
}
