/** Shopify CDN: Minification failed

Line 20:21 Expected identifier but found whitespace
Line 20:23 Unexpected "{"
Line 20:32 Expected ":"
Line 21:16 Expected identifier but found whitespace
Line 21:18 Unexpected "{"
Line 21:27 Expected ":"
Line 21:53 Expected ":"
Line 22:19 Expected identifier but found whitespace
Line 22:21 Unexpected "{"
Line 22:30 Expected ":"
... and 9 more hidden warnings

**/


/* CSS from section stylesheet tags */
.cinematic-marquee {
    background-color: {{ section.settings.background_color }};
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
    overflow: hidden;
  }

  .marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin: 0; /* remove any spacing */
  }

  .marquee-inner {
    display: flex;
    white-space: nowrap;
    margin: 0; /* remove any spacing */
  }

  .marquee-line {
    display: flex;
    white-space: nowrap;
    margin: 0; /* remove any spacing */
  }

  .marquee-line span {
    margin-right: 60px;
    font-weight: bold;
    white-space: nowrap;
  }

  .marquee-1 .marquee-inner,
  .marquee-2 .marquee-inner {
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }

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

  @keyframes marquee-right {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0%);
    }
  }

  /* Responsive font sizing */
  @media screen and (max-width: 768px) {
    .marquee-1 {
      font-size: {{ section.settings.text_size_mobile_1 }}px !important;
    }
    .marquee-2 {
      font-size: {{ section.settings.text_size_mobile_2 }}px !important;
    }
  }