/* bw-news-ticker.css - v1.2 */
#bw-news-ticker {
  position: fixed;
  top: 0;
  width: 100%;
  background: black;
  color: white;
  z-index: 99999;
  font-family: sans-serif;
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.ticker-wrap {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  cursor: grab;
}

.ticker {
  display: inline-block;
  padding-left: 100%;
  animation: scrollTicker 60s linear infinite;
  font-family: "Jersey 15", sans-serif;
  font-size: 40px;
  text-transform: uppercase;
  cursor: grab;
  touch-action: none;
}

.ticker:active {
  cursor: grabbing;
}

.ticker a {
  color: #009aff;
  text-decoration: none;
  font-weight: bold;
  padding: 0 10px;
  pointer-events: auto;
}

.ticker a:hover {
	color: #fc007e
}

.bullet {
  padding: 0 10px;
  color: #fff;
}

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