/** Shopify CDN: Minification failed

Line 16:13 Expected identifier but found whitespace
Line 16:15 Unexpected "{"
Line 16:24 Expected ":"
Line 17:8 Expected identifier but found whitespace
Line 17:10 Unexpected "{"
Line 17:19 Expected ":"

**/
/* 新增文件 */
.announcement-bar {
  position: relative;
  overflow: hidden;
  height: 40px;
  background: {{ section.settings.announcement_bg }};
  color: {{ section.settings.announcement_color }};
}

.announcement-bar__content {
  position: relative;
  height: 100%;
}

.announcement-item {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.announcement-item.active {
  opacity: 1;
}

.announcement-bar__close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
  padding: 5px;
}