body {
    margin: 0;
}

html {
    overflow: hidden scroll;
}

#loading-bg {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--initial-loader-bg, #fff);
    block-size: 100%;
    gap: 1rem 0;
    inline-size: 100%;
}

.loading {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
}

.loading::before,
.loading::after {
    border-radius: 50%;
    position: absolute;
    content: '';
    display: block;
}

.loading::before {
    border: 3px solid #f58145;
    width: 33.6px;
    height: 33.6px;
    border-bottom-color: transparent;
    border-left-color: transparent;
    animation: ucs-spinner-rotate 0.75s infinite linear reverse;
}

.loading::after {
    border: 6px solid #58a1d5;
    animation: ucs-spinner-rotate 0.5s infinite linear;
    height: 56px;
    width: 56px;
    border-right-color: transparent;
    border-top-color: transparent;
}

@keyframes ucs-spinner-rotate {
    to {
        transform: rotate(360deg);
    }
}
