/**
 * 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: white;
  -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: 10px;
}
.alertify .ajs-header {
  color: #fff;
  font-weight: bold;
  background-image: linear-gradient(to right, #0b518d, #0b518d, #1788e9);
  border-bottom: #eee 1px solid;
  border-radius: 5px 5px 0 0;
}
.alertify .ajs-body {
  color: black;
}
.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 p {
  margin: 0;
}
.alertify .ajs-footer {
  background: #fbfbfb;
  border-top: #eee 1px solid;
  border-radius: 0 0 5px 5px;
}
.alertify .ajs-footer .ajs-buttons .ajs-button {
  background-color: transparent;
  color: #000;
  border: 0;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all ease-in-out 0.1s;
}
.alertify .ajs-footer .ajs-buttons .ajs-button:hover{
  background-color: lightcoral;
}
.alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok {
  color: #3593D2;
  cursor: pointer;
  border-radius: 3px;
  transition: all ease-in-out 0.1s;
}
.alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok:hover{
  background-color: royalblue;
  color: #fff;
}
.alertify-notifier .ajs-message {
  background: rgba(199, 236, 253, 0.95);
  color: #000;
  text-align: center;
  border: solid 1px #b9ddf5;
  border-radius: 2px;
}
.alertify-notifier .ajs-message.ajs-success {
  color: #fff;
  background: rgba(40, 167, 69, 0.95);
  /*text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);*/
  word-break: break-all;
}
.alertify-notifier .ajs-message.ajs-error {
  color: #fff;
  background: rgba(250, 53, 69, 0.95);
  /*text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);*/
  word-break: break-all;
}
.alertify-notifier .ajs-message.ajs-warning {
  color: #000;
  background: rgba(255, 193, 7, 0.95);
  /*border-color: gray;*/
  word-break: break-all;
}
