/* 	===============================
	Error page
	403 / 404 / 500
	=============================== */

.content-page.error-page {
	background-color: var(--wtl-panel-color-bg-accent);
	flex: 1;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-top: 100px;
	padding-right: 30px;
  padding-bottom: 100px;
	padding-left: 30px;
}

.error-code {
  font-size: 100px;
	line-height: 80px;
	margin-bottom: -70px;
	font-weight: 900;
	letter-spacing: 10px;
	z-index: 1;
}

.error-title {
	font-size: 28px;
	line-height: 35px;
	font-weight: 700;
	margin-top: 20px;
	margin-bottom: 10px;
	text-align: center;
}

.error-description {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	max-width: 768px;
	margin-bottom: 20px;
	text-align: center;
}

.error-image {
	background-position: center;
	background-size: contain;
	mix-blend-mode: multiply;
	width: 100%;
  	max-width: 670px;
}

@media screen and (max-width: 991px) {
	.content-page.error-page {
		padding-bottom: 50px;
	}
}

@media screen and (max-width: 768px) {
	.error-code {
		margin-bottom: -40px;
	}
	.content-page.error-page {
		padding-right: 20px;
		padding-left: 20px;
	}
}

@media screen and (max-width: 479px) {
	.error-code {
		font-size: 72px;
		line-height: 54px;
	}
}
