.alert-cmp {
  height: auto;
  width: 100%;
  position: relative;
  z-index: 11;
  display: flex;
  justify-content: center;
  align-items: center;
}

.alert-cmp__bar {
  width: 100%;
  color: white;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  overflow: hidden;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.alert-cmp__text {
  white-space: inherit;
  text-align: center;
  display: block;
  animation: none;
}

@media (max-width: 480px) {
  .alert-cmp__bar {
    height: auto;
  }
  .alert-cmp__text {
    animation-duration: 30s;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  .alert-cmp__bar {
    height: auto;
  }
  .alert-cmp__text {
    animation-duration: 35s;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .alert-cmp__bar {
    height: 48px;
  }
  .alert-cmp__text {
    animation-duration: 38s;
  }
}