﻿.positionLoading {
    position: fixed;
    right: 0rem;
    top: 0rem;
    left: 0rem;
    bottom: 0rem;
    z-index: 2147483647;
    background-color: rgba(0,0,0,0.8) !important;
}


.background {
    display: inline-block;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 50%;
    cursor: pointer;
    vertical-align: middle;
}

    .background .spinner-containers {
        /*   padding-left:48%; */
    }

.spinner {
    display: block;
    vertical-align: middle;
    background-color: transparent;
    -webkit-animation: sk-rotateplane 3.2s infinite ease-in-out;
    animation: sk-rotateplane 3.2s infinite ease-in-out;
    /*   margin: 100px auto; */
}

.img {
    /*margin: 0 auto -webkit-animation: sk-rotateplane 3.2s infinite ease-in-out;*/
    animation: sk-rotateplane 3.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(300px) rotateY(180deg)
    }

    to {
        -webkit-transform: perspective(300px) rotateY(1turn)
    }
}

.spinner {
    width: 100px;
    height: 100px;
    position: absolute;
    /*margin: 100px auto;*/
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    /*border-radius: 50%;*/
    background-color: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.spinner, .spinner:after {
    width: 100px;
    height: 100px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -32px;
    margin-left: -32px;
    border-radius: 50%;
    z-index: 2
}
