#snack-bar {
	position: fixed;
	top: 0;
}
#snack-bar > .encase {
	width: 100vw;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 0.6rem 0;
	gap: 0.6rem;
	background: rgba(0,0,0,0);
}
#snack-bar .item {
	display: none;
	min-width: 30rem;
	border-radius: 4px;
	box-shadow: 0px 8px 40px rgba(10, 22, 51, 0.5);
	margin: 0;
	padding: 1.0417rem 1.25rem;/* 20px 24px */
}
#snack-bar .item > .encase {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 0.6rem;
}
#snack-bar .item span {
	font-family: 'NanumBarunGothic';
	font-style: normal;
	font-weight: 600;
	font-size: 18px;
	line-height: 18px;
}

