body {
    margin: 0;
}

#app {
    margin: 0;
    padding: 0;
}

.loading-next {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    z-index: 9999;
    position: relative;
    background-color: #ffffff;
}

.loading-next .loading-next-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading,
.loading > div {
    position: relative;
    box-sizing: border-box;
    z-index: 9999;
}

.loading {
    display: block;
    font-size: 0;
    color: #4c4edb;
}

.loading.la-dark {
    color: #4c4edb;
}

.loading > div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}

.loading {
    width: 13px;
    height: 13px;
}

.loading > div {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    transform: translate(-50%, -50%);
    animation: ball-fussion-ball1 1s 0s ease infinite;
}

.loading > div:nth-child(1) {
    top: 0;
    left: 50%;
    z-index: 1;
}

.loading > div:nth-child(2) {
    top: 50%;
    left: 100%;
    z-index: 2;
    animation-name: ball-fussion-ball2;
}

.loading > div:nth-child(3) {
    top: 100%;
    left: 50%;
    z-index: 1;
    animation-name: ball-fussion-ball3;
}

.loading > div:nth-child(4) {
    top: 50%;
    left: 0;
    z-index: 2;
    animation-name: ball-fussion-ball4;
}

.loading.la-sm {
    width: 4px;
    height: 4px;
}

.loading.la-sm > div {
    width: 6px;
    height: 6px;
}

.loading.la-2x {
    width: 16px;
    height: 16px;
}

.loading.la-2x > div {
    width: 24px;
    height: 24px;
}

.loading.la-3x {
    width: 24px;
    height: 24px;
}

.loading.la-3x > div {
    width: 36px;
    height: 36px;
}

@keyframes ball-fussion-ball2 {
    0% {
        opacity: 0.35;
    }

    50% {
        top: 200%;
        left: 200%;
        opacity: 1;
    }

    100% {
        top: 100%;
        left: 50%;
        z-index: 1;
        opacity: 0.35;
    }
}

@keyframes ball-fussion-ball1 {
    0% {
        opacity: 0.35;
    }

    50% {
        top: -100%;
        left: 200%;
        opacity: 1;
    }

    100% {
        top: 50%;
        left: 100%;
        z-index: 2;
        opacity: 0.35;
    }
}

@keyframes ball-fussion-ball3 {
    0% {
        opacity: 0.35;
    }

    50% {
        top: 200%;
        left: -100%;
        opacity: 1;
    }

    100% {
        top: 50%;
        left: 0;
        z-index: 2;
        opacity: 0.35;
    }
}

@keyframes ball-fussion-ball4 {
    0% {
        opacity: 0.35;
    }

    50% {
        top: -100%;
        left: -100%;
        opacity: 1;
    }

    100% {
        top: 0;
        left: 50%;
        z-index: 1;
        opacity: 0.35;
    }
}
