.toast{
	position: fixed;
	width : 100%;
	height : auto;
	max-width: 335px;
	right: 11px;
	border-radius: 7px;
	top: 120px;
	box-sizing: border-box;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
#toast-success{
	background: #1abb1a;
}
#toast-danger{
	background: #e60b0b;
}
.btn-close-toast{
	position: absolute;
	right: 5px;
	top: 5px;
	color: white;
	font-size: 16px;
	cursor : pointer;
}
.toast-body{
	padding: 10px 18px 10px 10px;
	color : white;
	font-size: 15px;
}
