/*
.component-error {
	background-color: #eeefef;
	height: 100%;
	min-height: 200px
}

.component-error__message {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50%;
	padding: 10px;
	transform: translate(-50%, -50%);
	border: 2px solid #ccc;
	background: #fff;
	text-align: center;
	opacity: 0.5;
}
*/

.component-error {
	background-color: #eeefef;
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	justify-items: center;
	/*position: absolute;*/
}

.component-error__message {
	padding: 10px;
	border: 2px solid #ccc;
	background: #fff;
	opacity: 0.5;
}