.alert-message-container-box {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 300px;
  z-index: 99999;
}

.alert-message-show {
  opacity: 1;
  transform: translateX(0);
  transition: 0.5s;
  animation: 0.5s slide-left;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

@keyframes slide-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

.fade-out {
  transition: 0.5s;
  opacity: 0 !important;
}
