/**
 * 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>*/



/* customisation */
html .alertify .ajs-dialog {
    top: 17%;
    width: 30%;
    border-radius: 0;
}
html .alertify .ajs-body .ajs-content {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
}
html .alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok,
html .alertify .ajs-footer .ajs-buttons .ajs-button.ajs-cancel {
    background: #00a882;
    outline: none;
    padding: 0;
    font-size: 14px;
    color: #fff;
    border: none;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: normal;
    cursor: pointer;
    text-transform: uppercase;
    text-align: center;
    min-width: 25%;
    display: block;
    min-height: 28px;
}
html .alertify .ajs-footer .ajs-buttons .ajs-button.alertify-single-btn {
    float: none;
    margin: 0 auto 20px;
}
html .alertify .alertify-double-btn {
    float: left;
}
html .alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok:hover,
html .alertify .ajs-footer .ajs-buttons .ajs-button.ajs-cancel:hover {
    background: black !important;
}

html .alertify .ajs-footer .ajs-buttons .ajs-button.alertify-double-btn.ajs-ok {
    margin: 0 3% 0 22%;
}
html .alertify .ajs-footer .ajs-buttons .ajs-button.alertify-double-btn.ajs-cancel {
    margin: 0 22% 0 3%;
}
html .alertify .ajs-header {
    display: none;
}
html .alertify .ajs-footer {
    font-weight: normal;
    background: white;
    border: none;
    border-radius: 0;
}
html .alertify .ajs-dimmer {
    background-color: rgba(22,20,20,0.90);
    opacity: 1;
}
/* /customisation */






.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: 2px;
}
.alertify .ajs-header {
    color: black;
    font-weight: bold;
    background: #fafafa;
    border-bottom: #eee 1px solid;
    border-radius: 2px 2px 0 0;
}
.alertify .ajs-body {
    color: black;
    min-height: 0;
}
.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: bold;
    text-transform: uppercase;
}
.alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok {
    color: #3593D2;
}
.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;
}
