#abz_load_page {
    position: fixed;
    top: 0;
    left: 0;
       width: 100vw;
    height: 100vh;
    /* opacity: 0.7; */
    background: rgba(255, 255, 255, 0.9);
    z-index: 999999999999999;
}
.abz_image_loading {
    width: 50px;
    text-align: center;
    height: 50px;
    margin-top: calc(50vh - 130px) !important;
    margin-left: calc(50% - 26px) !important;
}

/*rotating*/

.rotating {
    -webkit-animation: rotating 2s linear infinite;
}
@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

/*rebon*/

.bounce {
    animation: bounce 0.35s ease infinite alternate;
}
@keyframes bounce {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-40px);
    }
}

/*rebon*/

.left-right {
    animation: left-right 0.5s ease infinite alternate;
}
@keyframes left-right {
    from {
        transform: translateY(-150);
    }
    25% {
        transform: translateY(-100px);
    }
    50% {
        transform: translateY(0px);
    }
    75% {
        transform: translateY(125px);
    }
    to {
        transform: translateY(150px);
    }
}
.loading_sentence {
    text-align: center;
    font-size: 30px;
    margin-top: 86px;
    color: #000;
    font-weight: 600;
    font-size: 5.5vw;
    /* line-height: 13px; */
}