#notifications-container {
  position: fixed;
  bottom: 60px;
  left: 0;
  width: 100%;
  z-index: 10500;
  color: white;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
#notifications-container .action-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: url(../Images/Notifications/Close.png) no-repeat right center;
  z-index: 1000;
}
#notifications-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#notifications-container ul .notification-enter {
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
#notifications-container ul .notification-leave {
  -webkit-transition: all 0.05s linear;
  -moz-transition: all 0.05s linear;
  -o-transition: all 0.05s linear;
  transition: all 0.05s linear;
}
#notifications-container ul .notification-enter,
#notifications-container ul .notification-leave.notification-leave-active {
  padding: 0 20px;
}
#notifications-container ul li,
#notifications-container ul .notification-enter.notification-enter-active,
#notifications-container ul .notification-leave {
  padding: 10px 20px;
}
#notifications-container ul li {
  position: relative;
  z-index: 998;
  background: #4a5562;
  max-height: 500px;
}
#notifications-container ul li a {
  color: white;
  text-decoration: underline;
}
#notifications-container ul li a:hover {
  text-decoration: none;
}
#notifications-container ul li .notification-title {
  padding-left: 30px;
  line-height: 18px;
}
#notifications-container ul li.warning .notification-title {
  background: url(../Images/Notifications/NotificationsWarning.png) no-repeat left center;
}
#notifications-container ul li.success .notification-title {
  background: url(../Images/Notifications/NotificationsSuccess.png) no-repeat 3px center;
}
#notifications-container ul li.error .notification-title {
  background: url(../Images/Notifications/NotificationsError.png) no-repeat left center;
}
#notifications-container ul li.process .notification-title {
  background: url(../Images/Notifications/NotificationsProcess.gif) no-repeat left center;
}
#notifications-container ul li .notification-actions {
  display: inline-block;
  margin-left: 20px;
  text-transform: uppercase;
}
#notifications-container ul li .notification-actions a {
  line-height: 30px;
  display: inline-block;
  text-decoration: none;
  padding-right: 35px;
  margin-right: 15px;
  font-size: 11px;
}
#notifications-container ul li .notification-actions a.action-toggle-details {
  background: url(../Images/Notifications/Details.png) no-repeat right center;
}
#notifications-container ul li .notification-actions a.action-remove {
  background: url(../Images/Notifications/Ok.png) no-repeat right center;
}
#notifications-container ul li .notification-details {
  max-height: 200px;
  overflow-y: auto;
  margin: 5px 0;
}
#notifications-container ul li .notification-details p {
  margin: 5px 0;
}
#notifications-container ul li .notification-details ul {
  list-style: disc;
  margin: 5px 5px 5px 25px;
}
#notifications-container ul li .notification-details ul li {
  padding: 0;
  margin: 5px 0;
}
