.notification-icon-danger {
	position: relative;
}

.notification-icon-danger::after {
	content: '';
	font-size: .6rem;
	border-radius: 50%;
	width: 10px;
	height: 10px;
	background-color: red;
	color: white;
	position: absolute;
	top: -15px;
	right: -5px;
	transition: all .2s linear;
	display: flex;
    justify-content: flex-start;
    align-items: center;
}

.notification-container {
	position: absolute;
	background-color: white !important;
	border-radius: 50%;
	color: black;
	top: 5px;
	right: 5px;
	width: 15px;
	height: 15px;
	font-size: .7rem;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 7px;
}