  body {
    background: lightgray;
    font-family: "Tajawal", sans-serif;
    width: 100%;
 
  }

  #map-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
  }

  path {
    fill: none;
    stroke: #000;
    stroke-linejoin: round;
    stroke-linecap: round;
  }
  

  .land {
    fill: #F7f7f7;
    stroke: #ccc;
  }

  .border {
    fill: none;
    stroke: #bbb;
    stroke-linejoin: round;
    stroke-linecap: round;
  }

circle.gain{
  fill: #67a9cf;
  stroke: #fff;
}
circle.loss{
  fill: #ef8a62;
  stroke: #fff;
}

circle:hover{
  stroke: black;
  stroke-width: 2;
}
 
.bubble {
    fill: steelblue;
    fill-opacity: .45;
    stroke: blue;
    stroke-width: .5px;
}


.legend circle {
  fill: white;
  stroke: #ccc;
}

.legend text {
  fill: #777;
  font: 10px sans-serif;
  text-anchor: middle;
}

#axis path{
  fill: none;
}

#axis .tick line{
  stroke: #999;
}

#axis .tick text{
  font-size: 12px;
}

#scout{
  color: darkblue;
  position: absolute;
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  display: none;
  font-size: 12px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
}

#scout strong{
  font-size: 16px;
}

#scout span{
  color: #999;
}

#date, #play, #slider-container{
  display: inline-block;
  vertical-align: middle;
  margin-top: 20px;
}

#date{
  border-left: 5px solid #ccc;
  padding: 3px 0 3px 10px;
  margin-left: 60px;
  color: #333;
}
#date p{
  margin: 0;
}

#date p:first-child{
  color: #999;
  font-size: 11px;
  line-height: 13px;
}
#date p#month{
  font-size: 30px;
  line-height: 30px;
}
#date p#month span{
  float: left;
  width: 2.55em;
}


