.loadingAppOuter {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
    width: 100vw;
    height: 100vh;
    z-index: 100;
}

.loadingAppContainer {
    position: relative;
    width: 350px;
    top: 0;
    left: 0;
    background-color: #FFF;
    border-radius: 25px;
    border: 2px solid #0986A6;
    margin: 50px auto 0 auto;
}

.loadingAppText {
    font-size: 30px;
    position: relative;
    margin: 0 auto;
    padding: 40px 0;
    text-align: center;
}

.spinnerOuter {
    width: 100%;
    height: 230px;
}

.loadingAppSpinner {
    width: 0px;
    height: 0px;
}

.spinnerCssAnimation {
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
}

.spinnerCssAnimation div {
    animation: spinnerCssAnimation 1.2s linear infinite;
}

.spinnerCssAnimation div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 20px;
    left: -9px;
    width: 18px;
    height: 38px;
    border-radius: 20%;
    background: #e9e9e9;
}

.spinnerCssAnimation div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.spinnerCssAnimation div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.spinnerCssAnimation div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.spinnerCssAnimation div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.spinnerCssAnimation div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.spinnerCssAnimation div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.spinnerCssAnimation div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.spinnerCssAnimation div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.spinnerCssAnimation div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.spinnerCssAnimation div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.spinnerCssAnimation div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.spinnerCssAnimation div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes spinnerCssAnimation {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
