﻿.app-first-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

    .app-first-loader.d-none {
        display: none !important;
    }

    .app-first-loader.fade-out {
        opacity: 0;
    }

.afl-content {
    text-align: center;
    width: 220px;
}

.afl-logo {
    display: block;
    width: 96px;
    height: 96px;
    object-fit: contain;
    margin: 0 auto 24px;
    animation: afl-pulse 1.5s ease-in-out infinite;
}

@keyframes afl-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(0.96);
    }
}

.afl-loading-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
    font-family: 'Courier New', monospace;
}

.afl-loading-text {
    font-size: 13px;
    letter-spacing: 2px;
    color: #B8860B;
    text-transform: uppercase;
}

.afl-percent {
    font-size: 13px;
    font-weight: 700;
    color: #B8860B;
}

.afl-line-track {
    height: 3px;
    width: 100%;
    background: #e5e0d5;
    border-radius: 2px;
    overflow: hidden;
}

.afl-line-fill {
    height: 100%;
    width: 0%;
    background: #B8860B;
    border-radius: 2px;
    transition: width 0.15s linear;
}
.afl-logo {
    display: block;
    width: 96px;
    height: 96px;
    object-fit: contain;
    margin: 0 auto 24px;
    animation: afl-pulse 1.5s ease-in-out infinite;
}

@keyframes afl-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.96); }
}