﻿.notification {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 20px;
	border-radius: 5px;
	margin-bottom: 40px;
}

	.notification.success {
		color: #3c763d;
		background-color: #dff0d8;
		border-color: #d6e9c6;
	}

	.notification.failure {
		color: #a94442;
		background-color: #f2dede;
		border-color: #ebccd1;
	}

	.notification.info {
		color: #31708f;
		background-color: #d9edf7;
		border-color: #bce8f1;
	}

	.notification.warning {
		color: #8a6d3b;
		background-color: #fcf8e3;
		border-color: #faebcc;
	}

.closeNotification {
	display: flex;
	margin-left: auto;
	margin-right: 10px;
	width: 25px;
	height: 25px;
	cursor: pointer;
}

	.closeNotification svg {
		width: 100%;
		height: 100%;
	}

	.closeNotification.success svg polygon {
		fill: #3c763d;
	}

	.closeNotification.failure svg polygon {
		fill: #a94442;
	}

	.closeNotification.info svg polygon {
		fill: #31708f;
	}

	.closeNotification.warning svg polygon {
		fill: #8a6d3b;
	}
