.leaflet-container a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


/*serie di classi relative al quadratino mostrato sul click del marker */
/*mantenendo l'utilizzo della classe defaultdiv si riduce la dimensione del quadratino*/
/*leaflet-marker-icon leaflet-div-icon leaflet-zoom-animated leaflet-interactive*/
/*TODO: rimuovere la stampa del quadratino sul click del marker*/

.defaultdiv {
  background-color: transparent !important;
  width: 0px !important;
  height: 0px !important;
  outline: none !important;
  outline-style: none !important;
  outline-width: 0px !important;
  outline-offset: 0px;
  border: 0px solid !important;
}
.defaultdiv:focus {
  background-color: transparent !important;
  width: 0px;
  height: 0px;
  outline: none !important;
  outline-style: none !important;
  outline-width: 0px !important;
  outline-offset: 0px;
  border: 0px solid !important;
}

.leaflet-marker-icon {
  outline: none !important;
  outline-style: none !important;
  outline-width: 0px !important;
  outline-color: transparent !important;
  border: 0px solid !important;
  -webkit-tap-highlight-color: transparent !important;
  background-color: transparent !important;
  width: 0px;
  height: 0px;
}
.leaflet-marker-icon a {
  outline: none !important;
  outline-style: none !important;
  outline-width: 0px !important;
  outline-offset: 0px;
  border: 0px solid !important;
  width: 0px !important;
  height: 0px !important;
  -webkit-tap-highlight-color: transparent !important;
}
.leaflet-marker-icon:focus {
  width: 0px;
  height: 0px;
  outline: none !important;
  outline-style: none !important;
  outline-width: 0px !important;
  outline-offset: 0px;
  border: 0px solid !important;
}


.markercstm {
  /* Set the marker size here */
  width: 32px;
  height: 32px;
  border-radius: 50%;
  /* Set the marker color here */
  background: #0099ff;
  border-bottom-right-radius: 0;
  transform: rotate(45deg);
  /* optional fanciness */
  border: 1px solid #333333;
  color: #333333;
  z-index: 99;
}
.markercstm div {
  width: 100%;
  height: 100%;
  padding-right: 50%;
  padding-left: 50%;
  transform: rotate(-45deg);
  color: #333333;
  z-index: 100;
  border: 0px solid black
}
.markercstm div i {
  display: inline-block;
  font-size: 16px;
  transform: translate(-50%, 50%);
  color: #333333;
  z-index: 101;
  border: 0px solid black
}
/* inner circle (optional if you don't need the central dot) */
/*.markercstm::before {
	content: "";
	background: white;
	width: 50%;
	height: 50%;
	border-radius: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);*/
/* optional fanciness */
/*box-shadow: 0.1rem 0.1rem 0.2rem 0.1rem rgba(0, 0, 0, 0.1);
}*/
/* shadow (optional if you don't need a shadow) */
.markercstm::after {
  content: "";
  background: rgba(128, 128, 128, 0.2);
  width: 75%;
  height: 75%;
  border-radius: 100%;
  position: absolute;
  top: 100%;
  left: 100%;
  transform: translate(-50%, -50%) rotate(45deg) scaleX(0.5);
}