/* Add here all your CSS customizations */
.notification {
	position: fixed;
	z-index: 9999;
	width: 100%;
	height: 40px;
	line-height: 40px;
	bottom: -40px;
	left: 0;
	right: 0;
	padding: 0 15px;
	color: white;
	text-align: center;
	overflow: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-perspective: 1000;
	-webkit-transition: all 0.15s linear;
	-moz-transition: all 0.15s linear;
	transition: all 0.15s linear;
	-webkit-backface-visibility: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.notification a { color: black; }
.notification .close { position: absolute; top: 10px; right: 10px; color: white; text-shadow: none; opacity: 0.5; }
.notification .close:hover { opacity: 1; }

.notification-md { height: 60px; line-height: 20px; padding: 10px 15px; bottom: -60px; }
.notification-lg { height: 120px; line-height: 20px; padding: 10px 15px; bottom: -120px; }

.notification-visible { -webkit-transform: translate3d(0, -40px, 0); -moz-transform: translate3d(0, -40px, 0); transform: translate3d(0, -40px, 0); }
.ie9 .notification-visible { bottom: 0; }
.notification-visible.notification-md { -webkit-transform: translate3d(0, -60px, 0); -moz-transform: translate3d(0, -60px, 0); transform: translate3d(0, -60px, 0); }
.notification-visible.notification-lg { -webkit-transform: translate3d(0, -120px, 0); -moz-transform: translate3d(0, -120px, 0); transform: translate3d(0, -120px, 0); }

.notification-success { background-color: rgba(50, 116, 44, 0.9); }
.notification-danger { background-color: rgba(229, 64, 40, 0.9); }
.notification-info { background-color: rgba(1, 164, 164, 0.9); }
.notification-notice { background-color: rgba(241, 141, 5, 0.9); }