/*hotspot pin & tooltip for lobby*/

html.tooltips{
	font-size: 16px;
	font-family: 'Montserrat';
}

body.lobby{
	background-color: azure;
	width: 100%;
}

section.lobby{
	eight: 100vh;
	width: 100%;h
	display: flex;
	align-items: center;
	justify-content: center;
	overflow-x: hidden;
}

div.contain{
	width: 90%
	max-width: 1200px;
	margin-right: 0 auto;
}

div.contain img{
	width: 100%;
	height: 100%;
}

div.all-tooltips{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

div.tooltip-content{
	position: absolute;
	background-color: white;
	box-shadow: 0px 0px 20px #00000020;
	padding: 30px;
	border-radius: 8px;
	width: 90vw;
	max-width: 300px;
	opacity: 0;
	pointer-events: none;
	z-index: 2; 
}

div.tooltip-content .arrow{
	position: absolute;
	border: 10px solid transparent;
	border-bottom-color: rgb(255, 255, 255);
	top: 0px;
	left: 50%;
	transform: translate(-50%, -100%);
}

div.pin{
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: white;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	cursor: pointer;
}

div.pin::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: white;
	border-radius: 50%;
	animation: puls-effect 1s ease-in-out infinite;
}

div.tooltip.active .tooltip-content{
	opacity: 1;
	pointer-events: all;
}

div.tooltip-1 .pin{
	left:90%;
}

@keyframes puls-effect{
	0%{
		transform: scale(.5);
		opacity: 1;
	}
	100%{
		transform: scale(3);
		opacity: 0;
	}
}

/* hotspot pin & tooltip for lobby end */