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