div.neuralyzer {
    background-image: url("sprites/neuralyzer.webp");
    background-size: contain;
    background-position-x: center;
    background-position-y: 100%;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    animation-name: enter-neuralyzer;
    animation-duration: 1s;
}

div.neuralyzer-flash {
    background-color: white;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 1;
    animation-name: neuralyzer-flash;
    animation-duration: 1.125s;
}

@keyframes enter-neuralyzer {
    0%   { right: 100% }
    100% { right: 0; }
}

@keyframes neuralyzer-flash {
    0%   { opacity: 0; }
    90%  { opacity: 0; }
    100% { opacity: 1; }
}