.block-map{
	padding: 10vh 0;
	margin: 0 auto;
	position: relative;
}
.map_container{
	position:relative;
	width: 90%;
	height: 100%;
	margin:auto;
}
.map_image{
	position: relative;
}
.map_location {
	width: 2rem;
	line-height: 0;
}
.map_location .map_pin{
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	position: relative;
	z-index: 1;
	display: inline-block;
}
.map_location .map_pin b{
	border-radius: 50%;
	width: 1.5rem;
	height: 1.5rem;
	display: block;
	position: absolute;
	z-index: 0;
	opacity: 0.5;
	left: -0.25rem;
	top: -0.25rem;
}
.map_location .map_pin i{
	background-color: #fff;
	border-radius: 50%;
	width: 5px;
	height: 5px;
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto;
	z-index: 3;
}

.map_location .pin_title{
	pointer-events: none;
	position: absolute;
	transform: translateY(calc(-50% + 0.5rem));
	top: 0;
	left: 0;
	margin-left: 2rem;
	line-height: 1;
	z-index: 2;
}

.map_location .pin_content{
	opacity: 0;
	pointer-events: none;
	display: none;
	position: absolute;
	transform: translateY(calc(-50% + 0.5rem));
	top: 0;
	left: 0;
	margin-left: 1.5rem;
	width: 20rem;
	line-height: initial;
	z-index: 10;
}

.map_location a.pin_url{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 10;
}

.map_location .map_pin a.pin_url{
	width: 300%;
}

.map_location .pin_highlight{
	border-radius: 1rem;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.map_location .pin_bubble{
	width: 1.5rem;
	height: 1.5rem;
	rotate: 45deg;
	position: absolute;
	left: -0.5rem;
	top: 0;
	bottom: 0;
	margin: auto;
	z-index: -1;
	pointer-events: none;
}

.map_location .pin_text{
	padding: 1rem;
	color: #fff;
	width: 65%;
}

.map_location .pin_text .pin_domain{
	font-size: 0.7rem;
	text-transform: uppercase;
	font-family: 'Futura', sans-serif;
	font-weight: 400;
	margin-bottom: 1rem;
}

.map_location .pin_text .pin_country{
	font-size: 1rem;
	font-family: 'Futura', sans-serif;
	font-weight: 400;
}

.map_location .pin_text .pin_name{
	font-size: 1rem;
	text-transform: uppercase;
	font-family: 'Futura', sans-serif;
	font-weight: 400;
	margin-bottom: 1rem;
}

.map_location .pin_title .pin_country,
.map_location .pin_title .pin_name{
	font-size: 0.8rem;
	font-family: 'Futura', sans-serif;
	font-weight: 400;
	white-space: nowrap;
}

.map_location .pin_arrow{
	position: relative;
}

.map_location .pin_arrow .fleche{
	display: block;
	position: relative;
	left: 0;
	transform: none;
	margin: 0;
	width: 1rem !important;
}

.map_location .pin_image{
	width: 35%;
	height: 100%;
}

.map_location .pin_image img{
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.map_location:hover .pin_content{
	display: inline-flex;
	opacity: 1;
	pointer-events: initial;
}

/* iPhone 6+ portrait */
@media screen and (max-width: 414px) {
	.map_container{
		display: none !important;
	}
	.map_image{
		display: none !important; 
	}
	.map_location {
		/* position: relative !important;
		left: initial !important;
		top: initial !important;
		width: 100%;
		margin-bottom: 1rem; */
		display: none !important;
	}
	
	.map_location .map_pin,
	.map_location .pin_title,
	.map_location .pin_bubble{
		display: none !important;
	}
	
	.map_location .pin_content{
		/* display: inline-flex;
		opacity: 1;
		pointer-events: initial;
		position: relative;
		transform: none;
		margin-left: 0;
		width: 100%; */
		display: none !important;
	}
}
