#message-banner {
	position: fixed;
	top: 4px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
	width: 100%;

	font-weight: bold;
	font-size: 16px;
	overflow: hidden;
	width: calc(100%-16px);
	height: 20px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.banner-line {
	color: #222;
	padding: 0px;
	margin: 0px;
	opacity: 0.1;
	width: calc(100%-16px);
	background-color: #ffcc00;

	transform: translateY(-20px);

	white-space: nowrap;
	max-width: 90vw;
	overflow: hidden;
	text-overflow: ellipsis;
}

/*
	transition: opacity 0.5s ease, transform 0.5s ease;

*/
.banner-line.show {
	opacity: 1;
	transform: translateY(0);
}

.banner-line.hide {
	opacity: 0.1;
	transform: translateY(-20px);
}
