
.noto{

position:fixed;
margin:0 auto;
left:0;
right:0;
bottom:-5px;

width: 100%;
max-width:1150px;
overflow: hidden;
height: auto;
z-index:999;
}
.notification{
display:flex; flex-flow:row nowrap;  justify-content:space-between; align-items:center; align-content:center;
	width: auto;
	height: auto;
	border-radius: 0px 0px 0px 0px;
	margin: 0 auto;
	font-size:1rem;
	color: #fff;
	
	overflow: hidden;
	animation: reveal 1 0.7s;
}
.notification .title{
	margin-right: 15px;
	padding: 15px 15px;
	
	display: inline-block;
}

.notification .close{
	background: rgba(255,255,255,0.2);
	padding: 15px 20px;
	margin-left:15px;
	display: inline-block;
	color: white;
}
.notification .close:hover{
  cursor: pointer;
}
.notification.closed{
	transform: translate(0px, 60px);
	transition: 0.7s;
}

@keyframes reveal{
	0%{
		transform: translate(0px, 50px);
	}
	50%{
		transform: translate(0px, 50px);
	}
	100%{
		transform: translate(0px, 0px);
	}
}


.notification.success{
	background: #39c668;
}
.notification.success .title{
	background: #27b757; 
}

.notification.error{
	background: #ff6449;
}
.notification.error .title{
	background: #e8563d;
}

.notification.warning{
	background: #ffcc00;
}
.notification.warning .title{
	background: #efbf00;
}

.notification.normal{
	background: #0d6efd;
}
.notification.normal .title{
	background: #0d5eed;
}