/* notif.css*/
#childConnectNotification{
	position: absolute;
	bottom: 0;
	width: 100%; height: 100px;
	pointer-events: none;
	background-color: rgba(0,0,0,0);

	display: flex;
	overflow: hidden;
}
.newChild{
	width: 70px; height: 70px;
	border-radius: 50%;
	border: 5px solid orange;
	background-color: black;
	opacity: 0.5;
	float: left;
	color: white;
	font-size: 18px;
	font-family: 'Jua',굴림;
	line-height: 100px;
	letter-spacing: 1px;
	text-align: center;
    animation: fadeIn 0.3s linear forwards;
    background-size: cover;
}
@keyframes fadeIn {
  0% {opacity: 0.1; transform: scale(0.1);}
  100% {opacity: 1; transform: scale(1);}
}
.exitChild{
	width: 70px; height: 70px;
	border-radius: 50%;
	border: 5px solid black;
	background-color: black;
	opacity: 0.5;
	float: left;
	color: white;
	font-size: 18px;
	font-family: 'Jua',굴림;
	line-height: 100px;
	letter-spacing: 1px;
	text-align: center;

	pointer-events: auto;
    animation: fadeInOut 5s linear infinite;
}
@keyframes fadeInOut {
  0%,100% {opacity: 1; transform: scale(1);}
  50% {opacity: 0; transform: scale(0.1);}
}

#0webSocketError{
	pointer-events: none;
	display: none;
	position: absolute;
	top:50%; left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	background-color: rgba(0,0,0,0.5);
	padding: 10px 20px;
	border-radius: 20px;
}	
#webSocketError{
	pointer-events: none;
	display: none;
	position: absolute;
	stop:50%; left: 50%;
	bottom: 20px;
	transform: translateX(-50%);
	color: white;
	background-color: rgba(0,0,0,0.1);
	padding: 10px 20px;
	border-radius: 20px;
}	