ul.notifications {
  z-index: 10001 !important;
  position: absolute;
  bottom: 45px;
  right: 6px;
  list-style-type: none;
  padding: 0;
  width: 35rem;
}
@media (max-width: 1024px) {
  ul.notifications {
    width: 80%;
  }
}
li.notification {
  display: flex !important;
  flex-direction: column;
  min-height: 4rem;
  margin: 10px auto 0;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
  color: black;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
li.notification a,
li.notification a:hover,
li.notification a:visited {
  color: white;
}
li.notification.error {
  border: 1px solid #F0342B;
}
li.notification.error div.title i {
  color: red;
}
li.notification.error div.message {
  border-top: 1px solid #F0342B;
}
li.notification.warning {
  border: 1px solid #f5a93a;
}
li.notification.warning div.title i {
  color: orange;
}
li.notification.warning div.message {
  border-top: 1px solid #f5a93a;
}
li.notification.info {
  border: 1px solid #A6C5D0;
}
li.notification.info div.title i {
  color: #6bd6fd;
}
li.notification.info div.message {
  border-top: 1px solid #A6C5D0;
}
li.notification.success {
  border: 1px solid #A5DD8C;
}
li.notification.success div.title i {
  color: green;
}
li.notification.success div.message {
  border-top: 1px solid #A5DD8C;
}
li.notification div.title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  padding: 0.5rem;
}
li.notification div.message {
  flex: 1;
  padding: 0.5rem;
  vertical-align: middle;
}
li.notification div.message a {
  text-decoration: underline !important;
}
li.notification div.closeButton {
  top: 5px;
  right: 10px;
  position: absolute;
  font-weight: bold;
  font-size: 18px;
}
li.notification.closeable {
  cursor: pointer;
}
.notifications li.notification.notificationHidden {
  display: none;
  visibility: visible;
}
@keyframes slidesUp {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 45px;
    opacity: 1;
  }
}
.slideUp {
  animation: slidesUp 0.2s ease-out;
}
