/* NOTIFICATION */
#formmessagescontainer{
    position:fixed; bottom:0; left:0;
    width:100%;
    text-align: center;
    z-index: 16;
}
.notifbar{
    position: relative;
    display: none;
    width:80%;
    margin:5px auto;
    text-align: left;
    padding:5px 10px; 
    border: 0;
    color: #ffffff;
    border-radius: 6px;
    font-size: 14px;
    line-height: 18px;
    box-shadow: 0 0 10px 0 #000000;
}
.notifbar.errorbar{
    background-color: rgb(216 41 41);
}
.notifbar.successbar{
    background-color: #00AB4F;
}
.closeNotifbar{
    position: absolute;
    top:6px; right:8px;
    width:10px; height:10px;
    font-size: 14px;
    cursor: pointer;
}
.successbar .closeNotifbar i{
    color:#007b39;
}
.errorbar .closeNotifbar i{
    color:#a50d0d;
}