.alertify-logs > * {
    padding: 12px 24px;
    color: #fff;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2);
    border-radius: 1px
}

.alertify-logs > *, .alertify-logs > .default {
    background: rgba(0, 0, 0, .8)
}

.alertify-logs > .error {
    background: rgba(244, 67, 54, .8)
}

.alertify-logs > .success {
    background: rgba(76, 175, 80, .9)
}

.alertify {
    position: fixed;
    background-color: rgba(0, 0, 0, .3);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 99999
}

.alertify.hide {
    opacity: 0;
    pointer-events: none
}

.alertify, .alertify.hide, .alertify.show {
    box-sizing: border-box;
    -webkit-transition: all .33s cubic-bezier(.25, .8, .25, 1);
    transition: all .33s cubic-bezier(.25, .8, .25, 1)
}

.alertify, .alertify * {
    box-sizing: border-box
}

.alertify .dialog {
    padding: 12px
}

.alertify .alert, .alertify .dialog {
    width: 100%;
    margin: 0 auto;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.alertify .alert > *, .alertify .dialog > * {
    width: 400px;
    max-width: 95%;
    margin: 0 auto;
    text-align: center;
    padding: 12px;
    background: #fff;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .14), 0 4px 5px 0 rgba(0, 0, 0, .098), 0 1px 10px 0 rgba(0, 0, 0, .084)
}

.alertify .alert .msg, .alertify .dialog .msg {
    padding: 12px;
    margin: 0;
    text-align: left
}

.alertify .alert input, .alertify .dialog input {
    margin-bottom: 15px;
    width: 100%;
    font-size: 100%;
    padding: 12px
}

.alertify .alert input:focus, .alertify .dialog input:focus {
    outline-offset: -2px
}

.alertify .alert nav, .alertify .dialog nav {
    text-align: right
}

.alertify .alert nav button, .alertify .dialog nav button {
    background: 0 0;
    box-sizing: border-box;
    color: rgba(0, 0, 0, .87);
    position: relative;
    outline: 0;
    border: 0;
    display: inline-block;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 6px;
    margin: 6px 8px;
    line-height: 36px;
    min-height: 36px;
    white-space: nowrap;
    min-width: 88px;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border-radius: 2px
}

.alertify .alert nav button:active, .alertify .alert nav button:hover, .alertify .dialog nav button:active, .alertify .dialog nav button:hover {
    background-color: rgba(0, 0, 0, .05)
}

.alertify .alert nav button:focus, .alertify .dialog nav button:focus {
    border-style: dashed
}

.alertify-logs {
    position: fixed;
    z-index: 100;
    bottom: 16px;
    left: 16px
}

.alertify-logs > * {
    box-sizing: border-box;
    -webkit-transition: all .3s cubic-bezier(.25, .8, .25, 1);
    transition: all .3s cubic-bezier(.25, .8, .25, 1);
    margin-top: 10px;
    position: relative;
    float: left;
    clear: both;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000
}

.alertify-logs > .show {
    left: 0;
    opacity: 1
}

.alertify-logs > *, .alertify-logs > .hide {
    left: -110%;
    opacity: 0
}