.toast-alert-area {
  max-height: 100%;
  position: absolute;
  z-index: 90;
  left: 50%;
  top: 100px;
  transform: translate(-50%, -50%);
}

.toast-alert-area .toast-alert {
  visibility: hidden;
  min-width: 250px;
  border-radius: 5px;
  padding: 16px;
  position: relative;
  margin-bottom: 0.5rem;
  background-color: #333 !important;
  color: #fff;
  text-align: center;
}

.toast-alert-area .toast-alert.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 4.8s;
  animation: fadein 0.5s, fadeout 0.5s 4.8s;
}

.toast-alert-area .toast-alert ul {
  text-align: left;
}

@-webkit-keyframes fadein {
  from {
    top: -100px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    top: -100px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    top: 0;
    opacity: 1;
  }

  to {
    top: -100px;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    top: 0;
    opacity: 1;
  }

  to {
    top: -100px;
    opacity: 0;
  }
}

.toast-alert-area .toast-alert .closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.toast-alert-area .toast-alert:hover .closebtn {
  color: #aaa;
}
