html, body { background-color: #FFF; }

.clickable-location-map g-container button {
	background-color: transparent;
	border: 0;
	cursor: pointer;
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
}

.clickable-location-map g-container button img {
	display: block;
	width: 100%;
}

map-modal {
	background-color: rgba(0, 0, 0, 0.7);
	display: block;
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	position: fixed;
	top: 0; left: 0; bottom: 0; right: 0;
	transition: opacity 500ms ease;
	z-index: 100;
}

map-modal.active {
	opacity: 1;
	pointer-events: all;
}

map-modal modal-outer {
	display: block;
	height: 100%;
	overflow: hidden;
	position: relative;
	width: 100%;
}

@media (max-width:679px){
	map-modal modal-outer {
		left: -100%;
		width: 300%;
	}
}

map-modal modal-inner {
	display: block;
	position: relative;
	width: 50%;
}

map-modal map-wrap {
	display: block;
	margin: auto;
	width: 80%;
	position: relative;
	transition: transform 1s ease;
}

map-modal img {
	display: block;
	transform: scale(1);
	width: 100%;
}

.admin-bar map-modal { top: 1.5rem; }

map-modal .button {
	border-radius: 2rem 0 0 2rem;
	cursor: pointer;
	padding: 0.7188rem 0.75rem;
	position: absolute;
	bottom: 1.5rem; right: calc(50% + 0.125rem);
	width: 6.75rem;
	z-index: 2;
}

map-modal .button + .button {
	border-radius: 0 2rem 2rem 0;
	right: auto; left: calc(50% + 0.125rem);
}

map-modal .button:not(:hover) {
	background-color: #FFF !important;
	color: #222 !important;
}

map-modal .button:hover {
	background-color: #D8906A !important;
	color: #FFF !important;
}

map-modal .closer {
	align-items: center;
	background-color: #D8906A;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	width:2.75rem;
	height:2.75rem;
	z-index:2;
}

map-modal .closer:after {
    content: "\00D7";
    font-size: 2rem;
    color: #FFF;
    line-height: 100%;
    display: block;
    position: relative;
    top: -0.125rem;
    width: 100%;
    text-align: center;
}

map-modal .closer:hover {
	background-color: #FFF;
}

map-modal .closer:hover:after {
    color: #222;
}


.screen-reader-text {
	visibility: hidden;
	position: absolute;
	pointer-events: none;
}