/** Shopify CDN: Minification failed

Line 13:8 Expected identifier but found whitespace
Line 13:10 Unexpected "{"
Line 13:19 Expected ":"

**/


/* CSS from section stylesheet tags */
.news-ticker-container {
  background-color: #f8f0e5;
  color: {{ section.settings.text_color }};
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  position: relative;
  width: 100%;
}

.news-ticker-track {
  display: inline-block;
  white-space: nowrap;
  animation: ticker-scroll 25s linear infinite;
  will-change: transform;
}

.news-ticker-container:hover .news-ticker-track {
  animation-play-state: paused;
}

.news-ticker-message {
  display: inline-block;
  padding: 0 2rem;
  font-size: 14px;
}
  .clear{clear: both;}

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