/** Shopify CDN: Minification failed

Line 70:1 Expected "}" to go with "{"

**/
.section-announcement {
  z-index: 100;
  position: fixed;
  top: 10px;
  left: 20px;
  right: 20px;
  overflow:hidden;
}

.announcement {
  display: grid;
  align-items: center;
  height:25px;
  width: 100%;
  position: relative;
  border-radius: 10px;
  background: transparent;
  overflow:hidden;
}

.announcement::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  background-color: rgba(var(--color-background), 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index:-1;
  border: solid 1px rgba(var(--color-background), 0.2);
}

.announcement__marquee {
  display: inline-block;
  white-space: nowrap;
}

.announcement__text {
  display: inline-block;
  padding: 0 20px;
}

.announcement > :not(.announcement__marquee) .announcement__text {
  width:100%;
}

.announcement__text.center {
  text-align:center;
}

.announcement__text.right {
  text-align:right;
}

@media screen and (max-width: 750px) {
  .section-announcement {
  left: 7.5px;
  right: 7.5px;
  overflow:hidden;
}