
/** {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #EFEFEF;
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
}

.contenedor {
	width: 90%;
	max-width: 1000px;
	margin: auto;
	padding-top: 300px; 
}

figure {
	width: 100%;
	position: relative;
}

figure .mapa {
	width: 100%;
	vertical-align: top;
	box-shadow: 5px 5px 60px rgba(0,0,0,.20);
	border-radius: 10px;
}*/

.pivot {
	position: absolute;
	top: 10%;
	left: 90%;
	font-size: 40px;
	color: #ea4335;
}




.tooltip {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	border-radius: 10px;
	box-shadow: 5px 5px 50px rgba(0,0,0,.20);
	width: 31.25em;
	z-index: -1;
	opacity: 0;
	transition: .3s ease all;
	transform: translateY(10px);
}

.tooltip::after {
	content: "";
	display: inline-block;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-top: 15px solid #fff;
	position: absolute;
	bottom:-15px;
	left: calc(50% - 15px);
}

.tooltip.activo {
	opacity: 1;
	z-index: 1000;
	transform: translateY(0px);
}

.tooltip .thumb {
	width: 30%;
}

.tooltip .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px 0 0 10px;
	vertical-align: top;
}

.tooltip .info {
	width: 70%;
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.tooltip .info .titulo {
	color: var(--main-bg-color-primario);
	font-weight: 600;
	margin-bottom: 5px;
	font-size: 14px;
}

.tooltip .info .direccion {
	color: #707070;
	font-size: 12px;
	margin-bottom: 20px;
}

.tooltip .info .resumen {
	margin-bottom: 20px;
	font-size: 12px;
}

.tooltip .info .contenedor-btn {
	display: flex;
	justify-content: center;
}

.tooltip .info button {
	border: none;
	background: #75ac35;
	font-weight: bold;
	padding: 10px 20px;
	width: 80%;
	color: #fff;
	border-radius: 100px;
	/*font-family: 'Open Sans', sans-serif;*/
	cursor: pointer;
}

.tooltip .info button:hover {
	background: rgba(117,172,53, 0.9);
}

/* ------------------------- */
/* Mediaqueries */
/* ------------------------- */

@media screen and (max-width: 768px) {
	 .tooltip {
		font-size: 12px;
	}

	.tooltip .info button {
		width: 100%;
	}
}

@media screen and (max-width: 576px) {
	figure .mapa {
		margin-bottom: 40px;
	}

	 .pivot {
		top: 32px;
		/* display: none; */
	}

	.tooltip {
		position: static;
		opacity: 0;
		width: 100%;
		transform: translate(0);
	}

	.tooltip::after {
		content: "";
		display: none;
	}
}
