.rotate-notice {
	display: none;
}

body.rotate-warning .rotate-notice {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	color: rgb(var(--b) / 1);
	background: rgb(var(--n-d) / .96);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.rotate-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: min(22rem, 100%);
	gap: .75rem;
	text-align: center;
}

.rotate-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	border: 1px solid rgb(var(--b) / .35);
	border-radius: 50%;
}

.rotate-icon::before {
	content: "\e900";
	font-family: "icomoon";
	font-size: 1.75rem;
	color: rgb(var(--c1) / 1);
	transform: rotate(90deg);
}

.rotate-box h4 {
	margin: 0;
	font-size: 1.15rem;
	line-height: 1.1;
	color: rgb(var(--b) / 1);
}

.rotate-box p {
	margin: 0;
	max-width: 18rem;
	font-size: .9rem;
	line-height: 1.35;
	color: rgb(var(--b) / .75);
}