/**
 * 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: #607d8bd1;
  -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: black;
  font-weight: bold;
  background: #00000080;
  border-radius: 10px 10px 0 0;
  border-width: 1px;
    border-style: solid;
    border-image-source: linear-gradient(to left, #e1b26d, #ffeb3b,#000);
    border-image-slice: 1;
    border-left: 0px;
    border-right: 0px;
    border-top: 0px;
}
.alertify .ajs-body {
  color: #fff;
  text-align: left;
  padding: 10px;
}
.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: #00000080;
  border-radius: 0 0 10px 10px;
  border: 1px solid;
border-image-slice: 1;
border-width: 1px;
border-image-source: linear-gradient(to right, #e1b26d, #ffeb3b,#000);
border-left: 0px;
border-right: 0px;
border-bottom: 0px;
}
.alertify .ajs-footer .ajs-buttons .ajs-button {
  background-color: transparent;
  color: #000;
  border: 0;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok {
  color: #3593D2;
  background-color: #cdedf1;
  border-radius: 10px;
}

.alertify .ajs-footer .ajs-buttons .ajs-button.ajs-cancel {
  color: #ff5722;
  background-color: #efd4d4;
  border-radius: 10px;
}


.alertify-notifier .ajs-message {
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  text-align: center;
  border: solid 0px #ddd;
  border-radius: 10px;
}
.alertify-notifier .ajs-message.ajs-success {
  color: #18621b;
  background:  #8bc34a9c;;
  padding: 5px;
  box-shadow:0px 0px 92px -2px #000000
}
.alertify-notifier .ajs-message.ajs-error {
  color: #c32418;
  background: #df6f4c82;
  padding: 5px;
  box-shadow:0px 0px 92px -2px #000000
}
.alertify-notifier .ajs-message.ajs-warning {
  background: rgba(252, 248, 215, 0.95);
  border-color: #999;
}

.alertify .ajs-commands{
  width: 100%;

}

.alertify .ajs-close{
  float: right;
  background-color: #f3cc57 !important;
  border-radius: 20px;
}

.alertify .ajs-commands {
    position: absolute;
    left: 4px;
    margin: -17px 0 0 0px;
    z-index: 2;
}
