.alertify .ajs-dimmer, .alertify .ajs-modal {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alertify .ajs-modal .ajs-header {
    display: none;
}

.alertify .ajs-modal .ajs-commands {
    top: 10px;
    right: 24px;
    margin: 0;
}

.alertify .ajs-modal .ajs-dialog {
  border-radius: 8px;
  overflow: hidden;
}

.alertify .ajs-modal .ajs-body {
    margin-top: .5rem;
    margin-bottom: 1rem;
}

.alertify .ajs-modal .ajs-footer {
    padding: 0.75rem 1.5rem;
}

.alertify .ajs-footer .ajs-buttons.ajs-primary {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    column-gap: 1.5rem;
}

.alertify .ajs-modal .ajs-footer .ajs-buttons .ajs-button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25rem;
    transition: all .15s;
    border: 1px solid transparent;
    border-radius: 8px;
}
.alertify .ajs-modal .ajs-footer .ajs-buttons .ajs-button:focus {
    outline: none;
}

.alertify .ajs-modal .ajs-footer .ajs-buttons .ajs-button.ajs-ok {
    color: white;
    background-color: rgb(59, 99, 173);
}
.alertify .ajs-modal .ajs-footer .ajs-buttons .ajs-button.ajs-ok:hover {
    background-color: rgb(30, 64, 175);
}
.alertify .ajs-modal .ajs-footer .ajs-buttons .ajs-button.ajs-ok:focus {
    box-shadow: 0 0 0 3px #edebfe;
}

.alertify .ajs-modal .ajs-footer .ajs-buttons .ajs-button.ajs-cancel {
    color: rgb(55, 65, 81);
    border: 1px solid rgba(213, 214, 215, 0.4);
}
.alertify .ajs-modal .ajs-footer .ajs-buttons .ajs-button.ajs-cancel:active {
    color: rgb(107, 114, 128);
}
.alertify .ajs-modal .ajs-footer .ajs-buttons .ajs-button.ajs-cancel:focus,
.alertify .ajs-modal .ajs-footer .ajs-buttons .ajs-button.ajs-cancel:hover {
    border: 1px solid rgba(213, 214, 215, 1);
}


