#alertify {
    min-width: 300px;
    max-width: 300px;
    margin-left: -125px;
    background-color: #dc3545;
    color: #fff;
    text-align: left;
    border-radius: 10px;
    padding: 15px 15px 15px 70px;
    position: fixed;
    z-index: 9999;
    bottom: 15px !important;
    right: 10px !important;
    line-height: 17px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02), 0 1px 1px rgba(0, 0, 0, 0.04);
    -webkit-animation: fadein .5s, fadeout 0.5s 2.7s;
    animation: fadein .5s, fadeout 0.5s 2.7s;
}

#alertify.Success {
    background: #28A745;
}

#alertify.Warning {
    background: #F76301;
}

#alertify.Error {
    background: #DC3545;
}

div#alertify:before {
    font-family: FontAwesome;
    position: absolute;
    top: 20px;
    left: 14px;
    background: #fff;
    font-size: 17px;
    border-radius: 50%;
    padding: 6px 12px;
}

div#alertify.Success:before {
    content: "\f00c";
    color: #28A745;
    padding: 7px 12px;
}


div#alertify.Warning:before {
    content: "\f071";
    color: #F76301;
    padding: 7px 12px;
}

div#alertify.Error:before {
    content: "\f00d";
    color: #DC3545;
}

#alertify h2 {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 2px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0 0 5px 0;
}

#alertify span {
    color: #fff;
    font-size: 12px;
}

#alertify .close {
    float: right;
    cursor: pointer;
}

#alertify .close:before {
  content: "\f00d";
  font-family: FontAwesome;
  position: relative;
  top: -8px;
  right: -5px;
  font-size: 16px;
}