.not-found-page {
	box-sizing: border-box;
	width: 100%;
	max-width: min(100%, var(--layout-container-min));
	margin-left: auto;
	margin-right: auto;
}

.not-found-page .not-found-page__inner {
	gap: 1.5rem;
	width: 100%;
	max-width: var(--layout-container-mobile);
	margin-left: auto;
	margin-right: auto;
	padding-top: var(--layout-gap-section);
	padding-bottom: var(--layout-gap-section);
	text-align: center;
}

.not-found-page .not-found-page__code-wrap {
	position: relative;
	display: inline-flex;
	justify-content: center;
}

.not-found-page .not-found-page__code {
	font-family: 'Unbounded', sans-serif;
	font-size: 8.046rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--color-blue-blue-800);
}

.not-found-page .not-found-page__flower {
	position: absolute;
	top: 1.448125rem;
	left: 7.905rem;
	width: 5.1091875rem;
	height: 5.1091875rem;
	pointer-events: none;
}

.not-found-page .not-found-page__flower svg {
	display: block;
	width: 100%;
	height: 100%;
}

.not-found-page .not-found-page__content {
	gap: 0.75rem;
	width: 100%;
}

.not-found-page .not-found-page__title {
	margin: 0;
	color: var(--color-blue-blue-800);
}

.not-found-page .not-found-page__description {
	color: var(--color-gray-gray-600);
}

@media (min-width: 64rem) {
	.not-found-page .not-found-page__inner {
		max-width: 52.625rem;
	}

	.not-found-page .not-found-page__code {
		font-size: 12.5rem;
	}

	.not-found-page .not-found-page__flower {
		top: 2.25rem;
		left: 50%;
		width: 7.9375rem;
		height: 7.9375rem;
		transform: translateX(-50%);
	}

	.not-found-page .not-found-page__title {
		max-width: 52.625rem;
	}

	.not-found-page .not-found-page__description {
		max-width: 39.75rem;
	}
}
