/**
 * 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-dimmer {
    background: #020305;
    opacity: 0.7;
}

.alertify .ajs-dialog {
    background: rgba(255, 255, 255, 0.89);
    border: 2px solid #999b9e;
    outline: 4px solid #fff;
    padding: 0 0;
    border-radius: 0;
}

.alertify .ajs-header,
.alertify .ajs-commands {
    display: none;
}

.alertify .ajs-body {
    color: black;
    width: 100%;
    padding: 15px 15px;
    min-height: auto;
}

.alertify .ajs-body .ajs-content {
    color: #000000;
    text-align: center;
    padding: 0 0;
    width: 100%;
}

.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: transparent;
    border-top: 1px solid #999b9e;
    box-shadow: 0 1px 0 #ccc inset;
    padding: 10px 15px 10px;
    text-align: right;
    border-radius: 0;
    margin: 0 0;
}

.alertify .ajs-footer .ajs-buttons .ajs-button {
    background-color: transparent;
    color: #000;
    border: 0;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'futura_maxi_cg_lightregular';
}

.alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok {
    background-color: #020305;
    color: #FFF;
    text-decoration: none;
    font-size: 12px;
    font-weight: normal;
    line-height: 33px;
    border-radius: 0;
    margin-left: 10px;
    padding: 0 20px;
    display: inline-block;
    cursor: pointer;
}

.alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok:hover {
    background: #636565;
}

.alertify-notifier .ajs-message {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    text-align: center;
    border: solid 1px #ddd;
    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;
}