.wait-loading {
    position: fixed;
    /* top: 0;
    left: 0;*/
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: .1s ease opacity;
    -webkit-transition: .1s ease opacity;
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: .1s ease opacity;
    -webkit-transition: .1s ease opacity;
}

.wait-done {
    opacity: 0;
    z-index: 0;
}

#loading.load {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: .1s ease opacity;
    -webkit-transition: .1s ease opacity;
}

#loading.done {
    opacity: 0;
    z-index: 0;
}

.spinner {
    width: 70px;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

    .spinner > div {
        width: 18px;
        height: 18px;
        background-color: #28bbcb;
        border-radius: 100%;
        display: inline-block;
        -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
        animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    }

    .spinner .bounce1 {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .spinner .bounce2 {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

.preloader-1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#loading2 {
    display: flex;
    min-width: 125px;
    justify-content: space-around;
}

.preloader-1 .line {
    width: 6px;
    height: 12px;
    background: #28bbcb;
    margin: 0 1px;
    display: inline-block;
    animation: opacity-1 1000ms infinite ease-in-out;
    text-align: center;
    position: fixed;
}

.preloader-1 .line-1 {
    animation-delay: 800ms;
}

.preloader-1 .line-2 {
    animation-delay: 600ms;
}

.preloader-1 .line-3 {
    animation-delay: 400ms;
}

.preloader-1 .line-4 {
    animation-delay: 200ms;
}

.preloader-1 .line-6 {
    animation-delay: 200ms;
}

.preloader-1 .line-7 {
    animation-delay: 400ms;
}

.preloader-1 .line-8 {
    animation-delay: 600ms;
}

.preloader-1 .line-9 {
    animation-delay: 800ms;
}

@keyframes opacity-1 {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
