
.map #map {
	width: 50%;
    height: 100%;
    border-radius: 50%;
	color: #333;
}
.map #map .custom-marker {
	width: 44px;
	height: 44px;
	background-color: #FFFFFF;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.map #map .custom-marker img {
	width: 28px;
	height: 28px;
	margin-right: 4px;
}
.map #map .info-window-content {
	max-width: 210px;
	word-wrap: break-word;
}
.map #map .info-window-content .tel {
	padding: .25em 0;
}
.map #map .info-window-content .tel i {
    margin-right: .2em;
    font-size: .8em;
}
.map #map .info-window-content a {
	text-decoration: none;
	color: #1A73E8;
}
.map #map .info-window-content a:hover {
	text-decoration: underline;
}
.map #map div[aria-label="Focus"] {
    background: url(/img/focus-logo.svg) #FFFFFF no-repeat 12px 12px;
    background-size: auto 30px;
}
.map #map .gm-style-mtc-bbw {
    display: none;
}
.map .map-button {
	position: absolute;
	bottom: 30px;
	left: 25%;
	transform: translateX(-50%);
	background-color: #007BFF;
	color: #FFFFFF;
	border: none;
	padding: 10px 20px;
	font-size: 14px;
	cursor: pointer;
	border-radius: 5px;
	z-index: 1000;
}
.map .map-button:hover {
	background-color: var(--color-blue);
}
@media screen and (max-width: 768px) {
	.map #map .custom-marker {
		width: 36px;
		height: 36px;
	}
	.map #map .custom-marker img {
		width: 24px;
		height: 24px;
	}
}