@media screen and (max-width: 1000px) {
  .header .user-bar {
    display: none;
  }
}

body {
  margin: 0;
}
h1 {
  text-align: center;
  font: bold 30px sans-serif;
}
canvas {
  position: absolute;
  border: 1px solid black;
  display: inline-block;
}
#map-controls {
  position: absolute;
  display: block;
  z-index: 1;
}
button {
  width: 4em;
  height: 3em;
  border-radius: 0.3em;
  border: 1px solid black;
  background-color: white;
  outline: none;
}
.display {
  background-color: HoneyDew;
}
/* modal*/

body {
  color: #333333;
  font-family: 'Helvetica', arial;
  height: 80em;
}
hr {
  clear: both;
  margin-top: 40px;
  margin-bottom: 40px;
  border: 0;
  border-top: 1px solid #aaaaaa;
}
h1 {
  font-size: 3em;
  margin-bottom: 40px;
}
p {
  margin-bottom: 20px;
}
a {
  text-decoration: none;
}
.modal:before {
  content: "";
  display: none;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.modal:target:before {
  display: block;
}
.modal:target .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  top: 20%;
}
.modal-dialog {
  background: #fefefe;
  border: #333333 solid 1px;
  border-radius: 5px;
  margin-left: -200px;
  position: fixed;
  left: 50%;
  top: -100%;
  z-index: 11;
  width: 360px;
  -webkit-transform: translate(0, -500%);
  -ms-transform: translate(0, -500%);
  transform: translate(0, -500%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal-body {
  padding: 20px;
}
.modal-header, .modal-footer {
  padding: 10px 20px;
}
.modal-header {
  border-bottom: #eeeeee solid 1px;
}
.modal-header h2 {
  font-size: 20px;
}
.modal-footer {
  border-top: #eeeeee solid 1px;
  text-align: right;
}
/*ADDED TO STOP SCROLLING TO TOP*/

#close {
  display: none;
}
.orange {
  color: green;
  font-size: 2em;
  text-decoration: none;
}
.cross {
  text-decoration: none;
  text-align: center;
  min-width: 60px;
  position: relative;
  right: 1em;
}
.btn-close {
  position: relative;
  color: #aaaaaa;
  font-size: 3em;
  text-decoration: none;
  position: absolute;
  right: 0.5em;
  top: 0;
}
