:root {
  --blue: #33C9BD;
  --gray: #c2c4c7;
  --lightgray: #ebedf1;
  --aqua: #b1e5ff;
}

.alertify-show,
.alertify-log {
    -webkit-transition: all 0ms cubic-bezier(0.175, 0.885, 0.32, 1); /* older webkit */
    -webkit-transition: all 0ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 0ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: all 0ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0ms cubic-bezier(0.175, 0.885, 0.32, 1.275); /* easeOutBack */
}
.alertify-hide {
    -webkit-transition: all 0ms cubic-bezier(0.6, 0, 0.735, 0.045); /* older webkit */
    -webkit-transition: all 0ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -moz-transition: all 0ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -ms-transition: all 0ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    -o-transition: all 0ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
    transition: all 0ms cubic-bezier(0.6, -0.28, 0.735, 0.045); /* easeInBack */
}
.alertify-cover {
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.alertify {
    position: fixed;
    z-index: 99999;
    top: 50px;
    left: 50%;
    width: 450px;
    margin-left: -225px;
}
.alertify-hidden {
    top: -50px;
    visibility: hidden;
}
.alertify-logs {
    position: fixed;
    z-index: 5000;
    bottom: 10px;
    right: 10px;
    width: 300px;
}
.alertify-log {
    display: block;
    margin-top: 10px;
    position: relative;
    right: -300px;
}
.alertify-log-show {
    right: 0;
}
.alertify-logs-hidden {
    visibility: hidden;
}
.alertify-dialog {
    padding: 15px;
    background-color: var(--lightgray);
    border-radius: 16px;
}
.alertify-resetFocus {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.alertify-text {
    margin-bottom: 15px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 100%;
}

.alertify-button {
    /* line-height and font-size for input button */
    line-height: 1.5;
    min-width: 43px;
    margin: 0 5px;
    cursor: pointer;
}

.alertify-message-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.alertify-message {
  display: inline-block;
  text-align: center;
  color: rgb(105, 105, 105);  
}

section.alertify {
    padding: 0;
}

.alertify h4 {
    margin: 0;
}

@media only screen and (max-width: 680px) {
    .alertify,
    .alertify-logs {
        width: 90%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .alertify {
        left: 5%;
        margin: 0;
    }
}
