.custom-marker {
  background: transparent;
  display: block;
  border-left: 8.6px solid transparent;
  border-right: 8.6px solid transparent;
  border-top: 8.6px solid rgba(0, 0, 0, 0.9);
}
.leaflet-custom-marker-wrapper {
  width: max-content;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  padding: 4px;
  flex-direction: row;
  border-radius: 16px;
  justify-content: space-between;
  gap: 4px;
  transform: translate(-50%, -115%);
}
.marker-icon-name {
  color: white;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
  width: max-content;
  padding-right: 4px;
  &.none {
    display: none;
  }
  &.block {
    display: inline-block;
  }
}
.marker-icon-url {
  width: 16px;
  height: 16px;
}

.clean-zone-marker{
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
  background-color:  #fff !important;
  border-radius: 50% !important;
  box-shadow: 0px -2px 1px 0px rgba(0, 0, 0, 0.1);
}

.clean-zone-marker-name{
  position: absolute;
  left: 30px;
  color: #fff;
  width:110px;
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: 0.07px;
  text-shadow:
  -0.5px -1px 0 #111827, 1px -0.5px 0 #111827, -0.5px 1px 0 #111827, 0.5px 1px 0 #111827;
  &.none {
    display: none;
  }
  &.block {
    display: inline-block;
  }
}

.clean-zone-marker-pin{
  background: transparent;
  display: block;
  border-left: 10px solid transparent;
  border-right:10px solid transparent;
  border-top: 9.5px solid #fff ;
  &.selected{
    border-top: 9.5px solid #EAECF0 !important;
    .clean-zone-marker{
      background-color: #EAECF0 !important;

    }
  }
}

