/** Shopify CDN: Minification failed

Line 13:21 Expected identifier but found whitespace
Line 13:23 Unexpected "{"
Line 13:32 Expected ":"
Line 14:10 Expected identifier but found whitespace
Line 14:12 Unexpected "{"
Line 14:21 Expected ":"

**/
/* START_SECTION:alert-banner (INDEX:0) */
.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;
    }
  }
/* END_SECTION:alert-banner */
