/** Shopify CDN: Minification failed

Line 37:10 Expected identifier but found whitespace
Line 37:12 Unexpected "{"
Line 37:21 Expected ":"

**/


/* CSS from section stylesheet tags */
.announcement-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 80%;
    @media screen and (max-width: 749px) {
      width: 100%;
    }
  }

  .announcement-bar__messages {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 2em;
  }

  .announcement-bar__message {
    display: none;
    position: absolute;
    white-space: nowrap;
    color: {{ section.settings.color_text }};
    transition: opacity 0.5s ease;
  }

  .announcement-bar__message.active {
    display: block;
    opacity: 1;
  }

/* CSS from snippet stylesheet tags */
.announcement-bar {
    background-color: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 80%;
    @media screen and (max-width: 749px) {
      width: 100%;
    }
  }

  .announcement-bar__messages {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 2em;
  }

  .announcement-bar__message {
    display: none;
    position: absolute;
    white-space: nowrap;
    color: var(--announcement-text-color);
    transition: opacity 0.5s ease;
  }

  .announcement-bar__message.active {
    display: block;
    opacity: 1;
  }