<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.news-banner {
  display: block;
  height: 50px;
  width: 100%;
  background-color: #92b9f7;
  overflow: hidden;
}
.news-banner p {
  font-size: 18px;
  color: #f7f4f4;
 font-weight: 550;
 margin-top: 5px;
}
.news-banner_content {
  display: inline-block;
  color: #fff;
  line-height: 30px;
  padding-left: 90%;	
  padding-top:10px;
  white-space: nowrap;
  animation: animate-banner 25s linear infinite;
  /*animation: animate-banner 20s linear infinite;*/
}
.news-banner_content &gt; * {
  display: inline-block;
}
@keyframes animate-banner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
</pre></body></html>