/*
|--------------------------------------------------------------------------
| ACROM WEB 2.0 — LAUNCH HANDOFF
|--------------------------------------------------------------------------
|
| Receiving curtain nakon završnog prelaunch launch screena.
|
| Aktivira se samo kada launch-handoff-boot.js pronađe:
|
| sessionStorage:
|
| acrom_launch_handoff = 1
|
*/


/*
|--------------------------------------------------------------------------
| Normal state
|--------------------------------------------------------------------------
*/

.acrom-launch-receiver {
    display: none;
}


/*
|--------------------------------------------------------------------------
| Launch handoff state
|--------------------------------------------------------------------------
*/

html.acrom-launch-handoff
.acrom-launch-receiver {
    position: fixed;

    inset: 0;

    z-index: 2147483647;

    display: block;

    pointer-events: auto;

    background:
        #061225;

    opacity: 1;

    transition:
        opacity
        1900ms
        cubic-bezier(0.22, 1, 0.36, 1);

    will-change:
        opacity;
}


/*
|--------------------------------------------------------------------------
| Reveal Web 2.0
|--------------------------------------------------------------------------
*/

html.acrom-launch-handoff-reveal
.acrom-launch-receiver {
    opacity: 0;

    pointer-events: none;
}


/*
|--------------------------------------------------------------------------
| Reduced motion
|--------------------------------------------------------------------------
*/

@media
(prefers-reduced-motion: reduce) {

    html.acrom-launch-handoff
    .acrom-launch-receiver {
        transition-duration:
            120ms;
    }
}