.appNotification{
	position:fixed;
	left:50%;
	bottom:12px;
	width:calc(100% - 24px);
	z-index:1000;
	box-shadow:
		0px 1px 2px rgba(0,0,0,.1),
		0px 0px 16px rgba(0,0,0,.1)
	;
	transition:transform .2s ease-in;
	transform:translate(-50%,200%);
}
.appNotification.__showNotification{
	transform:translate(-50%,0%);
}
.appNotification.info{
	background-color:var(--white);
}
.appNotification.pending{
	background-color:var(--white);
}
.appNotification.success{
	background-color:var(--limeGreen);
}
.appNotification.error{
	background-color:var(--coralRed);
}
.notificationContent{
	width:100%;
	position:relative;
	padding-top:18px;
	color:var(--black);
}
.appNotification.__noDismiss .notificationContent{
	padding-top:0;
}
.notificationDismiss{
	height:42px;
	width:42px;
	position:absolute;
	right:0px;
	top:0px;
}
.notificationDismiss::before,
.notificationDismiss::after{
	height:16px;
	width:2px;
	background-color:currentColor;
	position:absolute;
	left:50%;
	top:50%;
	content:"";
	border-radius:1px;
	transform:translate(-50%,-50%) rotate(45deg);
}
.notificationDismiss::after{
	transform:translate(-50%,-50%) rotate(-45deg);
}
.notificationBody{
	box-sizing:border-box;
	padding:16px 16px 20px 16px;
	font:var(--subline);
	font-weight:300;
	line-height:120%;
	font-size:15px;
}
.notificationContent.__forPending{
	padding-top:6px;
}
.notificationContent.__forError{
	color:var(--white);
}
.notificationBody .__error-code{
	color:var(--black);
	opacity:.5;
	display:block;
	font-size:10px;
	line-height:100%;
	padding:8px 0 0 0;
}

@keyframes pending{
	0%{
		width:0%;
		left:0%;
		opacity:1;
	}
	70%{
		width:80%;
		left:0%;
	}	
	98%{
		width:10%;
		left:100%;
	}
	99%{
		width:0%;
		left:100%;
		opacity:1;
	}
	100%{
		width:0%;
		left:0%;
		opacity:0;
	}
}
.notificationPendingBar{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:6px;
	overflow:hidden;
}
.notificationPendingBar::before{
	height:100%;
	width:0%;
	background-color:var(--limeGreen);
	position:absolute;
	left:0px;
	top:0px;
	content:"";
	animation-name: pending;
  	animation-duration: 2.5s;
  	animation-iteration-count: infinite;
  	animation-timing-function:linear;
}


