#top-bar {
	background: rgba(255,255,255,0.2);
	height: 45px;
	position: absolute;
	top: 0;
	width: 100%;
	color: #FFF;
  z-index: 2;
}

#top-bar-content {
  display: grid;
  max-width: 1234px;
  gap: 10px;
  padding: 14px;
  justify-content: center;
  margin: 0px auto;
  text-align: center;
	font-weight: bold;
}

#alert-bar {
  background: rgba(255,255,255,0.8);
  color: #000;
  -webkit-box-pack: center;
  padding: 20px;
  position: relative;
  font-weight: 500;
  top: 0;
  opacity: 0;
  transition: all 0.3s ease 0s;
  z-index: 3;
  border-radius: 5px;
}
#alert-bar a {
  color: #000;
}
#alert-bar .alert-content {
  margin-right: 20px;
}
#close-alert-bar {
  width: 15px;
  position: absolute;
  top: 10px;
  right: 10px;
}
#close-alert-bar img {
  width: 100%;
}