#ui_notifIt{
    position: fixed;
    top: 10px;
    right: 10px;
    cursor: pointer;
    overflow: hidden;
    z-index: 999999;
}
#ui_notifIt:hover{
    opacity: 1 !important;
}
#ui_notifIt p{
    text-align: center;
    font-family: sans-serif;
    font-size: 14px;
    padding: 0;
    margin: 0;
}

/* Color setup */
/* You are free to change all of this */
#ui_notifIt.success {
    background-color: #3c7db8;
    color: white !important;
}
#ui_notifIt.error{
    background-color: #e10b0b;
    color: white !important;
}
#ui_notifIt.warning{
    background-color: orange;
    color: white !important;
}
#ui_notifIt.info{
    background-color: deepskyblue;
    color: white !important;
}
#ui_notifIt.default{
    background-color: #EEE !important;
    color: #444 !important;
}
#ui_notifIt.success p, #ui_notifIt.error p, #ui_notifIt.warning p, #ui_notifIt.info p, #ui_notifIt.default p {
    color: white !important;
}