@charset "utf-8";
/* CSS Document */
.an-ticker-container {
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 10px;
  color:#333;
}

.an-ticker-wrapper {
  display: inline-block;
  animation: ticker 40s linear infinite;
}

.an-ticker-wrapper:hover {
  animation-play-state: paused;
}

.an-ticker {
  display: inline-block;
}

.an-ticker-text {
  font-weight: bold;
}

.blink {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

@keyframes ticker {
  0% {
    transform: translateX(40%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.an-ticker .btn {
  background: #F2B922;
  color:#000;
  padding:2px 6px;
  border-radius:5px;
  text-decoration:none;
}
