.backgroundimage {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: url( '/UI/newspaperad.png' );
	background-size: 100% 100%;
}

.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: Consolas;
	pointer-events: all;

	> .title {
		font-size: 80px;
		color: white;
		font-weight: bolder;
	}

	> .subtitle {
		font-size: 30px;
		color: white;
		font-weight: bolder;
	}

	> .controls {
		position: absolute;
		bottom: 100px;
		right: 200px;

		.button {
			font-size: 20px;
			padding: 10px 50px;
			background-color: #333;
			color: white;
			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;
			}
		}
	}
}


