@charset "UTF-8";
#sysOK {
	position:fixed;
	display:flex;
	list-style:none;
	font-size:1.6em;
	top:-20%;
	left:30%;
	width:40%;
	color:green;
	border:2px solid #2c4d6d;
	padding:0.3em 1em;
	text-align:center;
	font-weight:bold;
	background-color:white;
	opacity:0;
	transition: all 1200ms 0s ease;
	z-index:10000;
}
#sysOK .red {
	color:red;
}
#sysNG {
	position:fixed;
	display:flex;
	list-style:none;
	font-size:1.6em;
	top:-20%;
	left:30%;
	width:40%;
	color:red;
	border:2px solid #ff0000;
	padding:0.3em 1em;
	text-align:center;
	font-weight:bold;
	background-color:#ffffee;
	opacity:0;
	transition: all 1200ms 0s ease;
	z-index:10000;
}
#sysOK.sysMessagePop
, #sysNG.sysMessagePop {
	top:0%;
	opacity:1;
	animation-duration:0.4s;
	animation-name:popDown;
}
@keyframes popDown {
	from {
		top:-10%;
		opacity:0;
	}
	to {
		top:0%;
		opacity:1;
	}
}