/********************** MAP CSS ***************************/

/********************** Marqueur ***************************/
.leaflet-popup {
  margin-bottom: 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0.3);
  background-color: #fff;
}

/* gestion du triangle sous le marqueur  */
.leaflet-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
}

.leaflet-popup .leaflet-popup-content-wrapper {
  background:transparent;
  color: inherit;
  box-shadow: none;
  text-align: inherit;
}

.leaflet-popup .leaflet-popup-content {
  color: inherit;
  margin:0;
  text-align: inherit;
  }

.leaflet-popup .leaflet-popup-tip-container {
  display: none;
}

/* au survol */
.leaflet-popup.isHover.notExtended, .leaflet-popup.notExtended:hover {
  z-index: 300;
  background-color:#02a434;
  color: #fff;
}

.leaflet-popup.isHover.notExtended::after, .leaflet-popup.notExtended:hover::after  {
  border-top: 8px solid #02a434;
}

.leaflet-popup.isExtended {
  z-index: 301;
}

.leaflet-popup .closeButton span {
  position: absolute;
  top: -6px;
  right: -4px;
  border-radius: 75px;
  border-color: #3c3e3d;
  border: solid;
  background-color: white;
  border-width: 1px;
  width: 15px;
  height: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #7b7777;
}

