.banner-text {
	position: relative;
	background-color: #004080;
	color: white;
	font-size: 16px;
	padding: 15px 30px 15px 20px;
	text-align: center;
	font-family: calibri;
	display: none;

	/* Restrict height to approx. 3 lines */
	max-height: 3.5em;
	overflow-y: auto;
}

.close-btn {
	position: absolute;
	top: 2px;
	right: 5px;
	color: white;
	font-size: large;
	font-weight: bold;
	cursor: pointer;
	padding: 2px 6px;
	border-radius: 4px;
	transition: background-color 0.2s ease;
}

.close-btn:hover{
	background-color: rgba(255,0,0, 0.2);
}