body {
  font-family: 'Sans-serif', Arial, Helvetica, sans-serif;
  margin:0;
  padding:0;
  color: #f0f8ff;
}

/* header, footer and split screen */
div#content{
  background: radial-gradient(#071629, #060b16); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

div#header{
  width:100%;
  height:65px;
  position:fixed;
  z-index:100;
} 
  
div#footer{
  width:100%;   
  height:55px;
  position:fixed;
  bottom:0;
  padding: 5px 0px;
}
div#content{
  width:100%;
  height:100%;
  position:absolute;
}
    
#splitcontainer {
  position:relative;
  height: 100%;
  width: 100%;
}

.split {
  top: 65px;
  bottom: 65px;
  position: absolute;
  padding: 1em;
}

.split-left {
  right: 45%;
  left: 0;
  /* border-right: #000 4px solid; */
}

.split-right {
  right: 0;
  left: 55%;
  overflow-y:auto;  
}

/* chart on hover */
#chartcontainer {
    /* padding-top: 10px; */
    /* position:relative; */
    z-index: 10000;
    max-width: 350px;
    max-height: 350px;
}
#chart {
  display:none;
  pointer-events: none;
  background-color: #0d243f;
  
  padding: 5px;
  /* border: 2px solid whitesmoke; */
  box-shadow: 0 1px 1px rgba(0,0,0,0.12), 
              0 2px 2px rgba(0,0,0,0.12), 
              0 4px 4px rgba(0,0,0,0.12), 
              0 8px 8px rgba(0,0,0,0.12),
              0 16px 16px rgba(0,0,0,0.12);
  border-radius: 5px;
}

#map {
    /* width: 80vw;  */
    /* height: 80vh; */
    /* margin-right: auto;
    margin-left: auto; */
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#timeline{
  color: white;
  /* padding-top: 10px; */
  height: 40px;
  vertical-align: middle;
  margin: auto;
  width: 80%;
}

#currentyear{
  width: 50px;
  margin: auto;
}

input[type=range] {
  -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
  width: 80%; /* Specific width is required for Firefox. */
  background: transparent; /* Otherwise white in Chrome */
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

input[type=range]:focus {
  outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}

input[type=range]::-ms-track {
  width: 80%;
  cursor: pointer;

  /* Hides the slider so custom styles can be added */
  background: transparent; 
  border-color: transparent;
  color: transparent;
}


input[type=range]::-webkit-slider-runnable-track {
  width: 80%;
  height: 8.4px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #3071a9;
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #367ebd;
}

input[type=range]::-moz-range-track {
  width: 80%;
  height: 8.4px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #3071a9;
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}

input[type=range]::-ms-track {
  width: 80%;
  height: 8.4px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #2a6495;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]:focus::-ms-fill-lower {
  background: #3071a9;
}
input[type=range]::-ms-fill-upper {
  background: #3071a9;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]:focus::-ms-fill-upper {
  background: #367ebd;
}

/* Special styling for WebKit/Blink */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  margin-top: -14px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; /* Add cool effects to your sliders! */
}

/* All the same stuff for Firefox */
input[type=range]::-moz-range-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}

/* All the same stuff for IE */
input[type=range]::-ms-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}



/* PIE CHART */
/* legend */
.legend {
  font-size: 14px;
  right: 150px;
}
.legend > text {
  fill: white;
  text-transform: capitalize;
}
rect {
  cursor: pointer; 
  stroke-width: 2;
}
rect.disabled {
  fill: transparent !important;
}

/* chart */
.piecontainer{
  /* max-width: 300px;  */
  /* overflow: hidden; */
  position: relative;
  /* padding-left: -0.1em; */
}

#pietitle{
  text-align: center;
}


/* tooltip */
.tooltip {
  background: #eee;
  box-shadow: 0 0 5px #999999;
  color: #333;
  display: none;
  font-size: 14px;
  /* left: 130px; */
  /* padding: 10px; */
  position: absolute;
  /* text-align: left; */
  top: 95px;
  width: 150px;
  z-index: 1000;
}




#player{
  height: 60px;
}

/* button */
#play {
  border: 0;
  background: transparent;
  box-sizing: border-box;
  width: 0;
  vertical-align: middle;
  height: 30px;
  transition: 100ms all ease;
  will-change: border-width;
  border-color: transparent transparent transparent #367ebd;

  border-style: solid;
  border-width: 14px 0 14px 29px;
}
  
#play.paused {
  border-style: double;
  border-width: 0px 0 0px 29px;
}

#play:hover {
  border-color: transparent transparent transparent #1b8df0;
}
#play:active, #play:focus {
  outline: 0;
}


.dropbtn {
  background-color: #0e294d;
  padding: 5px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  color: whitesmoke;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  max-height: 400px;
  overflow: auto;
  font-size: 12px;
  min-width: 80px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content p {
  color: #333;
  padding: 5px;
  margin: 0px 5px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content p:hover {background-color: #f1f1f1}



/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #174e96;
}

#detailfooter{
  font-size: small;
}