
body {
  font-size: 14px;
}

.info {
    padding: 6px 8px;
    font: 14px/16px Arial, Helvetica, sans-serif;
    background: white;
    background: rgba(255,255,255, 1);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 5px;
}
.info h4 {
    margin: 0 0 5px;
    color: #777;
}

.info.leaflet-control {
  font-size: 12px;
  width: 192px;
}

/*second label*/
.text-label{
  font-size: 1em;
  font-weight: 700;
  color: white;
  text-shadow: 0 0 5px red;
}

.text-label-census{
  font-size: 1em;
  font-weight: 700;
  color: white;
  text-shadow: 0 0 5px blue;
}

.area-text-label{
  font-size: 1em;
  font-weight: 700;
  color: white;
  text-shadow: 0 0 5px purple;
}

.svg-label {
  /*font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;*/
  font-size: 1em;
  font-weight: 700;
  fill: white;
  stroke: black;
}
  

/*more than required*/

html, body {
  margin: 0;
  width: 100%;
  height: 100%;
}
#map {
  float: left;
  margin: 0;
  width: 100%;
  height: 950px;
}

/*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: 1px;
  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;
}

