.loada-body {
    position: fixed;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 99999;
    top: 0;
}

.loada-body:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5
}

.loada-body .loading {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 70px;
    background: #fff;
    border-radius: 8px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 25px
}

.loada-body .loading p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px
}

.loada-body .loading span {
    position: absolute;
    height: 10px;
    width: 84px;
    top: 46px;
    overflow: hidden
}

.loada-body .loading span>i {
    position: absolute;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    -webkit-animation: wait 4s infinite;
    animation: wait 4s infinite
}

.loada-body .loading span>i:nth-of-type(1) {
    left: -28px;
    background: #0080c0
}

.loada-body .loading span>i:nth-of-type(2) {
    left: -21px;
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
    background: #0080c0
}

.loada-body .loading span>i:nth-of-type(3) {
    left: -30px;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    background: #0080c0
}

@-webkit-keyframes wait {
    0% {
        left: -7px
    }

    30% {
        left: 52px
    }

    60% {
        left: 22px
    }

    100% {
        left: 100px
    }
}

@keyframes wait {
    0% {
        left: -7px
    }

    30% {
        left: 52px
    }

    60% {
        left: 22px
    }

    100% {
        left: 100px
    }
}