.marquee-alert {
  width: 100%;
  overflow: hidden;
  background: #4b548e;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 10px 0;
  position: relative;
}

.marquee-alert span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}
