.location-map-tabs__tab-container {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	border-bottom: 5px solid var(--e-global-color-primary);
}
.location-map-tabs__tab-container .location-map-tabs__tab {
	position: relative;
	z-index: 1;
	display: block;
	flex: 0 1 auto;
	width: 270px;
	height: 60px;
	font-weight: 400;
	color: white;
	background: var(--e-global-color-8401ea2);
	border: 0;
	border-radius: 20px 20px 0 0;
	padding: 10px;
}
.location-map-tabs__tab-container .location-map-tabs__tab:not(:first-child) {
	margin-left: -20px;
}

.location-map-tabs__tab-container .location-map-tabs__tab:hover {
	background: var(--e-global-color-8401ea2);
	color: white;
	filter: brightness(106%);
}
.location-map-tabs__tab-container .location-map-tabs__tab:focus {
	outline: none;
}
.location-map-tabs__tab-container .location-map-tabs__tab.active {
	z-index: 2;
	background: var(--e-global-color-primary);
	color: white;
	pointer-events: none;
}


/* LOCATION MAP **********************************************/

.location-map {
	--bl: 24px;
	
/* 	opacity: 0; */
	transition: opacity .4s;
}

.location-map__inner {
	position: relative;
}

.location-map__categories {
	position: relative;
	z-index: 2;
	background-color: #EAF5F1;
	padding: calc(var(--bl) * .5);
}

@media (min-width: 996px) {
	.location-map__categories {
		position: absolute;
		top: calc(var(--bl) * .5);
		left: 50%;
		transform: translateX(-50%);
		background-color: transparent;
		padding: 0;
	}
}

.location-map__categories__inner {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: calc(var(--bl) * -.5);
	margin-left: calc(var(--bl) * -.5);
}

.location-map__categories .location-category {
	cursor: pointer;
	background: transparent;
	padding: 0;
	border: none;
	border-radius: 0;
	margin-top: calc(var(--bl) * .5);
	margin-left: calc(var(--bl) * .5);
}


.location-category {
	border: none !important;
}

.location-category__icon {
	transition: all .2s;
}

.location-category:hover {
	background: transparent;
}
.location-category:focus {
	outline: none;
}

.location-category__icon img {
	display: block;
	width: 50px;
}

.location-category:hover .location-category__icon {
	filter: brightness(104%) drop-shadow(2px 3px 3px rgba(0, 0, 0, .1));
}

@media (min-width: 996px) {
	.location-category__icon img {
		width: 60px;
	}
}
@media (min-width: 1200px) {
	.location-category__icon img {
		width: 80px;
	}
}

.location-category.current .location-category__icon {
	opacity: 1;
}

.location-category--all .location-category__text {
	opacity: .85;
	transition: opacity .4s;
	color: white;
	padding: 16px 21px 15px;
}

.location-category--all.current .location-category__text {
	opacity: 1;
}


.location-map__map-wrapper {
	position: relative;
	z-index: 1;
}

#location-map-container {
	width: 100%;
	height: 65vw;
}
@media (min-width: 996px) {
	#location-map-container {
		height: 54vw;
	}
}
@media (min-width: 1400px) {
	#location-map-container {
		height: 790px;
	}
}

#location-map-container .info-heading {
	margin: 0;
	padding: 0;
	font-family: 'freight-sans-pro', sans-serif;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	color: #1D493C;
	text-transform: uppercase;
}

#location-map-container .gm-style .gm-style-iw-chr {
	display: none;
}

#location-map-container .gm-style .gm-style-iw-c {
	border-radius: 100px;
	padding: 12px 24px !important;
	overflow: visible !important;
	box-shadow: 0 3px 6px 0 rgb(0,0,0,.1);
}
#location-map-container .gm-style .gm-style-iw-d {
	overflow: visible !important;
}
#location-map-container .gm-style .gm-style-iw-c button[title="Close"] {
	background: #EAF5F1 !important;
	top: -12px !important;
	right: -15px !important;
	opacity: 1 !important;
}
#location-map-container .gm-style .gm-style-iw-c button[title="Close"]:hover {
	transform: scale(1.1);
}
