* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--color-cita: #eee;
	--color-sonar: #f01b18;
	--tam-sonar: 15px;
}

html {
	font-size: 30px;
}

/*body {
	font-family: 'Open Sans', sans-serif;
	width: 100%;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: -moz-none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}*/

section#hotspot {
	width: 80%;
	max-width: 800px;
	margin: 2rem auto;
}

section#hotspot .container {
	position: relative;
	/*width: 100%;*/
	margin: 0 auto;
	/*background-color: #fff;*/
	/*box-shadow: 0 0 0 10px #fff, 0 15px 50px;*/
}

section#hotspot .container img {
	height: 95%;
	width: 95%;
}

/*section#hotspot .all-tooltip {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}*/

section#hotspot .tooltip {
	opacity: 1;
	position: static;
}

section#hotspot .tooltip-content {
	position: absolute;
    background-color: #fff;
	padding: 8px;
	width: 90vw;
	max-width: 350px;
	opacity: 0;
	left: -50%;
	z-index: 2;
    box-shadow: 0 0 24px rgba(0,0,0,0.22);
}

section#hotspot .tooltip-content .arrow {
	position: absolute;
	width: 10px;
	height: 10px;
	border: 10px solid transparent;
	border-bottom-color: var(--color-cita);
	top: 0px;
	left: 50%;
	-webkit-transform: translate(-50%, -100%) rotate(0deg);
	-moz-transform: translate(-50%, -100%) rotate(0deg);
	-ms-transform: translate(-50%, -100%) rotate(0deg);
	-o-transform: translate(-50%, -100%) rotate(0deg);
	transform: translate(-50%, -100%) rotate(0deg);
}

section#hotspot .pin {
	position: absolute;
	margin: 0;
	content: "";
	height: var(--tam-sonar);
	width: var(--tam-sonar);
	background-color: var(--color-sonar);
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
}

section#hotspot .pin:before,
section#hotspot .pin:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: var(--color-sonar);
	border-radius: 50%;
}

section#hotspot .pin:before {
	-webkit-animation: efecto-sonar 1s ease-out infinite;
	-moz-animation: efecto-sonar 1s ease-out infinite;
	-o-animation: efecto-sonar 1s ease-out infinite;
	animation: efecto-sonar 1s ease-out infinite;
}

section#hotspot .pin:after {
	-webkit-animation: efecto-sonar 1s 0.5s ease-out infinite;
	-moz-animation: efecto-sonar 1s 0.5s ease-out infinite;
	-o-animation: efecto-sonar 1s 0.5s ease-out infinite;
	animation: efecto-sonar 1s 0.5s ease-out infinite;
}

section#hotspot .tooltip-1 .pin {
	top: 33%;
	left: 9%;
}

section#hotspot .tooltip-2 .pin {
	top: 18%;
	left: 62%;
}

section#hotspot .tooltip-3 .pin {
	top: 75%;
	left: 50%;
}

section#hotspot .tooltip-4 .pin {
	top: 86.5%;
	left: 48%;
}

section#hotspot .tooltip-5 .pin {
	top: 65%;
	left: 20.5%;
}

section#hotspot .tooltip-6 .pin {
	top: 24%;
	left: 20.5%;
}

section#hotspot .pin:hover ~ .tooltip-content {
	opacity: 1;
	-webkit-transition-timing-function: linear, step-end, step-end;
	-moz-transition-timing-function: linear, step-end, step-end;
	-o-transition-timing-function: linear, step-end, step-end;
	transition-timing-function: linear, step-end, step-end;
	z-index: 20;
}

@keyframes efecto-sonar {
	0% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(3);
		-moz-transform: scale(3);
		-ms-transform: scale(3);
		-o-transform: scale(3);
		transform: scale(3);
		opacity: 0;
	}
}
