/**
 * alertifyjs 1.11.1 http://alertifyjs.com
 * AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
 * Copyright 2018 Mohammad Younes <Mohammad@alertifyjs.com> (http://alertifyjs.com) 
 * Licensed under GPL 3 <https://opensource.org/licenses/gpl-3.0>*/

.alertify-notifier .ajs-message {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  text-align: center;
  border-radius: 4px;
}
.alertify-notifier .ajs-message.ajs-success {
  color: #21e0d5;
  background: #3a3a3a;
  opacity: 0.96;
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 0.4px;
  line-height: 1.2;
  font-family: "Mont", "Mont Regular", sans-serif;
}
.alertify-notifier .ajs-message.ajs-error {
  color: #fff;
  background: #f26b38;
  opacity: 0.96;
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 0.4px;
  line-height: 1.2;
  font-family: "Mont", "Mont Regular", sans-serif;
}
.alertify-notifier .ajs-message.ajs-warning {
  background: rgba(252, 248, 215, 0.95);
  border-color: #999;
}
