* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--color-cita: #eee;
	--color-sonar: #f01b18;
	--tam-sonar: 15px;
}

html {
	font-size: 16px;
}

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: 100%;
	width: 100%;
}

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: var(--color-cita);
	padding: 8px;
	width: 90vw;
	max-width: 300px;
	opacity: 0;
	left: -50%;
	z-index: 2;
	-webkit-filter: drop-shadow(2px 4px 10px #444);
	filter: drop-shadow(2px 4px 10px #444);
	-webkit-transition: opacity .5s ease-in-out, margin-top .5s step-start, z-index .1s step-start;
	-moz-transition: opacity .5s ease-in-out, margin-top .5s step-start, z-index .1s step-start;
	-o-transition: opacity .5s ease-in-out, margin-top .5s step-start, z-index .1s step-start;
	transition: opacity .5s ease-in-out, margin-top .5s step-start, z-index .1s step-start;
}

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 .tooltip-content .content h2 {
	margin-top: 0;
	font-weight: bold;
}

section#hotspot .tooltip-content .content p {
	font-size: 1.3em;
	line-height: normal;
}

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: 79%;
	left: 39%;
}

section#hotspot .tooltip-2 .pin {
	top: 69%;
	left: 21%;
}

section#hotspot .tooltip-3 .pin {
	top: 44%;
	left: 23%;
}

section#hotspot .tooltip-4 .pin {
	top: 40%;
	left: 42%;
}

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;
	}
}
