/** Shopify CDN: Minification failed

Line 15:29 Expected identifier but found whitespace
Line 15:31 Unexpected "{"
Line 15:40 Expected ":"
Line 16:32 Expected identifier but found whitespace
Line 16:34 Unexpected "{"
Line 16:43 Expected ":"

**/


/* CSS from section stylesheet tags */
.es-announcement-bar-wrapper {
    --es-announcement-bar-bg: {{ section.settings.background_color }};
    --es-announcement-bar-color: {{ section.settings.text_color }};
    background-color: var(--es-announcement-bar-bg);
    color: var(--es-announcement-bar-color);
    padding: 5px;
    text-align: center;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }

  .es-bar-inner {
    max-width: 450px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 22px;
  }

  .es-announcement-bar-texts {
    position: relative;
    height: 22px;
    flex-grow: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .es-announcement-bar-text {
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.5s ease;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    transform: translateY(10px);
    z-index: 0;
  }

  .es-announcement-bar-text.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
    font-size: 12px !important;
    font-weight: 600;
  }

  .es-announcement-bar-text p {
    font-size: 12px !important;
    font-weight: 600;
  }

  .es-announcement-bar-nav {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
  }