/* 앱 설치 유도 배너 start */
.app-dl-layer {
	display: none;
	position: fixed;
	z-index: 10050;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.55);
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}
.app-dl-layer.is-open {
	display: flex;
}
.app-dl-layer__box {
	width: 100%;
	max-width: 340px;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-sizing: border-box;
}
.app-dl-layer__banner {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: top;
}
.app-dl-layer__btns {
	display: flex;
	gap: 8px;
	padding: 14px 16px 8px;
}
.app-dl-layer__btns button {
	flex: 1;
	height: 44px;
	border: 0;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
}
.app-dl-layer__open {
	background: #222;
	color: #fff;
}
.app-dl-layer__close {
	background: #eee;
	color: #333;
}
.app-dl-layer__today {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 0 16px 16px;
	font-size: 13px;
	color: #555;
	cursor: pointer;
}
.app-dl-layer__today input {
	width: 16px;
	height: 16px;
	margin: 0;
}
/* 앱 설치 유도 배너 end */
