.m-success
{
	background-color: #388E3C;
}
.m-error
{
	background-color: #D32F2F;
	padding-bottom: 6px !important;
}

.m-info
{
	background-color: #1976D2;
}

.m-warning
{
	background-color: #FBC02D;
	
}

.m-toast
{
	background-color: #212121;
}

#snackbar ul 
{
	margin:0px;
	padding-left:10px;
	padding-bottom:5px;
}


#snackbar ul li
{
	margin-bottom: 0px;
}

#snackbar 
{
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    color: #fff; /* White text color */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    right: 1%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
   	cursor:pointer;
   	font-family: Arial, Helvetica, sans-serif;
   	
   	font-size:14px;
}

.show {
    visibility: visible !important; /* Show the snackbar */
    -webkit-animation: fadein 0.5s;
    animation: fadein 0.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;} 
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}