﻿.onloading-animation {
    height: 40px;
    width: 40px;
    -moz-animation: rotate 0.8s infinite linear;
    -o-animation: rotate 0.8s infinite linear;
    -webkit-animation: rotate 0.8s infinite linear;
    animation: rotate 0.8s infinite linear;
    border: 4px solid #341dbc;
    border-right-color: transparent;
    border-radius: 50%;
    position: absolute;
    top: 50px;
    left: calc(50% - 20px );
    margin-left: auto;
    margin-right: auto;
    z-index: 9999;
} 

.status-onloading
{
    position: relative;
    text-align: center;
}

@keyframes rotate {
  0%    { transform: rotate(0deg); }
  100%  { transform: rotate(360deg); }
}
 

  

    .small-container .onloading-animation
    {
        width: 50% !important;
        left: 24% !important;
    }




.circle
{
    background-color: rgba(255,255,255,0.9);
    border: 5px solid rgba(255,255,255,0.9);
    opacity: .9;
    border-right: 5px solid #b3d1d7;
    border-left: 5px solid #b3d1d7;
    border-radius: 25px;
    box-shadow: 0 0 20px #ffffff;
    width: 25px;
    height: 25px;
    margin: 0 auto;
    -moz-animation: spinPulse 1s infinite ease-in-out;
    -webkit-animation: spinPulse 1s infinite linear;
}

@-moz-keyframes spinPulse
{
    0%
    {
        -moz-transform: rotate(160deg);
        opacity: 0;
        box-shadow: 0 0 1px #2187e7;
    }

    50%
    {
        -moz-transform: rotate(145deg);
        opacity: 1;
    }

    100%
    {
        -moz-transform: rotate(-320deg);
        opacity: 0;
    }
}

@-webkit-keyframes spinPulse
{
    0%
    {
        -webkit-transform: rotate(160deg);
        opacity: 0;
        box-shadow: 0 0 1px #2187e7;
    }

    50%
    {
        -webkit-transform: rotate(145deg);
        opacity: 1;
    }

    100%
    {
        -webkit-transform: rotate(-320deg);
        opacity: 0;
    }
}

 .loading-top .onloading-animation{
     top:0;
 }