:root{
	--successNotifBg: #55ce63;
	--successNotifColor: #ffffff;
	--errorNotifBg: #dc5145;
	--errorNotifColor: #ffffff;
	--warningNotifBg: #ffa500;
	--warningNotifColor: #ffffff;
	--infoNotifBg: #40bfdc;
	--infoNotifColor: #ffffff;
}
.notifications-list{
	position: fixed;
	/*width: 450px;*/
	z-index: 1001;
	right: 0;
	bottom: 0;
	display: flex;
	overflow: auto;
	align-items: flex-end;
	flex-direction: column;
	justify-content: flex-end;
	box-sizing: content-box;
	padding: 10px;
	/*inset: 0 1px 1px 0;*/
	gap:10px;
}
.notifications-list.absolute{
	position: absolute;
}
.notifications-list.top{
	bottom: unset;
	top: 0;
}
.notifications-list.right{
	left: unset;
	right: 0;
}
.notifications-list.bottom{
	top: unset;
	bottom: 0;
}
.notifications-list.left{
	right: unset;
	left: 0;
}
.notifications-list .notification{
	display: flex;
	align-items: center;
	/*width: 100%;*/
	flex-direction: row;
	justify-content: flex-start;
	width: fit-content;
	padding: 10px;
	border-radius: 5px;
}
.notifications-list .notification.success{
	color: var(--successNotifColor);
	background-color: var(--successNotifBg);
}
.notifications-list .notification.error{
	color: var(--errorNotifColor);
	background-color: var(--errorNotifBg);
}
.notifications-list .notification.warning{
	color: var(--warningNotifColor);
	background-color: var(--warningNotifBg);
}
.notifications-list .notification.info{
	color: var(--infoNotifColor);
	background-color: var(--infoNotifBg);
}
.notifications-list .notification .n-icon{
	width: 32px;
	height: 32px;
	margin: 0 15px 0 10px;
}
.notifications-list .notification .n-title > *{
	margin: 0 0 .20em 0;
}
.notifications-list .notification .n-definition > *{
	margin: 0;
}