#markers a {
	width: 40px;
	height: 40px;
	border-radius: 40px;
	border: 2px solid;
	border-color: #09a0f1;
	opacity: 0;
	display: none;
	position: absolute;
	cursor: pointer;
	background: rgba(221, 221, 221, 0.38);
    text-decoration: none;
	
	
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* Internet Explorer/Edge */
  user-select: none;           /* Non-prefixed version, currently
                                  not supported by any browser */
}
#markers a:hover {
	/*background: white;
	opacity: 0.2;*/
	text-decoration: none;
	transform: scale(1.1,1.1);
}
#markers a:hover {
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
