
/* 가로모드 alert */
.isLandscape .landscape_alert {
	display: flex;
}
.landscape_alert {
	display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 999999999;
	background: rgba(0,0,0,0.7);
	transition: background-color 0.3s linear;
	user-select: all;
	pointer-events: all;
}
.alert__contents {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
}
.alert__contents dt img {
	transition: all 0.3s;
}
.alert__contents .cont-desc {
	font-size: 16px;
	font-size: 1rem;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: -0.35px;
	text-align: center;
	color: #fff;
	transition: all 0.3s;
}