div[data-notify="container"].growl-container {
	color: black;
	padding: 15px 10px;
	border-radius: 5px;
	background-color: white;
	border: 1px solid black;
	-webkit-box-shadow: 5px 5px 5px 2px rgba(0,0,0,0.19);
	-moz-box-shadow: 5px 5px 5px 2px rgba(0,0,0,0.19);
	box-shadow: 5px 5px 5px 2px rgba(0,0,0,0.19);
}

div[data-notify="container"].growl-container span.growl-icon-success {
	border-radius: 5px;
	/* border: 0.5px solid orange; */
	padding: 5px;
	background-color: #28a745;
	color: white;
}

div[data-notify="container"].growl-container span.growl-icon-danger {
	border-radius: 5px;
	/* border: 0.5px solid orange; */
	padding: 5px;
	background-color: #dc3545;
	color: white;
}

div[data-notify="container"].growl-container span.growl-icon-info {
	border-radius: 5px;
	/* border: 0.5px solid orange; */
	padding: 5px;
	background-color: #17a2b8;
	color: white;
}

div[data-notify="container"].growl-container span.growl-icon-warning {
	border-radius: 5px;
	/* border: 0.5px solid orange; */
	padding: 5px;
	background-color: #ffc107;
	color: white;
}

@media screen and (max-width: 576px) {
	div[data-notify="container"].growl-container {
		right: 0 !important;
	}
}