.alertify {
    position: fixed;
    z-index: 99999;
    top: 50%;
    left: 50%;
    width: 550px;
    margin-left: -275px;
    opacity: 1;
    font-family: sans-serif;
    transform: translate(0, -50%);
    box-shadow: 0 3px 3px rgba(0, 0, 0, .3);
    transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
}
@media only screen and (max-width: 680px) {
    .alertify {
        width: 90%;
        left: 5%;
        margin: 0;
    }
}
.alertify em {
    font-weight: 400;
    display: block;
    font-style: normal;
    margin-bottom: 1.2em;
    font-size: 25px;
}
.alertify p {
    margin-bottom: 30px;
    line-height: 1.58;
}

.alertify-button {
    display: inline-block;
    overflow: hidden;
    transition: all 0.18s ease-out 0s;
    transition-property: color, background, border-color;
    min-width: 125px;
    border: none;
    color: #fff;
    margin: 0 10px 10px;
}
.alertify-button:hover {
     outline: none;
}
.alertify-inner {
    text-align: center;
}
.alertify-text {
    margin-bottom: 15px;
    width: 100%;
    font-size: 100%;
}
.alertify-log {
    display: block;
    margin-top: 10px;
    right: -300px;
    opacity: 0;
    background: rgba(0, 0, 0, .9);
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0 40px 0 90px;
    height: 83px;
    line-height: 82px;
    position: relative;
    border: none;
    border-radius: 0;
    text-shadow: none;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 767px) {
    .alertify-log {
        padding: 0 5px 0 30px;
        height: 50px;
        line-height: 50px;
        font-size: 10px;
        max-width: 100%;
    }
}
.alertify-log-show {
    right: 0;
    opacity: 1;
}
.alertify-hide {
    transition: all 250ms cubic-bezier(0.600, -0.280, 0.735, 0.045);
}
.alertify-log-hide {
    transition: all 500ms cubic-bezier(0.600, -0.280, 0.735, 0.045);
    transform: translate(300px, 0);
    opacity: 0;
}
.alertify-logs {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: auto;
    min-width: 300px;
    z-index: 11000;
}
@media only screen and (max-width: 680px) {
    .alertify-logs {
        width: 90%;
    }
}
.alertify-logs a {
    color: #fff;
    text-decoration: underline;
}
.alertify-logs.unfixed {
    position: absolute;
    top: 100%;
    left: 0;
    bottom: auto;
    right: auto;
    display: block;
}
.alertify-logs.unfixed .alertify-log {
    line-height: 1.4;
    padding: 5px 25px 5px 60px;
    height: auto;
}
.alertify-logs.unfixed .alertify-log:before {
    width: 24px;
    margin-top: -12px;
    left: 12px;
}
@include media(screen, 767) {
    .alertify-logs.unfixed .alertify-log:before {
        margin-top: -8px;
    }
}
.alertify-logs-hidden {
    display: none
}
.alertify-dialog {
    padding: 25px;
}
.alertify-hidden {
    transform: translate(0, -150px);
    opacity: 0;
    display: none;
}
:root * > .alertify-hidden {
    display: block;
    visibility: hidden
}
.alertify-cover {
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(45, 45, 45, 0.87);
    opacity: 0.8;
}
.alertify-cover-hidden {
    display: none;
}
.alertify-resetFocus {
    display: none;
}

