@import "/UI/Style.scss";

FullScreenManager {
    position: relative;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;

    > .fullscreen-container {
        position: absolute;
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;

        > .always-visible {
            display: none;

            &.visible {
                display: flex;
            }
        }
    }

    &.fullscreen-bg {
        pointer-events: all;
    }
}
