/* required styles */

.gmap-pane,
.gmap-tile,
.gmap-marker-icon,
.gmap-marker-shadow,
.gmap-tile-container,
.gmap-pane > svg,
.gmap-pane > canvas,
.gmap-zoom-box,
.gmap-image-layer,
.gmap-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.gmap-container {
	overflow: hidden;
	}
.gmap-tile,
.gmap-marker-icon,
.gmap-marker-shadow {
	user-select: none;
	-webkit-user-drag: none;
	}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.gmap-safari .gmap-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.gmap-safari .gmap-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.gmap-marker-icon,
.gmap-marker-shadow {
	display: block;
	}
/* .gmap-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .gmap-container img: map is broken in FF if you have max-width: 100% on tiles */
.gmap-container .gmap-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.gmap-container .gmap-marker-pane img,
.gmap-container .gmap-shadow-pane img,
.gmap-container .gmap-tile-pane img,
.gmap-container img.gmap-image-layer,
.gmap-container .gmap-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.gmap-container.gmap-touch-zoom {
	touch-action: pan-x pan-y;
	}
.gmap-container.gmap-touch-drag {
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.gmap-container.gmap-touch-drag.gmap-touch-zoom {
	touch-action: none;
}
.gmap-container {
	-webkit-tap-highlight-color: transparent;
}
.gmap-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.gmap-tile {
	visibility: hidden;
	}
.gmap-tile-loaded {
	visibility: inherit;
	}
.gmap-zoom-box {
	width: 0;
	height: 0;
	box-sizing: border-box;
	z-index: 800;
	}

.gmap-pane         { z-index: 400; }

.gmap-tile-pane    { z-index: 200; }
.gmap-overlay-pane { z-index: 400; }
.gmap-shadow-pane  { z-index: 500; }
.gmap-marker-pane  { z-index: 600; }
.gmap-tooltip-pane   { z-index: 650; }
.gmap-popup-pane   { z-index: 700; }

.gmap-map-pane canvas { z-index: 100; }
.gmap-map-pane svg    { z-index: 200; }


/* control positioning */

.gmap-control {
	position: relative;
	z-index: 800;
	pointer-events: auto;
	}
.gmap-top,
.gmap-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.gmap-top {
	top: 0;
	}
.gmap-right {
	right: 0;
	}
.gmap-bottom {
	bottom: 0;
	}
.gmap-left {
	left: 0;
	}
.gmap-control {
	float: left;
	clear: both;
	}
.gmap-right .gmap-control {
	float: right;
	}
.gmap-top .gmap-control {
	margin-top: 10px;
	}
.gmap-bottom .gmap-control {
	margin-bottom: 10px;
	}
.gmap-left .gmap-control {
	margin-left: 10px;
	}
.gmap-right .gmap-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.gmap-fade-anim .gmap-popup {
	opacity: 0;
	transition: opacity 0.2s linear;
	}
.gmap-fade-anim .gmap-map-pane .gmap-popup {
	opacity: 1;
	}
.gmap-zoom-animated {
	transform-origin: 0 0;
	}
svg.gmap-zoom-animated {
	will-change: transform;
}

.gmap-zoom-anim .gmap-zoom-animated {
	transition: transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.gmap-zoom-anim .gmap-tile,
.gmap-pan-anim .gmap-tile {
	transition: none;
	}

.gmap-zoom-anim .gmap-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.gmap-interactive {
	cursor: pointer;
	}
.gmap-grab {
	cursor: grab;
	}
.gmap-crosshair,
.gmap-crosshair .gmap-interactive {
	cursor: crosshair;
	}
.gmap-popup-pane,
.gmap-control {
	cursor: auto;
	}
.gmap-dragging .gmap-grab,
.gmap-dragging .gmap-grab .gmap-interactive,
.gmap-dragging .gmap-marker-draggable {
	cursor: grabbing;
	}

/* marker & overlays interactivity */
.gmap-marker-icon,
.gmap-marker-shadow,
.gmap-image-layer,
.gmap-pane > svg path,
.gmap-tile-container {
	pointer-events: none;
	}

.gmap-marker-icon.gmap-interactive,
.gmap-image-layer.gmap-interactive,
.gmap-pane > svg path.gmap-interactive,
svg.gmap-image-layer.gmap-interactive path {
	pointer-events: auto;
	}

/* visual tweaks */

.gmap-container {
	background: #ddd;
	outline-offset: 1px;
	}
.gmap-container a {
	color: #0078A8;
	}
.gmap-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.gmap-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.gmap-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.gmap-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.gmap-bar a,
.gmap-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.gmap-bar a:hover,
.gmap-bar a:focus {
	background-color: #f4f4f4;
	}
.gmap-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.gmap-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.gmap-bar a.gmap-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.gmap-touch .gmap-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.gmap-touch .gmap-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.gmap-touch .gmap-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.gmap-control-zoom-in,
.gmap-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.gmap-touch .gmap-control-zoom-in, .gmap-touch .gmap-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.gmap-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.gmap-control-layers-toggle {
	background-image: url(images/layers.png);
	width: 36px;
	height: 36px;
	}
.gmap-retina .gmap-control-layers-toggle {
	background-image: url(images/layers-2x.png);
	background-size: 26px 26px;
	}
.gmap-touch .gmap-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.gmap-control-layers .gmap-control-layers-list,
.gmap-control-layers-expanded .gmap-control-layers-toggle {
	display: none;
	}
.gmap-control-layers-expanded .gmap-control-layers-list {
	display: block;
	position: relative;
	}
.gmap-control-layers-list {
	border: 0;
	margin: 0;
	padding: 0;
	}
.gmap-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.gmap-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.gmap-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.gmap-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.gmap-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.gmap-default-icon-path { /* used only in path-guessing heuristic, see GMap.Icon.Default */
	background-image: url(images/marker-icon.png);
	}


/* attribution and scale controls */

.gmap-container .gmap-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.gmap-control-attribution,
.gmap-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.gmap-control-attribution a {
	text-decoration: none;
	}
.gmap-control-attribution a:hover,
.gmap-control-attribution a:focus {
	text-decoration: underline;
	}
.gmap-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.gmap-left .gmap-control-scale {
	margin-left: 5px;
	}
.gmap-bottom .gmap-control-scale {
	margin-bottom: 5px;
	}
.gmap-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.gmap-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.gmap-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.gmap-touch .gmap-control-attribution,
.gmap-touch .gmap-control-layers,
.gmap-touch .gmap-bar {
	box-shadow: none;
	}
.gmap-touch .gmap-control-layers,
.gmap-touch .gmap-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.gmap-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.gmap-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.gmap-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.gmap-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.gmap-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.gmap-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	transform: rotate(45deg);
	}
.gmap-popup-content-wrapper,
.gmap-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.gmap-container a.gmap-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.gmap-container a.gmap-popup-close-button:hover,
.gmap-container a.gmap-popup-close-button:focus {
	color: #585858;
	}
.gmap-popup-scrolled {
	overflow: auto;
	}

/* div icon */

.gmap-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.gmap-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.gmap-tooltip.gmap-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.gmap-tooltip-top:before,
.gmap-tooltip-bottom:before,
.gmap-tooltip-left:before,
.gmap-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.gmap-tooltip-bottom {
	margin-top: 6px;
}
.gmap-tooltip-top {
	margin-top: -6px;
}
.gmap-tooltip-bottom:before,
.gmap-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.gmap-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.gmap-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.gmap-tooltip-left {
	margin-left: -6px;
}
.gmap-tooltip-right {
	margin-left: 6px;
}
.gmap-tooltip-left:before,
.gmap-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.gmap-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.gmap-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */
	
@media print {
	/* Prevent printers from removing background-images of controls. */
	.gmap-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}
}
