﻿/*Test Loading*/
/*jenny*/
body .loadingTest {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: fixed;
    opacity: 0.7;
    background-color: rgba(255,255,255,0.7);
    z-index: 9999;
    /*text-align: center;*/
    font-size: 35px;
}

.loadingTest {
    display: flex;
}

.loadingTest .dot {
    position: relative;
    width: 1.5em;
    height: 1.5em;
    margin: 0.7em;
    border-radius: 50%;
}

.loadingTest .dot::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: wave 2s ease-out infinite;
}

.loadingTest .dot:nth-child(1) {
    background: #051A2F;
}

.loadingTest .dot:nth-child(1)::before {
    animation-delay: 0.2s;
}

.loadingTest .dot:nth-child(2) {
    background: #004E99;
}

.loadingTest .dot:nth-child(2)::before {
    animation-delay: 0.4s;
}

.loadingTest .dot:nth-child(3) {
    background: #448CD4;
}

.loadingTest .dot:nth-child(3)::before {
    animation-delay: 0.6s;
}

.loadingTest .dot:nth-child(4) {
    background: #FF9DDA;
}

.loadingTest .dot:nth-child(4)::before {
    animation-delay: 0.8s;
}

.loadingTest .dot:nth-child(5) {
    background: #EF4292;
}

.loadingTest .dot:nth-child(5)::before {
    animation-delay: 1s;
}

@keyframes wave {
    25%, 50%, 75% {
        transform: scale(2.5);
    }

    80%, 100% {
        opacity: 0;
    }
}

@media only screen and (max-width: 767px) {
    body .loadingTest {
        font-size : 25px;
    }
}
    /*End Test Loading*/
