[x-cloak] {
    display: none !important;
}

.loading-box {
    width: 600px;
    height: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.loading-box .b {
    border-radius: 50%;
    border-left: 4px solid;
    border-right: 4px solid;
    border-top: 4px solid transparent !important;
    border-bottom: 4px solid transparent !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ro 2s infinite;
}

.loading-box .b1 {
    border-color: #29245E;
    width: 240px;
    height: 240px;
}

.loading-box .b2 {
    border-color: #FF5457;
    width: 200px;
    height: 200px;
    animation-delay: 0.2s;
}

.loading-box .b3 {
    border-color: #38D1D9;
    width: 160px;
    height: 160px;
    animation-delay: 0.4s;
}

.loading-box .b4 {
    border-color: #283339;
    width: 120px;
    height: 120px;
    animation-delay: 0.6s;
}

@keyframes ro {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    50% {
        transform: translate(-50%, -50%) rotate(-180deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

