/*======================================
CHRONOS OVERLAY
======================================*/

#cf-overlay{

    position:fixed;
    inset:0;

    display:none;

    justify-content:center;
    align-items:center;

    background:rgba(10,10,10,.90);

    backdrop-filter:blur(6px);

    z-index:999999;

}

.cf-overlay-card{

    width:520px;
    max-width:90%;

    background:#171717;

    border:1px solid rgba(212,175,55,.35);

    border-radius:18px;

    padding:40px;

    box-shadow:
        0 0 40px rgba(0,0,0,.45);

}

.cf-overlay-logo{

    font-size:30px;

    text-align:center;

    margin-bottom:25px;

    color:#d4af37;

}

.cf-overlay-title{

    color:#ffffff;

    font-size:24px;

    font-weight:700;

    text-align:center;

    margin-bottom:12px;

}

.cf-overlay-message{

    color:#d0d0d0;

    font-size:16px;

    text-align:center;

    margin-bottom:25px;

}

.cf-progress{

    width:100%;
    height:14px;

    overflow:hidden;

    background:#2b2b2b;

    border-radius:999px;

}

.cf-progress-bar{

    width:0%;

    height:100%;

    border-radius:999px;

    background:linear-gradient(
        90deg,
        #9f6f00,
        #d4af37,
        #f4dc84
    );

    transition:
        width 800ms cubic-bezier(.22,.61,.36,1);

    will-change: width;

}

.cf-progress-percent{

    margin-top:15px;

    text-align:center;

    color:#d4af37;

    font-weight:bold;

    font-size:18px;

}