/**
 * alertifyjs 1.13.1 http://alertifyjs.com
 * AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
 * Copyright 2019 Mohammad Younes <Mohammad@alertifyjs.com> (http://alertifyjs.com) 
 * Licensed under GPL 3 <https://opensource.org/licenses/gpl-3.0>*/
.alertify .ajs-dialog {
  background-color: #666666;
  -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  /* top: 50%;
  transform: translateY(-50%);
  margin: auto; */
}


.alertify .ajs-header {
  color: #a0a0a0;
  font-weight: bold;
  background: #666;
  border-bottom: #555 1px solid;
  border-radius: 2px 2px 0 0;
  font-size: 16px;
  opacity: 1;
}
.alertify .ajs-body {
  color: white;
}
.alertify .ajs-body .ajs-content .ajs-input {
  display: block;
  width: 100%;
  padding: 8px;
  margin: 4px;
  border-radius: 2px;
  border: 1px solid #CCC;
}
.alertify .ajs-body .ajs-content > div:first-child:not([class]) {
  border-left: 6px solid var(--color-error);
  padding: 10px;
  margin-bottom: 20px;
}
.alertify .ajs-body .ajs-content p {
  margin: 0;
}
.alertify .ajs-footer {
  clear: both;
  background: #666;
  border-top: #555 1px solid;
  border-radius: 0 0 2px 2px;
}
.alertify .ajs-footer .ajs-buttons .ajs-button {
  background-color: transparent;
  color: #fff;
  border: 0;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
}
.alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok {
  color: #93c44f;
}
.alertify-notifier .ajs-message {
  background: #666;
  color: white;
  text-align: center;
  border: solid 1px #a0a0a0;
  border-radius: 2px;
}
.alertify-notifier .ajs-message.ajs-success {
  color: #fff;
  background: rgba(91, 189, 114, 0.95);
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);
}
.alertify-notifier .ajs-message.ajs-error {
  color: #fff;
  background: rgba(217, 92, 92, 0.95);
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);
}
.alertify-notifier .ajs-message.ajs-warning {
  background: rgba(252, 248, 215, 0.95);
  border-color: #999;
}

.alertify .ajs-commands button.ajs-close {
  background: url(/i/icon/close-circle_g.svg) white no-repeat center center;
  border-radius: 50%;
}

.alertify .ajs-commands {
  margin-right: 10px;
}