<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** Shopify CDN: Minification failed

Line 17:10 Expected ":"

**/
.announcement-bar {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: stretch;
  user-select: none;
  transition: transform var(--duration-long) ease;
}

.announcement-bar__body {
  relative;
  width: 100%;
  background-color: var(--bg-color, '#FFFFFF');
}

.announcement-bar__close {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  appearance: none;
  background-color: transparent;
  border: 0;
  z-index: 2;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  text-indent: -99999px;
  cursor: pointer;
}

.announcement-bar__close::before {
  content: " ";
  position: absolute;
  display: block;
  background-color: white;
  height: 2px;
  width: calc(100% - 0.5rem);
  transform: rotate(45deg);
}

.announcement-bar__close::after {
  content: " ";
  position: absolute;
  display: block;
  background-color: white;
  height: 2px;
  width: calc(100% - 0.5rem);
  transform: rotate(-45deg);
}

.announcement-bar__close svg {
  object-fit: contain;
  width: 50%;
  height: 50%;
}

.announcement-bar__list {
  margin: 0;
  padding: 0;
  align-items: center;
}

.announcement-bar__item {
  width: 100%;
  margin: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-bar__link {
  display: block;
  text-decoration: none;
}

.announcement-bar__message {
  color: var(--font-color, '#000000');
  margin: 0;
  padding: 1rem 3rem;
}

@media screen and (max-width: 768px) {
  .announcement-bar__message {
    font-size: 12px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1440px) {
  .announcement-bar__message {
    font-size: 16px;
  }
}

@media screen and (min-width: 1441px) {
  .announcement-bar__message {
    font-size: 24px;
  }
}</pre></body></html>