.loading-container {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: var(--color-bg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-container .loading-img {
    text-align: center;
}

.loading-container .loading-img img {
    width: calc(var(--section-base) * 9);
    max-width: 70%;
    height: 100%;
}