/**
 * 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>
 */
 @import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700,900');
 @import url('https://fonts.googleapis.com/css?family=Noto+Sans:400,700');
 @import url('https://fonts.googleapis.com/css?family=Chewy');

 .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);
}

.alertify .ajs-body {
  color: black;
  text-align: center;
  padding-top: 30px;
  color: #00195D;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 500;
}
.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 2px 2px;
}
.alertify .ajs-footer .ajs-buttons .ajs-button {
  background-color: transparent;
  color: #fff;
  border: 0;
  width: 100px;
  height: 28px;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok {
  /*color: #3593D2;*/
  background: #00195D;
}
.alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok:hover {
  background: #6AA7E9;
  transition: all ease-in 0.4s;
}
.alertify .ajs-footer .ajs-buttons .ajs-button.ajs-cancel {
  /*color: #3593D2;*/
  background: #FF1B23;
}
.alertify .ajs-footer .ajs-buttons .ajs-button.ajs-cancel:hover {
  background: #d30000;
  transition: all ease-in 0.4s;
}
.alertify-notifier .ajs-message {
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  text-align: center;
  border-radius: 2px;
  z-index: 1982;

}
.alertify-notifier .ajs-message.ajs-success {
  color: #fff;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 500;
  background: rgba(89,144,210,0.9);
  text-shadow: 1px 1px 2 rgba(0, 0, 0, 0.4);
}
.alertify-notifier .ajs-message.ajs-error {
  color: #fff;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  background: rgba(217, 92, 92, 0.95);
  text-shadow: -1px -1px 0.2 rgba(0, 0, 0, 0.5);
}
.alertify-notifier .ajs-message.ajs-warning {
  background: rgba(252, 248, 215, 0.95);
  border-color: #999;
}
