/* =========================================
   LOADING SCREEN
========================================= */

#dashboardLoading {
    position: fixed;

    inset: 0;

    display: flex;

    justify-content: center;
    align-items: center;

    background: #0F172A;

    z-index: 999999;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}


/* =========================================
   HIDE
========================================= */

#dashboardLoading.hide {
    opacity: 0;

    visibility: hidden;
}


/* =========================================
   CARD
========================================= */

.loading-container {
    width: 320px;

    max-width: 88vw;

    background: #ffffff;

    border-radius: 16px;

    padding: 24px 26px;

    text-align: center;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .30);

    box-sizing: border-box;
}


/* =========================================
   LOGO
========================================= */

.loading-logo {
    margin-bottom: 12px;
}


.loading-logo img {
    width: 62px;

    height: auto;

    display: inline-block;
}


/* =========================================
   TITLE
========================================= */

.loading-container h2 {
    color: #1E3A8A;

    font-size: 19px;

    line-height: 1.25;

    font-weight: 700;

    margin-top: 0;

    margin-bottom: 7px;
}


/* =========================================
   MESSAGE
========================================= */

#loadingMessage {
    color: #64748B;

    font-size: 12px;

    line-height: 1.4;

    min-height: 17px;

    margin: 0;
}


/* =========================================
   PROGRESS BAR
========================================= */

.loading-progress {
    width: 100%;

    height: 6px;

    background: #E5E7EB;

    border-radius: 100px;

    overflow: hidden;

    margin-top: 15px;
}


#loadingProgress {
    width: 0;

    height: 100%;

    background: linear-gradient(
        90deg,
        #2563EB,
        #3B82F6
    );

    border-radius: 100px;

    transition: width .35s;
}


/* =========================================
   PERCENT
========================================= */

#loadingPercent {
    margin-top: 9px;

    font-size: 19px;

    line-height: 1.2;

    font-weight: 700;

    color: #2563EB;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .loading-container {
        width: 280px;

        padding: 20px 22px;

        border-radius: 14px;
    }


    .loading-logo {
        margin-bottom: 10px;
    }


    .loading-logo img {
        width: 54px;
    }


    .loading-container h2 {
        font-size: 17px;
    }


    #loadingMessage {
        font-size: 11px;
    }


    .loading-progress {
        margin-top: 12px;

        height: 5px;
    }


    #loadingPercent {
        margin-top: 8px;

        font-size: 17px;
    }

}