#stavOk, #stavChyba {
	position: fixed;
	display: block;
	box-sizing: border-box;
	top: 3px;
	width: 990px;
	padding: .4em;
	margin: .5em auto 1em auto;
	color: white;
	font-weight: bold;
	text-decoration: none;
	text-align: left;
	z-index: 100000;
	-webkit-box-shadow: 1px 1px 4px 0px rgba(57,57,57,0.75);
	-moz-box-shadow: 1px 1px 4px 0px rgba(57,57,57,0.75);
	box-shadow: 1px 1px 4px 0px rgba(57,57,57,0.75);
}
#stavOk, #stavChyba {
}
#stavOk {
	background-color: #008000;
	cursor: pointer;
}
#stavChyba {
	background-color: red;
	cursor: pointer;
}

@keyframes fadeout {
	0% { opacity: 1; }
	99% { transform: scale(1);}
	100% { opacity: 0; transform: scale(0);}
}
#stavOk {
	-webkit-animation: fadeout 3s linear forwards;
	-webkit-animation-delay: 2s;
	animation: fadeout 3s linear forwards;
	animation-delay: 2s;
}
