@keyframes hideAfterTime {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes hideAfterTimeAgain {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.notifier-container {
  position: fixed;
  top: 30px;
  right: 30px;
  max-width: 300px;
  z-index: 60000000;
}
#notifier-bottom {
  top: auto;
  bottom: 30px;
}
.notifier-dark {
  color: #fff;
}
.notifier-dark a,
.notifier-dark .error,
.notifier-dark .alert {
  color: #fff;
  padding: 0;
}
.notifier-container > div {
  border: 1px solid #555;
  background: #F8F2C7;
  padding: 5px 10px;
  margin-top: 4px;
  font-size: 12px;
  color: #555;
  border-radius: 3px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
  word-break: break-word;
}
.notifier-container > div a {
  text-decoration: underline;
}
.notifier-container > div a:hover {
  text-decoration: none;
}
.notifier-container > div > a[href="#close-notify"] {
  text-decoration: none;
  font-size: 1.2em;
  float: right;
  margin: 0 0 10px 10px;
}
.notifier-container > div.notifier-error {
  background: #dd0000;
  border-color: #dd0000;
  color: #fff;
}
.notifier-container > div.notifier-error a,
.notifier-container > div.notifier-error .error,
.notifier-container > div.notifier-error .alert {
  color: #fff;
  padding: 0;
}
.notifier-container > div.notifier-warning {
  background: #f0ac4f;
  border-color: #f0ac4f;
  color: #fff;
}
.notifier-container > div.notifier-warning a,
.notifier-container > div.notifier-warning .error,
.notifier-container > div.notifier-warning .alert {
  color: #fff;
  padding: 0;
}
.notifier-container > div.notifier-success {
  background: #2db737;
  border-color: #2db737;
  color: #fff;
}
.notifier-container > div.notifier-success a,
.notifier-container > div.notifier-success .error,
.notifier-container > div.notifier-success .alert {
  color: #fff;
  padding: 0;
}
.notifier-container > div > .alert {
  background: none;
  margin: 0;
  padding: 0;
  min-height: 0px;
  border-color: transparent;
  color: inherit;
  position: static;
}
.notifier-container > div > .alert.alert-dismissible > .close {
  display: none;
}
.notifier-container > div > .alert .dev_opener {
  display: none;
}
.notifier-container > div > .alert .alert-icon {
  display: none;
}
@-webkit-keyframes slidex {
  0% {
    opacity: 0;
    transform: translateX(-80px);
    -webkit-transform: translateX(-80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
  }
}
@keyframes slidex {
  0% {
    transform: translateX(-80px);
  }
  100% {
    transform: translateX(0px);
  }
}
@-webkit-keyframes slideout {
  0% {
    opacity: 1;
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
  }
  100% {
    transform: translateX(300%);
    -webkit-transform: translateX(300%);
    transform: translateX(100vw);
    -webkit-transform: translateX(100vw);
    opacity: 0.5;
  }
}
@keyframes slideout {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(300%);
    transform: translateX(100vw);
  }
}
.visible .notifier-container > div {
  -webkit-animation: slidex 0.25s forwards;
  animation: slidex 0.25s forwards;
}
.visible .notifier-container > div.slideout {
  -webkit-animation: slideout 1s forwards;
  animation: slideout 1s forwards;
}
/*# sourceMappingURL=/system/extensions/notifier/assets/css/serve.notifier.less.css.map */