.sntp-ticker-wrapper {
  display: flex;
  align-items: center;
  background: #222;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
}
.sntp-label {
  background: #c00;
  padding: 0 12px;
  font-weight: bold;
}
.sntp-ticker {
  overflow: hidden;
  flex: 1;
}
.sntp-track {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}
.sntp-item {
  display: inline-block;
  margin-right: 40px;
}
.sntp-item a {
  color: #fff;
  text-decoration: none;
}
.sntp-item a:hover {
  color: #ff0;
}
@keyframes ticker {
  0% {transform: translateX(100%);}
  100% {transform: translateX(-100%);}
}
