.errorWindowHolder {
	display: none;
	position: absolute;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	top: 0;
	left: 0;

	width: 100%;
	height: 100%;

	overflow: hidden;

	z-index: 9000;
}

.errorWindow {
	border: solid;
	border-radius: 5px;
	border-color: #ff0000;

	box-shadow: 0px 0px 20px #ff0000;

	min-width: 250;
	max-width: 400;

	height: auto;
	width: 90%;

	padding-top: 5px;
	padding-bottom: 15px;
	padding-left: 5px;
	padding-right: 5px;

	background: rgba(0, 0, 0, 0.85);

	overflow-y: scroll;
}

.errorTitle {
	font-size:30px;

	margin-top:0px;
	margin-bottom:10px;

	color:#ff0000;
}

.errorText {
	margin-top:0px;
	margin-bottom:15px;
}

.errorButton {
	cursor: pointer;
	border: solid;
	border-width: 1px;
	border-radius: 3px;
	border-color: #d1d1d1;

	background-color: #1c1c1c;

	height: 30px;
	width: 75px;

	margin-left: 2px;
	margin-right: 2px;

	font-size: 15px;
	text-align: center;
	line-height: 30px;
	vertical-align: center;
}
