

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .loader p {
        margin: 0;
        padding: 0;
        font-size: 18px;
        color: #000;
        animation: spin 2s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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

#rns-app-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#rns-app-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

#rns-app-loader img {
    height: 60px;
    animation: fade-blink 2s ease-in-out infinite;
    opacity: 1;
}

@keyframes fade-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@media screen and (max-width: 402px) {
    #rns-app-loader img {
        height: 40px;
    }
}