.gmm-root {
	position: relative;
	z-index: 999999;
}

.gmm-panel {
	position: fixed;
	display: block;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	max-width: calc(100vw - 24px);
	max-height: calc(100vh - 24px);
	overflow: auto;
	background: #fff;
	box-shadow: 0 12px 40px rgba(0, 0, 0, .16);
	z-index: 999999;
	transform: translateY(0);
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.gmm-panel.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.gmm-animation-none {
	transition: none;
}

.gmm-animation-slide {
	transform: translateY(8px);
}

.gmm-animation-slide.is-open {
	transform: translateY(0);
}

.gmm-content {
	position: relative;
}

.gmm-close {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, .08);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	z-index: 10;
}

@media (min-width: 981px) {
	.gmm-panel.gmm-no-desktop { display: none !important; }
}

@media (min-width: 768px) and (max-width: 980px) {
	.gmm-panel.gmm-no-tablet { display: none !important; }
}

@media (max-width: 767px) {
	.gmm-panel.gmm-no-phone { display: none !important; }
}
