@charset "utf-8";

.notice-message {
	display: none;
	background: rgba(255, 0, 0, 0.1);
	color: red;
	padding: 5px 10px;
	font-size: 15px;
	border-radius: 5px;
}
	.notice-message em {
		font-weight: bold;
	}
	.notice-message.on {
		display: inline-block;
	}
