/** Shopify CDN: Minification failed

Line 52:41 Unexpected "N"

**/
.shopify-section--announcement-bar {
  order: -1;
}

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background: rgb(var(--color-primary-base));
  color: rgb(var(--color-neutral-white));
  gap: 32px;
  color: rgb(var(--color-neutral-white));
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  position: relative;
  z-index: 98;
}
.announcement-bar__separator {
  opacity: 0.4;
}

@media screen and (max-width: 1200px) {
  .announcement-bar {
    gap: 16px;
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .announcement-bar__item:not(.active) {
    display: none;
  }
  .announcement-bar__item {
    order: 2;
  }

  .announcement-bar__separator {
    order: 1;
  }

  .announcement-bar__separator:nth-child(4) {
    order: 3;
  }
  .announcement-bar__separator:nth-child(N + 5) {
    display: none;
  }
}
