/** Shopify CDN: Minification failed

Line 15:21 Expected identifier but found whitespace
Line 15:23 Unexpected "{"
Line 15:32 Expected ":"
Line 16:10 Expected identifier but found whitespace
Line 16:12 Unexpected "{"
Line 16:21 Expected ":"

**/


/* CSS from section stylesheet tags */
.alert-banner {
    background-color: {{ section.settings.alert_banner_background }};
    color: {{ section.settings.alert_banner_color }};
  }

  .alert-banner__content {
    padding: 1rem;
    text-align: center;
    font-size: 1.1rem;
  }

  .alert-banner__text--desktop {
    display: none;
  }

  @media (min-width: 1000px) {
    .alert-banner__text--desktop {
      display: block;
    }

    .alert-banner__text--mobile {
      display: none;
    }
  }