#map > div.leaflet-control-container > div.leaflet-top.leaflet-left > div.leaflet-pm-toolbar.leaflet-pm-draw.leaflet-bar.leaflet-control > div:nth-child(3){
	display:none;
}
#map > div.leaflet-control-container > div.leaflet-top.leaflet-left > div.leaflet-pm-toolbar.leaflet-pm-draw.leaflet-bar.leaflet-control > div:nth-child(2){
	display:none;
}
#map > div.leaflet-control-container > div.leaflet-top.leaflet-left > div.leaflet-pm-toolbar.leaflet-pm-edit.leaflet-bar.leaflet-control > div:nth-child(1){
	display:none;
}

#map > div.leaflet-control-container > div.leaflet-top.leaflet-left > div.leaflet-pm-toolbar.leaflet-pm-edit.leaflet-bar.leaflet-control > div:nth-child(2){
	display:none;
}
#map > div.leaflet-control-container > div.leaflet-top.leaflet-left > div.leaflet-pm-toolbar.leaflet-pm-edit.leaflet-bar.leaflet-control > div:nth-child(3){
	display:none;
}
#map > div.leaflet-control-container > div.leaflet-top.leaflet-left > div.leaflet-pm-toolbar.leaflet-pm-edit.leaflet-bar.leaflet-control > div:nth-child(4){
	display:none;
}
#map > div.leaflet-control-container > div.leaflet-top.leaflet-left > div.leaflet-pm-toolbar.leaflet-pm-edit.leaflet-bar.leaflet-control > div:nth-child(5){
	display:none;
}

/*Wraperclass for the divicon*/
.map-label {
	position: absolute;
	bottom: 0;left: -50%;
	display: flex;
	flex-direction: column;
	text-align: center;
  }
  /*Wrap the content of the divicon (text) in this class*/
  .map-label-content {
	order: 1;
	position: relative; left: -50%;
	background-color: #fff;
	border-radius: 5px;
	border-width: 2px;
	border-style: solid;
	border-color: #444;
	padding: 3px;
	white-space: nowrap;
  }
  /*Add this arrow*/
  .map-label-arrow {
	order: 2;
	width: 0px; height: 0px; left: 50%;
	border-style: solid;
	border-color: #444 transparent transparent transparent;
	border-width: 10px 6px 0 6px; /*[first number is height, second/fourth are rigth/left width]*/
	margin-left: -6px;
  }
  
  /*Instance classes*/
  .map-label.inactive {
	opacity: 0.5;
  }
  
  .map-label.redborder > .map-label-content {
	border-color: #e00;
  }
  .map-label.redborder > .map-label-arrow {
	border-top-color: #e00;
  }
  
  .map-label.redbackground > .map-label-content {
	white-space: default;
	color: #fff;
	background-color: #e00;
  }
  
  