.adv-dark {
  background-color: #2a2e33;
}
.alert.fixed-bottom {border:none; backgroun:none; margin:0 !important;}

.adv-slider {
  max-width: 100%;
  overflow: hidden;
}

.adv-slider .swiper-slide {
  height: auto;
  display: flex;
}

.adv-slider .swiper-slide img {
  max-width: 100%;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.adv-grid img {
  max-height: 300px;
}

@media (max-width: 767px) {
  .adv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
  }
}

.floating-adv {
  padding: 4px;
  background-color: #fff;
  bottom: 0;
  right: 80px;
  z-index: 100;
  transition: ease 0.5s;
}

@media (max-width: 767px) {
  .floating-adv {
    right: 16px;
  }
}

.floating-adv-close {
  position: absolute;
  right: 0;
  top: -24px;
  width: 24px;
  height: 24px;
  border-radius: 5px 5px 0 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.floating-adv-close .chevron {
  display: none;
}

.floating-adv.close {
  transform: translateY(100%);
}

.floating-adv.close .chevron {
  display: block;
}

.floating-adv.close .close {
  display: none;
}

.announcement-bar {
  background-color: #1c1e20;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
}
.alert-dark { background-color: #1c1e20; border-radius:0;}

.announcement-bar.bottom-alert {top:auto; bottom:0;}
.announcement-bar .text-banner, .alert-dark .text-banner{
  color: #fff;
}

.alert-dark .btn-close {
    right: .5rem;
    top: .95rem;
    position: absolute;
}

.announcement-close {
  position: absolute;
  right: 16px;
  width: 30px;
  cursor: pointer;
}

 