<style>
.animated-banner {
  background: #ffffff;  /* White background */
  color: #333;          /* Dark text for readability */
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  padding: 0.7em 0;
  border-bottom: 1px solid #ffe066;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  animation: slideleft 12s linear infinite;
}
@keyframes slideleft {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
</style>


@media all and (min-width: 1200px) { .theme-header .zpcontainer { padding: 10px 15px !important; } .theme-header-topbar { padding: 8px 0px !important; } }