html, body, .app, .app-loading {
    width: 100%;
    height: 100%;
    min-width: 20rem;
    margin: 0;
    overflow-x: hidden;
    background: linear-gradient(180deg, #F8FBFFFF 0%, #C1C5CBFF 60%, #97A0A8FF 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--ugg-color-text-primary);
    scrollbar-color: transparent transparent;
    scrollbar-width: thin;
}

.app-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 2rem;
}

.loading-text {
    font-weight: 800;
    font-size: 3rem;
    margin-top: 0.75rem;
}

.loading-text-letter {
    color: var(--ugg-color-primary);
    background: none;
    font-weight: 800;
    font-size: 3rem;
    margin-top: 0.75rem;
}

.loading-robot-image {
    height: 35rem;
    width: 35rem;
}

.loading-gf-logo {
    height: 2rem;
    width: 7rem;
}


/* Loading animation */
.loading-ring {
    width: 5rem;
    height: 5rem;
}

    .loading-ring div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 3rem;
        height: 3rem;
        margin: 1rem;
        border: 0.5rem solid var(--ugg-color-primary);
        border-radius: 50%;
        animation: loading-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: var(--ugg-color-primary) transparent transparent transparent;
    }

        .loading-ring div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .loading-ring div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .loading-ring div:nth-child(3) {
            animation-delay: -0.15s;
        }

@media screen and (max-height: 800px) {
    .loading-robot-image {
        height: 11rem;
        width: 8rem;
    }

    .loading-gf-logo {
        height: 1.5rem;
        width: 5rem;
    }

    .loading-ring {
        width: 4rem;
        height: 4rem;
    }

        .loading-ring div {
            width: 2rem;
            height: 2rem;
        }
}

@keyframes loading-ring {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Custom scroll bars (not for firefox)*/
::-webkit-scrollbar, ::-webkit-scrollbar-corner, ::-webkit-scrollbar-track {
    background: transparent !important;
}

::-webkit-scrollbar {
    width: 0.75rem !important;
    height: 0.75rem !important;
}

::-webkit-scrollbar-thumb {
    border-radius: 0.4rem !important;
    background: rgba(128, 128, 128, 0.5) !important;
}

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(128, 128, 128, 0.5) !important;
    }
