
.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;
			}
		}
	}

	> .progress
	{
		margin: 50px 0px;
		background-color: #0003;
		width: 500px;
		border-radius: 5px;
		overflow: hidden;

		.bar
		{
			background-color: #fff1;
			position: absolute;
			height: 100%;
		}

		.text-left
		{
			flex-grow: 1;
			flex-shrink: 0;
		}

		.text-right
		{
			flex-shrink: 0;
		}

		.text-left, .text-right
		{
			padding: 5px 20px;
			white-space: nowrap;
			font-weight: bold;
			opacity: 0.1;
			font-size: 20px;
			align-items: flex-end;

			.unit
			{
				font-size: 15px;
				opacity: 0.5;
			}
		}
	}
}


