#map {
  z-index: 1;
  height: 105vh;
  width: 100%;
  background-color: #026a4f;
}

.leaflet-popup-content-wrapper {
  background: transparent;
  box-shadow: none;
}

@keyframes fade { 
 50%{
    	opacity: 1;
    }
    25%, 75%{
    	opacity: 0.2;
   
  }
}

.blinking {
  animation: fade 3s  infinite alternate;
  -webkit-animation: fade 3s  infinite alternate;
}