/*!
 * Map Components - Knowledge AGMA Theme
 * Version: 2.4.3
 * AGMA map styles
 */

#agma_map {
	position: absolute;
	top: 0;
	left: 0;
	height: 100vh;
	width: 38vw;
	z-index: var(--z-base) !important;
}

#agma_map:before {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	background: linear-gradient(270deg, var(--b-color) 10%, transparent 5%);
	pointer-events: none;
	z-index: 1001;
}

.agma_map_hide:before {
	background: var(--b-color) !important;
}

.map {
	grid-area: map;
	border-top: var(--border-width) solid var(--m-color);
}

/* Mobile Map */
@media screen and (max-width: 765px) {
	#agma_map {
		width: 100vw;
	}

	#agma_map:before {
		height: 0;
		width: 0;
		background: unset;
	}

	body.home #agma_map:before {
		background: var(--b-color) !important;
		height: 100vh;
		width: 100vw;
	}
}

