/** Shopify CDN: Minification failed

Line 80:18 Expected identifier but found whitespace
Line 80:32 Unexpected "{"
Line 80:41 Expected ":"
Line 80:54 Expected ":"
Line 83:28 Expected percentage but found "{"
Line 83:44 Unexpected "{"

**/


/* CSS from section stylesheet tags */
.announcement-bar {
  overflow: hidden;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.announcement-track {
  display: flex;
  width: max-content;
  animation: scroll-left linear infinite;
}

.announcement-content {
  display: flex;
  white-space: nowrap;
}

.announcement-item,
.announcement-divider {
  display: inline-block;
  margin-right: 1.5rem;
}

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

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.big-text-wrapper {
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .big-text-container-wrapper {
        overflow: hidden;
        width: 100%;
    }

    .big-text-container {
        display: flex;
        flex-wrap: nowrap;
        white-space: nowrap;
        will-change: transform;
    }

    .big-text-container.enable-slide {
        animation: scroll-left-{{ section.id }} linear infinite;
    }

    @keyframes scroll-left-{{ section.id }} {
        from {
            transform: translateX(0%);
        }
        to {
            transform: translateX(-50%);
        }
    }