body{
	padding-bottom: 30px;
}
table tr:nth-child(even) {
	background-color: rgb(245,245,245);
}
table tr td{
	padding: 5px !important;
}

.msg{
	background-color: white;
	position: fixed;
	top: 20px;
	right: 20px;
	padding: 20px 30px;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
	max-width: 300px;
	min-width: 200px;
}
.msg .content{
	display: table;
	line-height: 1.6;
	font-size: 15px;
	font-weight: 700;
	margin: auto;
}
.msg .number{
	font-size: 13px;
	opacity: 0.3;
}
.msg.correct{
	border-bottom: 6px solid green;
}
.msg.correct .number{
	display: none;
}
.msg.warning{
	border-bottom: 6px solid yellow;
}
.msg.error{
	border-bottom: 6px solid red;
}