/*  -----  MAP -----  */
body {position: relative;}
#map-container
{
	display: flex;
	width: 80%;
	margin: 40px auto;
}
#map-container svg
{
	width: 100%;
	max-height: 500px;
}
.map-svg
{
	flex: 1;
	display: flex;
	margin-top: auto;
	margin-bottom: auto;
}
.map-svg > svg {
	margin: auto;
}
.map-svg svg > g > circle,
.map-svg svg > g > line,
.map-svg svg > g > path,
.map-svg svg > g > polygon,
.map-svg svg > g > polyline,
.map-svg svg > g > rect,
.map-svg svg > circle,
.map-svg svg > line,
.map-svg svg > path,
.map-svg svg > polygon,
.map-svg svg > polyline,
.map-svg svg > rect {
	fill: var(--map-fillout);
	fill-opacity: 1;
	stroke: white;
	stroke-opacity: 1;
	stroke-width:0.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-miterlimit: 10;
	transition: all 500ms;
	cursor: pointer;
}
.map-svg svg > g.map-hover > circle,
.map-svg svg > g.map-hover > line,
.map-svg svg > g.map-hover > path,
.map-svg svg > g.map-hover > polygon,
.map-svg svg > g.map-hover > polyline,
.map-svg svg > g.map-hover > rect,
.map-svg svg > circle.map-hover,
.map-svg svg > line.map-hover,
.map-svg svg > path.map-hover,
.map-svg svg > polygon.map-hover,
.map-svg svg > polyline.map-hover,
.map-svg svg > rect.map-hover
.map-svg svg > g:hover > circle,
.map-svg svg > g:hover > line,
.map-svg svg > g:hover > path,
.map-svg svg > g:hover > polygon,
.map-svg svg > g:hover > polyline,
.map-svg svg > g:hover > rect,
.map-svg svg > circle:hover,
.map-svg svg > line:hover,
.map-svg svg > path:hover,
.map-svg svg > polygon:hover,
.map-svg svg > polyline:hover,
.map-svg svg > rect:hover {
	fill: var(--map-fillover);
}
#map-container.center .map-svg {
	width: 100%;
	text-align: center;
}
#map-container.left  .map-svg {
	margin-left: 10%;
	text-align: left;
}
#map-container.right .map-svg {
	margin-right: 10%;
	text-align: right;
}
#map-container .locations-list {
	flex: 1;
	display: block;
	padding: 0;		
	width: auto;
	column-gap: 30px;
	margin: auto 0 auto 0;
	column-count: var(--map-nb-cloumn-list);
}
#map-container.both .locations-list {
	flex: 0 0 20%;
	display: flex;
	flex-direction: column;
}
#map-container.left .locations-list {
	text-align: left;
}
#map-container.right .locations-list {
	text-align: right;
}
#map-container .locations-list li {
	list-style: none;
	margin: 0;
	padding: 4px 0;
	white-space: nowrap;
}
#map-container.both .locations-list.right li {
	text-align: right;
}
#map-container .locations-list li a {
	line-height: 17px;
	font-size: 1em;
	color: #777777;
	text-decoration: none;
}
#map-container .locations-list li a:hover {
	text-decoration: underline;
}
@media (max-width: 1024px)
{
	#map-container
	{
		width: 90%;
	}
}
@media (max-width: 930px)
{
	#map-container.both {
		flex-direction: column;
	}
	#map-container svg
	{
		display: block;
		margin: auto;
	}
	#map-container.both .locations-list:nth-of-type(1) {
		margin-bottom: 20px;
	}
	#map-container.both .locations-list:nth-of-type(2) {
		margin-top: 20px;
	}
	#map-container.both .locations-list:nth-of-type(1) li,
	#map-container.both .locations-list:nth-of-type(2) li {
		text-align: center;
	}
	.map-svg
	{
		width: 100%;
		margin: auto;
	}
	#map-container .locations-list {
		display: none;
	}
}

#map-tooltip {
	position: absolute;
	display: none;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-width: 200px;
	width: auto;
	height: auto;
	padding: 20px;
	background-color: white;
	border: 1px solid #ededed;
	border-radius: 5px 5px 5px 5px;
	display: none;
	text-align: center;
	z-index: 10;
}
#map-tooltip #triangle {
	position: absolute;
	bottom: -9px;
	left: 20%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 9px 9px 0 0;
	border-color: white transparent transparent transparent;
}
#map-tooltip #triangle_border {
	position: absolute;
	bottom: -11px;
	left: calc(20% - 1px);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 0;
	border-color: #ededed transparent transparent transparent;
}
#map-tooltip .label {
	font-family: Tahoma, sans-serif;
	font-size: 0.9em;
	color: #2F2F2F;
	font-weight: bold;
}
#map-tooltip .txt {
	font-family: Tahoma, sans-serif;
	font-size: 0.8em;
	color: #2F2F2F;
}