/**
 * KAI Look and Feel
 */
.alertify,
.alertify-log {
    font-family: sans-serif;
}
.alertify {
    background: #fcfcfc;
    border: 5px solid #333;
    border: 5px solid rgba(51, 51, 51, 1);
    border-radius: 4px;
    box-shadow: 0 3px 3px rgba(0,0,0,.3);
    -webkit-background-clip: padding;     /* Safari 4? Chrome 6? */
    -moz-background-clip: padding;     /* Firefox 3.6 */
    background-clip: padding-box; /* Firefox 4, Safari 5, Opera 10, IE 9 */
}
.alertify-button {
    display: inline-block;
    margin-bottom: 0;
    margin-left: 10px;
    margin-right: 5px;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: none;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.alertify-button:hover,
.alertify-button:focus {
    border: inherit;
    background-image: none;
}
.alertify-button:focus {
    box-shadow: none;
}
.alertify-button:active {
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
}
.alertify-buttons {
    text-align: right;
}
.alertify-button-cancel {
    color: #333;
    background-color: #ddd;
}
.alertify-button-cancel:hover,
.alertify-button-cancel:focus {
    background-color: #ccc;;
}
.alertify-button-ok {
    color: #fff;
    background-color: #53B848;
}
.alertify-button-ok:hover,
.alertify-button-ok:focus {
    background-color: #259145;
}

.alertify-inner {
    text-align: left;
}
.alertify-inner .label-md{
    width: inherit;
}

.alertify-log {
    background: #333333;
    background: rgba(0,0,0,.9);
    padding: 15px;
    border-radius: 4px;
    color: #FFF;
}
.alertify-log-error {
    background: #FF0000;
    background: rgba(255, 0, 0, 1);
}
.alertify-log-success {
    background: #00C39C;
    background: rgba(0, 195, 156, 1);
}