/** Shopify CDN: Minification failed

Line 19:12 Expected identifier but found whitespace
Line 19:26 Unexpected "{"
Line 19:35 Expected ":"
Line 19:68 Expected ":"

**/
.text-carousel__outer {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.text-carousel__track {
  display: flex;
  width: max-content;
  animation: scroll-left {{ section.settings.speed | default: 20 }}s linear infinite;
}

.text-carousel__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: #fff;
}

/* Heading alignment */
.text-heading.left { text-align: left; }
.text-heading.center { text-align: center; }
.text-heading.right { text-align: right; }

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}