.notification{
	 position: fixed;
     padding: 0px 50px;
     height: 40px;
     z-index: 9999;
     line-height: 40px;
     border-radius: 10px;
     right: -500px;
     font-size: 18px;
     transition: all 0.2s ease;
     opacity: 0;
     top: 0px;

}
.show_notification{
    right: 10px;
    transition: all 0s ease;
    top: 10px;
    opacity: 1;
}
.danger_notification{
    background: #e02727; 
    color: #fff;
}
 .success_notification{
     background: #539d02 ;
     color: #fff;
 }
 .inputerror{
 	border: 2px solid #e02727;
 }