.loading{
    /*z-index: 100;
    position: absolute;
    top: calc(50% - 40px);
    left: calc(50% - 40px);
    margin:-2.5em 0 0 -2.5em;*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.8);
    opacity: 0.994636;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}
.loading img{}
.move-page {
    cursor:pointer;
}
.blink{
    animation: blink 1s infinite;
}
@keyframes blink {
    0% {opacity: 0;}
}
