/*
  Leaflet.BeautifyIcon, a plugin that adds colorful iconic markers for Leaflet by giving full control of style to end user, It has also ability to adjust font awesome
  and glyphicon icons
  (c) 2016-2017, Muhammad Arslan Sajid
  http://leafletjs.com
*/
.beautify-marker
{
	text-align: center;
	font-weight: 700;
	font-family: monospace;
	position:absolute;
}

.beautify-marker.circle
{
	border-radius: 100%;
}

.beautify-marker.circle-dot, .beautify-marker.doughnut
{
	border-radius: 100%;
}

.beautify-marker.marker
{
	border-top-left-radius: 50%;
	border-top-right-radius: 50% 100%;
	border-bottom-left-radius: 100% 50%;
	border-bottom-right-radius: 0%;
}

.fa-spin
{
	animation: 2s linear 0s normal none infinite fa-spin;
}
@-moz-keyframes fa-spin
{
	0%
	{
		transform: rotate(0deg);
	}
	100%
	{
		transform: rotate(359deg);
	}
}