.alertify, .alertify-show, .alertify-log {
    transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
.alertify-hide {
    transition: all 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
}
.alertify-log-hide {
    transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
}
.alertify-cover {
    background-color: #ffffff;
    bottom: 0;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
    text-transform: capitalize;
}

.alertify-cover-hidden {
    display: none;
}

.alertify {
    left: 50%;
    margin-left: -275px;
    opacity: 1;
    position: fixed;
    top: 50px;
    width: 550px;
    z-index: 99999;
}
.alertify-hidden {
    display: none;
    opacity: 0;
    transform: translate(0px, -150px);
}
:root * > .alertify-hidden {
    display: block;
    visibility: hidden;
}
.alertify-logs {
    top: 20px;
    position: fixed;
    right: 10px;
    width: 300px;
    z-index: 5000;
}
.alertify-logs-hidden {
    display: none;
}
.alertify-log {
    display: block;
    margin-top: 10px;
    opacity: 0;
    position: relative;
    right: -300px;
}
.alertify-log-show {
    opacity: 1;
    right: 0;
}
.alertify-log-hide {
    opacity: 0;
    transform: translate(300px, 0px);
}
.alertify-dialog {
    padding: 25px;
}
.alertify-resetFocus {
    border: 0 none;
    clip: rect(0px, 0px, 0px, 0px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.alertify-inner {
    font-family: Calibri;
    font-size: 18px;
    text-align: center;

}
.alertify-inner:first-letter {
  text-transform:uppercase
}
.alertify-text {
    box-sizing: border-box;
    font-size: 100%;
    margin-bottom: 15px;
    width: 100%;
  
}
.alertify-buttons {
}
.alertify-button, .alertify-button:hover, .alertify-button:active, .alertify-button:visited {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    border: medium none;
    cursor: pointer;
    display: inline-block;
    line-height: 1.5;
    margin-left: 11px;
    text-align: center;
    text-decoration: none;
    text-transform: capitalize;
}
@media only screen and (max-width: 680px) {
.alertify, .alertify-logs {
    -moz-box-sizing: border-box;
    width: 90%;
}
.alertify {
    left: 5%;
    margin: 0;
}
}
