/**
 * alertifyjs 1.11.0 http://alertifyjs.com
 * AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
 * Copyright 2017 Mohammad Younes <Mohammad@alertifyjs.com> (http://alertifyjs.com) 
 * Licensed under GPL 3 <https://opensource.org/licenses/gpl-3.0>*/

.alertify .ajs-dialog {
    background-color: #fff;
    -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, .25);
    box-shadow: 0 15px 20px 0 rgba(0, 0, 0, .25);
    border-radius: 2px
}
.alertify .ajs-header {
    color: #000;
    font-weight: 700;
    background: #fafafa;
    border-bottom: #eee 1px solid;
    border-radius: 2px 2px 0 0
}
.alertify .ajs-body {
    color: #000
}
.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: #000;
    border: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase
}
.alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok {
    color: #3593d2
}
.alertify-notifier .ajs-message {    
    color: #fff;
    background: #57c7d4;
    border-color: #44a8b4;
    border-radius: 3px;
    font-weight: 500;

    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-image: none;
    border-style: none none none solid;
    border-width: medium medium medium 3px;
}
.alertify-notifier .ajs-message.ajs-success {
    color: #fff;
    background: #46be8a;
    border-color: #339c6f;
    border-radius: 3px;
    font-weight: 500;

    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-image: none;
    border-style: none none none solid;
    border-width: medium medium medium 3px;

}
.alertify-notifier .ajs-message.ajs-error {
    color: #fff;
    background: #dd4b39;
    border-color: #d91d1f;
    border-radius: 3px;
    font-weight: 500;

    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-image: none;
    border-style: none none none solid;
    border-width: medium medium medium 3px;
}
.alertify-notifier .ajs-message.ajs-warning {
    color: #fff;
    background: #f2a654;
    border-color: #c6843d;
    border-radius: 3px;
    font-weight: 500;

    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-image: none;
    border-style: none none none solid;
    border-width: medium medium medium 3px;
}