.errorContainer {
	position: absolute;
	pointer-events: none;
	
	left: 0;
	right: 0;
	bottom: 0;
	padding: 20px;
	
	opacity: 0.8;
	
	z-index: 10000000;
}

.errorContainer .message {
	border: 2px solid white;
	font-size: 0.7rem;
	border-radius: 1000px;
	padding: 10px 0.7em;
	margin-top: 10px;
	color: white;
}

.errorContainer .message.warning {
	background: darkorange;
}

.errorContainer .message.error {
	background: darkred;
}