@charset "utf-8";

@font-face {font-family:"Merriweather Black"; src:url("fonts/Merriweather-Black.ttf") format("truetype")}
@font-face {font-family:"Merriweather Bold"; src:url("fonts/Merriweather-Bold.ttf") format("truetype")}
@font-face {font-family:"Merriweather Light"; src:url("fonts/Merriweather-Light.ttf") format("truetype")}
@font-face {font-family:"Merriweather Regular"; src:url("fonts/Merriweather-Regular.ttf") format("truetype")}

html, body {
    margin: 0px;
    padding: 0px;
    border: 0px;
}

h1, h2, h3, h4, h5 , strong {
    font-family:"Merriweather Bold", arial;
}

em {
  font-family:"Merriweather Light", arial;
  color: #c0c0c0;
}

p {
    font-family:"Merriweather Light", arial;
}

#map { 
    height: 400px; 
    width: 100%;
    max-width: 620px;
}

#panel {
  box-sizing: border-box;
  padding: 10px;
  display: block;
  min-height: 175px; 
  width: 100%;
  background-color: black;
  max-width: 620px;
  color: white;
  display: inline-block;
}

.keybox {
  width: 100%;
  min-height: 40px;
  display: block;
}

h3 {
  margin: 0px;
  font-family:"Merriweather Bold", arial;
  color: white;
}

hr {
  color: white;
}

span {
  font-size: 2em;
  font-family:"Merriweather Bold", arial;
}

.keybox:nth-child(2) {
  margin-top: 10px;
  font-family:"Merriweather Light", arial;
}

.keytext {
  width: calc(100% - 80px);
  float: left;
  font-family:"Merriweather Light", arial;
  line-height: 40px;
}

.circle {
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  float: left;
  background-image: url("../images/pointer-icon.png");
  background-position: cover
}

.perceived {
  background-color: red;
}

.dangerous {
  background-color: #f97000;
}

@media screen and (max-width: 519px) {
  .keytext {
    line-height: 1.1em;
  }
}


@media screen and (min-width: 520px) {
  .keytext {
    line-height: 40px;
  }
}