.announcement-bar {
  z-index: 99;
  overflow: hidden;
  background: #ffffff;
}
.announcement-bar.open {
  display: none;
}
.announcement-bar .announcement-bar-slider {
  height: 30px;
  color: #40372D;
}
.announcement-bar .announcement-bar-slider .swiper-wrapper {
  flex-direction: row;
}
.announcement-bar .announcement-bar-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  padding: 0;
  font-size: 12px;
  height: 100%;
  color: #40372D;
  opacity: 1;
  transition: opacity 0.5s ease-in-out 0.2s;
}
@media only screen and (min-width: 1025px) {
  .announcement-bar .announcement-bar-slider .swiper-slide {
    transition: background 0.35s ease;
  }
}
.announcement-bar .announcement-bar-slider .swiper-slide img {
  display: block;
  height: 13px;
  width: auto;
}
.announcement-bar .announcement-bar-slider .swiper-slide a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  font-size: 12px;
  color: #40372D;
}
@media only screen and (max-width: 768.98px) {
  .announcement-bar .announcement-bar-slider .swiper-slide a {
    width: 90%;
  }
}
.announcement-bar .announcement-bar-slider .swiper-slide:nth-of-type(1) {
  background: #EA538C;
}
.announcement-bar .announcement-bar-slider .swiper-slide:nth-of-type(2n) {
  background: #A7C913;
}
.announcement-bar .announcement-bar-slider .swiper-slide:nth-of-type(3n) {
  background: #34A8A2;
}
.announcement-bar.loading {
  max-height: 30px;
}
.announcement-bar.loading .swiper-slide {
  opacity: 0;
}

body.announce-hidden .announcement-bar {
  display: none;
}
