/* .custom-html-marker {
  pointer-events: auto;
}

.marker-label {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #aaa;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.2;
}

.marker-place {
  font-weight: bold;
  color: #2c3e50;
}

.marker-descr {
  color: #555;
}

.leaflet-div-icon {
    background: none;
    border: none;
}
 */


.custom-marker {
  position: relative; /* 0x0 reference point exactly at latlng */
}
.custom-marker .marker-inner {
  position: absolute;
  left: 0;
  bottom: 10px;              /* = triangle height, so tip sits exactly on latlng */
  transform: translateX(-50%);
  width: 220px;
  background: white;
  border-radius: 12px;
  padding: 6px 8px;
  text-align: center;
  box-shadow: 0 6px 10px rgba(0,0,0,1.35);
}

.custom-marker .marker-inner:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid white;     /* same as background */
}

.custom-marker i {
  /* display: block; */
  margin-bottom: 4px;
}
