#divLoader {
    width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 10000;
    background-color: #f9fafb;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    font-size: 18px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial,
        Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-weight: 500;
    transition: opacity 0.5s ease;
}

@media (prefers-color-scheme: dark) {
    #divLoader {
        background-color: #05080c;
    }
}

#appIcon {
    width: 180px;
    height: 180px;
    animation: iconPulse 2.5s infinite;
    animation-timing-function: ease;
}

@keyframes iconPulse {
    0% {
        transform: scale(0.8);
    }

    25% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.8);
    }
}

body {
    /* Avoid to open callouts in iOS */
    -webkit-touch-callout: none;
    /* Avoid to select text in iOS */
    -webkit-tap-highlight-color: transparent;
    /* Avoid to select text as it is an app (overrided in text components) */
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;

    /* Add a transition on background color */
    transition: background-color 0.2s ease;
}

:root {
    /* Store the safe area insets in CSS variables to get theme using Javascript */
    --sat: env(safe-area-inset-top);
    --sar: env(safe-area-inset-right);
    --sab: env(safe-area-inset-bottom);
    --sal: env(safe-area-inset-left);
}
