#chartdiv {
  width: 100%;
	max-width: 2000px;
height:100vh;
	margin: 0px auto;
}

.map-marker {
    /* adjusting for the marker dimensions
    so that it is centered on coordinates */
    margin-left: -8px;
    margin-top: -8px;
	cursor: pointer;
}
.map-marker .map-clickable {
    cursor: pointer !important;
}
.pulse {
    width: 10px;
    height: 10px;
    border: 5px solid #ffffff;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: #BFBFBF;
    z-index: 10;
    position: absolute;
	cursor: pointer;
  }
.map-marker .dot {
    border: 5px solid #ffffff;
    background: transparent;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    height: 50px;
    width: 50px;
    -webkit-animation: pulse 2s ease-out;
    -moz-animation: pulse 2s ease-out;
    animation: pulse 2s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 1;
    opacity: 0;
  }
  @-moz-keyframes pulse {
   0% {
      -moz-transform: scale(0);
	   transform: scale(0);
      opacity: 0.0;
   }
   25% {
      -moz-transform: scale(0);
	   transform: scale(0);
      opacity: 0.1;
   }
   50% {
      -moz-transform: scale(0.1);
	   transform: scale(0.1);
      opacity: 0.3;
   }
   75% {
      -moz-transform: scale(0.5);
	   transform: scale(0.5);
      opacity: 0.5;
   }
   100% {
      -moz-transform: scale(1);
	   transform: scale(1);
      opacity: 0.0;
   }
  }
  @-webkit-keyframes "pulse" {
   0% {
      -webkit-transform: scale(0);
	   transform: scale(0);
      opacity: 0.0;
   }
   25% {
      -webkit-transform: scale(0);
	   transform: scale(0);
      opacity: 0.1;
   }
   50% {
      -webkit-transform: scale(0.1);
	   transform: scale(0.1);
      opacity: 0.3;
   }
   75% {
      -webkit-transform: scale(0.5);
	   transform: scale(0.5);
      opacity: 0.5;
   }
   100% {
      -webkit-transform: scale(1);
	   transform: scale(1);
      opacity: 0.0;
   }
  }