.notification-toast-container {
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2001;
  text-align: center;
}
.notification-toast-container .small {
  font-size: 12px;
}
.notification-toast-container a {
  outline: 0;
  text-decoration: none;
  color: #2f89fc;
}
.notification-toast-container.notification-top-center {
  top: 58px;
}
.notification-toast-container .error-item {
  line-height: 20px;
  height: 40px;
  padding: 10px 15px;
  background-color: #feeae8;
  color: #da3b20;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.notification-toast-container .error-item.hidden {
  display: none;
}
.notification-toast-container .persistant-notification {
  text-align: left;
  height: auto;
  position: fixed;
  padding: 16px;
  font-size: 14px;
  right: 20px;
  bottom: 20px;
  width: 300px;
}
.notification-toast-container .persistant-notification .close-icon {
  vertical-align: middle;
  cursor: pointer;
}
.notification-toast-container .persistant-notification.info-notification {
  background-color: #e1fcf9;
  color: #46535e;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.5);
  max-width: 380px;
  right: auto;
  left: 30px;
  bottom: -500px;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-animation: slide-up 0.5s forwards;
  -webkit-animation-delay: 2s;
  animation: slide-up 0.5s forwards;
  animation-delay: 2s;
}
html.ie8
  .notification-toast-container
  .persistant-notification.info-notification,
html.ie7
  .notification-toast-container
  .persistant-notification.info-notification,
html.ie6
  .notification-toast-container
  .persistant-notification.info-notification {
  border: 2px solid;
}
.notification-toast-container
  .persistant-notification.info-notification
  .close-icon {
  color: #9ca3a8;
  font-size: 10px;
  line-height: 21px;
}
.notification-toast-container
  .persistant-notification.info-notification.hidden {
  display: none;
}
@-webkit-keyframes slide-up {
  100% {
    bottom: 10px;
  }
}
@-moz-keyframes slide-up {
  100% {
    bottom: 10px;
  }
}
@-webkit-keyframes slide-up {
  100% {
    bottom: 10px;
  }
}
@-o-keyframes slide-up {
  100% {
    bottom: 10px;
  }
}
@keyframes slide-up {
  100% {
    bottom: 10px;
  }
}
