/** Shopify CDN: Minification failed

Line 19:19 Expected identifier but found whitespace
Line 19:21 Unexpected "{"
Line 19:30 Expected ":"
Line 20:8 Expected identifier but found whitespace
Line 20:10 Unexpected "{"
Line 20:19 Expected ":"
Line 22:12 Expected identifier but found whitespace
Line 22:14 Unexpected "{"
Line 22:23 Expected ":"
Line 22:61 Expected ":"

**/


/* CSS from section stylesheet tags */
.scrolling-announcement-bar {
  background-color: {{ section.settings.background_color }};
  color: {{ section.settings.text_color }};
  font-weight: 600;
  font-size: {{ section.settings.font_size | default: 18 }}px;
  padding: 0.75rem 0;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  user-select: none;
}

.scroll-inner {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
  min-width: 100%;
}

.scroll-item {
  flex: 0 0 100%;
  text-align: center;
  padding: 0 1rem;
  white-space: break-spaces;
  line-height: 1.3;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 100;
  /* Ensures contents vertically and horizontally centered */
}