.notifications-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  background-color: transparent;
  pointer-events: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.notifications-background > .notifications-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  padding: 10px;
  width: 400px;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.notifications-background > .notifications-holder > .notification {
  position: relative;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-top: 15px;
  border: 1px solid black;
  background-color: #404040;
  padding: 15px;
  width: 100%;
  min-height: 100px;
  color: #fff;
  pointer-events: visible;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.notifications-background > .notifications-holder > .notification > .custom-progress {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
}

.notifications-background > .notifications-holder > .notification.notification-priority {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  border: 1px solid #b6ff00;
}
/*# sourceMappingURL=notifications.css.map */