
#notification {
	position: fixed;
	top: 0px;
	left: 0;
	width: 100%;
	text-align: center;
	font-size: 15px;
	Xfont-weight: bold;
	background: rgba(26, 124, 26, 0.9);
	color: white;
	z-index: 100000015;
	cursor: pointer;
	padding: 5px;
	height: 77px;
	display: table;
}

#notification.notification-warning {
	Xbackground: rgba(245, 96, 96, 0.9);
	background: rgba(236, 140, 50, 0.9);
}

#notification > span.centered {
	display: table-cell;
	vertical-align: middle;
}
#notification:focus {
	outline: none;
}

@media (max-width:768px) {
	#notification {
		font-size: 13px;
		padding: 2px 5px;
	}
}

