/****************************
    ALERT BAR
*****************************/
.alert-bar {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  z-index: 10;
}
.alert-slide {
  position: absolute;
  width: 100%;
  padding: 10px 20px;
  text-align: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.alert-slide.active {
  opacity: 1;
  position: relative;
}
.alert-icon {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
}
.alert-text {
  font-size: 14px;
  font-weight: 500;
}
