.mapify-holder{
	position: relative;
	display: inline-block;
	font-size: 0px;
	max-width: 100%;/* Make the image responsive */
	z-index:1;

	-webkit-touch-callout: none;

	-webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
}

.mapify-imgHolder{
	position:relative;
	z-index:1;
}

.mapify-holder *,
.mapify-GPU{
	-webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

/* Make the image responsive */
.mapify-imgHolder .mapify{
	max-width: 100%;
	height: auto;
}

.mapify-img{
	position: absolute;
	top:0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: -2;
}
.mapify-svg{
	position: absolute;
	top:0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: -2;
}

/* Styles for the hilight effect */

.mapify-polygon{
	transition: all 0.5s;
	fill:rgba(211, 160, 39, 0.25);
	stroke: rgba(211, 160, 39, 0.65);
	stroke-width: 2px;

	/* do not use css transform translate3d, otherwise it starts lagging in iOs when panning the map*/
}
.mapify-hover{
	fill: rgba(211, 160, 39, 0.75) !important;
}

/**/

.mapify-popOver{
	display: none;
	border: 1px solid #898989;
	color: #000;
	position: absolute;
	top:0px;
	left: 0px;

	padding: 15px 25px;
	width: 260px;
	background: #fff;
	z-index: 999;
	-webkit-transform: translateY(-15px);
	transform: translateY(-15px);
	height: auto !important;

	box-sizing: border-box;
	-moz-box-sizing: border-box;

	font-size: 14px;

	z-index: -1;

	opacity: 0;

	/* now declared in the plugin options
	transition: all 0.5s;
	*/
}

.mapify-popOver.mapify-visible{

	/* Showing the popover */
	opacity: 1;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
}
