
.redpack-open {
    overflow: hidden !important;
}

.start-loading-logo {
    margin-bottom: 40px;
}

#start-loading {
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-2, #24262b);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.18s ease;
}

#start-loading.start-loading-exit {
    opacity: 0;
    pointer-events: none;
}

#start-loading-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.web-loading-state-ui {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.spin-ui {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--color-primary-6, #00a810);
    line-height: 1;
}

.spin-ui-block {
    display: flex;
    width: 100%;
}

.spin-ui-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.spin-ui-dot {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    font-size: 20px;
}

.spin-ui-dot i {
    position: absolute;
    width: 0.36em;
    height: 0.36em;
    border-radius: 50%;
    background: currentcolor;
    animation: spin-ui-dot-pulse 1.2s infinite ease-in-out both;
}

.spin-ui-dot i:nth-child(1) {
    top: 0;
    left: 0;
}

.spin-ui-dot i:nth-child(2) {
    top: 0;
    right: 0;
    animation-delay: -0.9s;
}

.spin-ui-dot i:nth-child(3) {
    right: 0;
    bottom: 0;
    animation-delay: -0.6s;
}

.spin-ui-dot i:nth-child(4) {
    bottom: 0;
    left: 0;
    animation-delay: -0.3s;
}

.start-loading-spin {
    font-size: 20px;
}

@keyframes spin-ui-dot-pulse {
    0%,
    80%,
    100% {
        opacity: 0.35;
        transform: scale(0.65);
    }

    40% {
        opacity: 1;
        transform: scale(1);
    }
}
