ul.notifications {
  z-index: 10001 !important;
  position: absolute;
  top: 0;
  right: 10px;
  list-style-type: none;
  padding: 0;
  width: 600px;
}
@media (max-width: 1024px) {
  ul.notifications {
    width: 80%;
  }
}
li.notification {
  border-radius: 3px;
  padding: 14px;
  margin: 10px auto 0;
  color: #fff;
  position: relative;
  -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 {
  background-color: #F0342B;
}
li.notification.warning {
  background-color: #f5a93a;
}
li.notification.info {
  background-color: #A6C5D0;
}
li.notification.success {
  background-color: #A5DD8C;
}
li.notification div.title {
  top: 0;
  font-weight: bold;
  margin-bottom: 5px;
}
li.notification div.message {
  bottom: 0;
  vertical-align: middle;
}
li.notification div.message a {
  text-decoration: underline !important;
}
li.notification div.closeButton {
  top: 0px;
  right: 10px;
  position: absolute;
  font-weight: bold;
  font-size: 20px;
}
li.notification.closeable {
  cursor: pointer;
}
.notifications li.notification.notificationHidden {
  display: none;
  visibility: visible;
}
