@keyframes afp-exit-rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* EXIT SPINNER OVERLAY */
#afp-exit-overlay {
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.3);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999999;
    pointer-events:none;
}

#afp-exit-overlay img {
    width:120px;
    height:120px;
    animation: afp-exit-rotate var(--spinner-speed, 1000ms) linear infinite;
}

/* Fade page contents, NOT the spinner */
.afp-exit-fade > *:not(#afp-exit-overlay) {
    opacity:0 !important;
    transition: opacity var(--fade-time, 400ms) ease-out !important;
}

