body, html {
    margin: 0;
    height: 100%;
}
body {
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: left;
}
#map {
    height: 100%;
}
#sidebar {
    background-color: white;
    max-width: 400px;
    overflow: hidden;
    position: fixed;
    right: -100%;
    top: 0;
    transition: all 1s;
    width: 20%;
}

#sidebar.active {
    height: 100vh;
    right: 0;
    transition: all 1s;
    z-index: 1000000;
}
/** HUD **/
#hud {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100000001;
    background-color: #000;
    color: white;
    opacity: .75;
    position: absolute;
    left: 20px;
    z-index: 100000001;
    font-size: .9rem!important;
    border: 1px solid #777;
    box-shadow: 2px 2px 10px #000;
}
#hud table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    margin-bottom: 15px;
}
#hud td {
    text-align: right;
    padding-right: 15px;
    padding-left: 40px;
    line-height: 1.75rem;
}
#hud th {
    padding-left: 15px;
    padding-right: 70px;
    line-height: 2.25rem;
}
#hud tr {
    border-bottom: 0px solid #fff;
}
#hud tr:last-child {
    border-bottom: 0;
}
#hud span {
  margin-left: 5px;
  font-size: .75rem;
}
/** BURST **/
.burst-window {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(220,220,220,.75);
  z-index: 100000000000;
  color: #555;
  text-align: center;
  font-size: 50px;
  font-weight: bold;
} 
.burst-window div {
  top: 50%;
  position: relative;
  transform: translateY(-50%);
}