.floatLayer
{
    width: 100%;
    height: 100%;
    position: fixed;
    background: #FFFFFF;
    z-index: 9990;
    top: 0px;
    left: 0px;
    filter: alpha(Opacity=50);
    -moz-opacity: 0.80;
    opacity: 0.80;
}

/* loading.css */
.boxLoading
{

    text-align: center;
    border-radius: 20px;
    width: 50%;
    height: 50%;
    left: 50%;
    top: 50%;
    position: fixed;
    bottom: 0;
    right: 0;
	
    /*width: 50px;
    height: 50px;
    margin: auto;
    position: fixed;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;*/
}

.boxLoading:before
{
    content: '';
    width: 50px;
    height: 5px;
    background: #fff;
    opacity: 0.7;
    position: absolute;
    top: 59px;
    left: 0;
    border-radius: 50%;
    animation: shadow .5s linear infinite;
}

.boxLoading:after
{
    content: '';
    width: 50px;
    height: 50px;
    background: #e04960;
    animation: animate .5s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
}

@keyframes animate
{
    17%
    {
        border-bottom-right-radius: 3px;
    }

    25%
    {
        transform: translateY(9px) rotate(22.5deg);
    }

    50%
    {
        transform: translateY(18px) scale(1, .9) rotate(45deg);
        border-bottom-right-radius: 40px;
    }

    75%
    {
        transform: translateY(9px) rotate(67.5deg);
    }

    100%
    {
        transform: translateY(0) rotate(90deg);
    }
}

@keyframes shadow
{
    0%, 100%
    {
        transform: scale(1, 1);
    }

    50%
    {
        transform: scale(1.2, 1);
    }
}

