.loading-body {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    background-color: rgba(255, 255, 255, 1);
    z-index: 99999999999;
    position: absolute;
    top: 0;
    left: 0;
}

.loading-container {
    width: 100px;
    height: 100px;
    position: relative;
}

.loading-spinner {
    width: 100%;
    height: 100%;
    border: 10px solid transparent;
    border-top-color: #409eff;
    border-bottom-color: #409eff;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
        border-top-color: #409eff;
        border-bottom-color: transparent;
    }

    50% {
        border-top-color: transparent;
        border-bottom-color: #409eff;
    }

    100% {
        transform: rotate(360deg);
        border-top-color: #409eff;
        border-bottom-color: transparent;
    }
}
