.alert-message-container {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 9999;
  margin: 15px;
  justify-content: center;
  align-items: center;
  width: 550px;
  height: 180px;
  color: #fff;
  background-color: #ff675d;
  font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans Regular', Tahoma, Verdana, sans-serif;
  font-size: 15px;
}
.alert-message-container.show {
  display: flex;
}
.alert-message-container .alert-message-img {
  width: 55px;
  height: 55px;
  margin-right: 10px;
}

