.notification{
    position: fixed;
	min-height: 4em;
	max-width: 30em;
    width: 100%;
    color: #000;
    border-radius: 10px;
    background-color: greenyellow;
	transition-duration: 200ms;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99;
	padding: 1em 2em;
	bottom: -6em;;
    left: 50%;
    transform: translateX(-50%);
}

.notification.active {
	bottom: 2em;
}

.notification.err{
    background-color: red;
}

.removeBtn{
	position: absolute;
	top: 10px;
	right: 14px;
	cursor: pointer;
	font-size: 18px;
    color: #000;
}