[v-cloak] {
    display: none;
}

.cloak-loading {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cloak-loading .icon {
    width: 200px;
    height: 200px;
    animation: rotate infinite 2s linear;
}

.loading-text {
    color: #999999;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
