/* ===============================
   GLOBAL PAGE LOADER
================================ */
#pageLoader{
    position:fixed;
    inset:0;
    background:rgba(255,255,255,0.92);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.loader-box{
    text-align:center;
    font-size:14px;
    color:#444;
}

.loader-box img{
    animation:pulse 1.4s infinite ease-in-out;
}

@keyframes pulse{
    0%{opacity:.4}
    50%{opacity:1}
    100%{opacity:.4}
}
