html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

#map {
  height: 100%;
}

a {
  color: #00B7FF;
}

.full-width {
  width: 100%;
  margin: 0 auto;
}

.full-height {
  height: 100%;
}

.write-area {
  position: fixed;
  bottom: 5px;
  /* width: 100%; */
  text-align: center;
  padding: 0px;
}

#message {
  width: 100%;
  max-width: 200px;
}

.coordinates {
  background: rgba(0,0,0,0.5);
  color: #fff;
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding:5px 10px;
  margin: 0;
  font-size: 11px;
  line-height: 18px;
  border-radius: 3px;
  display: none;
}

.slidecontainer {
  width: 100%; /* Width of the outside container */
}

/* The slider itself */
.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: blue;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: blue;
  cursor: pointer;
}

.geocoder {
  position:absolute;
  z-index:10;
  width:100%;
  /* left:50%; */
  margin-left:5%;
  top:10px;
}
.mapboxgl-ctrl-geocoder { min-width:100%; }

#chatmessages {
  position:relative;
  z-index:1;
  top: 75px;
  margin-left: 5%
  bottom: 200px;
  width: 100%;
  height: 50%;
  overflow-y: scroll;
  line-height: 1.4;
}

.pokemon {
  background-image: url('/assets/pokemon.png');
  background-size: cover;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
}
.charizard {
  background-image: url('/assets/charizard.png');
  background-size: cover;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
}
.squirtle {
  background-image: url('/assets/squirtle.png');
  background-size: cover;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
}
.pin {
  background-image: url('/assets/mappin.png');
  background-size: cover;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
}
