#mt-h5-loading {
    width: 100%;
    height: 100%;
    background: #191C1F;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
}

#mt-h5-loading .default-img,
#mt-h5-loading .active-img {
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

#mt-h5-loading .active-img {
    z-index: 1;
    animation: loading 2s linear;
}

#__vconsole {
    position: relative;
    z-index: 9999999999;
}

@keyframes loading {
    from {
        -webkit-clip-path: inset(100% 0 0 0);
        clip-path: inset(100% 0 0 0);
    }

    to {
        -webkit-clip-path: inset(1% 0 0 0);
        clip-path: inset(1% 0 0 0);
    }
}