#noscript-banner {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50px;
	text-align: center;
	flex-direction: column;
	background-color: #ddddff;
	color: #000000;
	animation: noscript-banner 0.3s linear 2.7s 1 both;
	transform: translateY(-50px);
	font-family: Arial, Helvetica, sans-serif;
	z-index: 51;
}

#noscript-banner span {
	margin: auto;
}

@keyframes noscript-banner {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-50px);
	}
}
