.new-alert {
	margin-top: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0px 6px 6px 0px;
}

.new-alert-body {
	padding: 10px 15px;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 17px;
	line-height: 26px;
	color: #161616;
	width: 90%;
	display: flex;
	align-items: flex-start;
	z-index: 999;
	border-radius: 0px 6px 6px 0px;
}

.new-alert .new-alert-body::before{
	height: 18px;
	width: 18px;
	display: inline-block;
	margin-top: 3px;
	margin-right: 15px;
	flex: 0 0 18px;
}

.new-alert-success .new-alert-body {
	background-color: #DAF2EC;
	border-left: 3px solid #0F9960;
}

.new-alert-success .new-alert-body::before {
	content: url('../images/theme_v2/alert_success.svg');
}

.new-alert-info .new-alert-body {
	background: linear-gradient(102.07deg, #F8FAFF 30.07%, #FAF1FD 144.34%);
	border-left: 3px solid #c7c3de;
}

.new-alert-info .new-alert-body::before {
	content: url('../images/theme_v2/alert_info.svg');
}

.new-alert-danger .new-alert-body {
	background-color: #FFF1F1;
	border-left: 3px solid #DA1E28;
}

.new-alert-danger .new-alert-body::before {
	content: url('../images/theme_v2/alert_error.svg');
}

.new-alert-light-info .new-alert-body {
	background-color: #EDF5FF;
	border-left: 3px solid #1A73E8;
}

.new-alert-light-info .new-alert-body::before {
	content: url('../images/theme_v2/alert_light_info.svg');
}

.new-alert-warning .new-alert-body {
	background: linear-gradient(102deg, #FFF8E1 30.07%, #FAF1FD 144.34%);
	border-left: 3px solid #F1C21B;
}

.new-alert-warning .new-alert-body::before {
	content: url('../images/theme_v2/alert_warning.svg');
}

.new-alert-close {
	visibility: hidden;
	margin-left: auto;
}

.new-alert-close:after {
	content: url('../images/theme_v2/alert_close.svg');
	visibility: visible;
	display: block;
}