.er_block {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
	justify-content: space-between;
}

.er_block .search__button {
	right: 13px;
    top: 4px;
}

.er_block .search {
	max-width: fit-content;
}

/* Errorpage */
.errorpage {
	display: flex;
	justify-content: center;
}

.errorpage__inner {
	display: flex;
	max-width: 1370px;
}

.errorpage__img {
	flex: 0 1 50%;
}
.errorpage__img a {
	margin: 0 auto;
}
.errorpage__img img {
	border-radius: 0;
}
.errorpage__wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex: 0 1 50%;
	padding: 10px 0;
}
.errorpage__text {
	font-family: inherit;
	border-radius: 0;
	padding: 32px;
	background-size: 650px auto;
	background: rgb(255, 231, 205);
	font-size: 18px;
}

.textblock {
	text-align: left;
}
.textblock h2, .textblock h3 {
	font-weight: 600;
	margin-top: 0;
}
.textblock h2 {
	font-size: 24px;
}
.textblock h3 {
	font-size: 20px;
}
.textblock p {
	line-height: 26px;
}
.errorpage__button-wrap {
	text-align: center;
}
.errorpage__button {
	background-color: #ff7968;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	border-radius: 6px;
	padding: 15px 32px;
	display: block;
	text-decoration: none!important;
}
.errorpage__button:hover, .errorpage__button:active {
	background-color: #bd6356;
	transition-property: all;
	transition-duration: 800ms;
	transition-delay: 0ms;
	transition-timing-function: ease;
}

@media (max-width: 1100px) {
	.textblock p {
		font-size: 16px;
		line-height: 22px;
	}
}
@media (max-width: 880px) {
	.errorpage__inner {
		flex-direction: column;
		align-items: center;
		margin: 0 auto;
		/*max-width: 487px;*/
	}
	.errorpage__wrap {
		padding: 0;
	}
	.errorpage__img img {
		max-height: 500px;
		object-fit: cover;
	}
}
@media (max-width: 480px) {
	.errorpage__text {
		padding: 32px 10px;
	}
	.errorpage__button {
		display: block;
		text-align: center;
	}
}
/* End of Errorpage */

.errorpage__inner {
    display: flex;
    align-items: flex-start;
}