/* notifications */
.notifications {
	width: 100%;
	display: flex;
	flex-direction: column;
	visibility: collapse;
}

.notifications_item {
	background-color: #cce5ff;
	color: #004085;
}

.notifications_item.danger {
	background-color: #f8d7da;
	color: #721c24;
}

.notifications_item.warning {
	background-color: #fff3cd;
	color: #856404;
}

.notifications_item.success {
	background-color: #d4edda;
	color: #155724;
}

.notifications .notifications_item .notifications_item_content {
	display: flex;
	padding-top: 12px;
	padding-bottom: 12px;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.notifications .notifications_item .notifications_item_content button {
	padding: 0;
	background-color: transparent;
	border: none
}

.notifications .notifications_item .notifications_item_content button:hover {
	background-color: transparent;
	cursor: pointer;
}