
.loadingpanel
{
	background-color: #222;
	background-size: cover;
	width: 100%;
	height: 100%;
	color: white;
	padding: 100px;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-family: Poppins;
	pointer-events: all;

	> .title
	{
		font-size: 80px;
		color: #888;
		font-weight: bolder;
	}

	> .subtitle
	{
		font-size: 30px;
		color: #888;
		font-weight: 100;
	}

	> .controls
	{
		position: absolute;
		bottom: 100px;
		right: 200px;

		.button
		{
			font-size: 20px;
			padding: 10px 50px;
			background-color: #333;
			color: #222;
			font-weight: bold;
			cursor: pointer;

			&:hover
			{
				background-color: #888;
			}
		}
	}
}
