#tilAlertBox {
    position: fixed;
    right: 12px;
    top: 4px;
    display: none;
    border-radius: 3px;
    z-index: 1056;
    padding: 8px;
    font-size: 14px;
    cursor: pointer;
    display: none;
    color: #fff !important;
    max-width: 250px;
}
.tilAlertBoxContent {
    display: flex;
    align-items: center;
    flex-direction: row;
}
#tilAlertBox.success {
    background-color: #44bf10;
    border-left: 6px solid #168a0f;
}
#tilAlertBox.warning {
    background-color: #f09e07;
    border-left: 6px solid #c66400;
}
#tilAlertBox.error {
    background-color: #c43333;
    border-left: 6px solid #862222;
}
#tilAlertBox.success .tilAlerBoxtImage {
    background-image: url('../images/success.png');
}
#tilAlertBox.warning .tilAlerBoxtImage {
    background-image: url('../images/warning.png');
}
#tilAlertBox.error .tilAlerBoxtImage {
    background-image: url('../images/error.png');
}
.tilAlerBoxtImage {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    background-size: 100%;
    background-repeat: no-repeat;
}