﻿.flash-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0.7;
    pointer-events: none;
    animation: fadeOutFlash 0.2s ease-out forwards;
    z-index: 10;
}

@keyframes fadeOutFlash {
    from {
        opacity: 0.7;
    }

    to {
        opacity: 0;
    }
}
