body {
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("../../assets/Images/background.jpg");
  background-repeat: no-repeat;
  background-color: darkgrey;
  background-blend-mode: darken;
  background-size: cover;
  padding-bottom: 100px;
  position: relative; }

footer {
  position: absolute;
  bottom: 0px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background-color: #343332;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white; }
  footer h3 {
    font-size: 14px; }
  footer nav {
    margin-top: 5px; }
    footer nav .fa {
      font-size: 30px; }
    footer nav a {
      color: white;
      margin: 0px 5px; }

h2 {
  font-size: 32px;
  color: white;
  font-weight: 600;
  margin-bottom: 10px; }

section.content {
  padding: 15px 20px;
  background-color: #343332;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  color: white; }

#header-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh; }

strong {
  font-weight: 700; }

header {
  text-align: center;
  width: 100%;
  color: white;
  margin-bottom: 10px;
  background-color: #343332; }
  header h1 {
    font-size: 36px;
    font-weight: 700;
    padding: 5px 0px; }
  header span {
    font-size: 16px; }
  @media screen and (max-width: 479px) {
    header {
      margin-bottom: 0px; }
      header h1 {
        font-size: 20px; }
      header span {
        font-size: 12px; } }

.map-container {
  width: 100%;
  position: relative;
  box-sizing: border-box; }

#map {
  height: 100%;
  width: 100%; }

.slidecontainer {
  position: absolute;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  top: 5px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
  width: 350px;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #343332;
  color: white; }
  .slidecontainer h3 {
    font-size: 18px;
    font-weight: 700; }
  .slidecontainer .slider {
    margin: 8px 0px;
    margin-bottom: 10px;
    width: 90%;
    -webkit-appearance: none;
    cursor: pointer; }
  .slidecontainer .slider::-webkit-slider-runnable-track {
    height: 3px;
    background-image: linear-gradient(0deg, #a5a5a5, #c4c4c4); }
  .slidecontainer .slider::-moz-range-track {
    height: 3px;
    background-image: linear-gradient(0deg, #a5a5a5, #c4c4c4); }
  .slidecontainer .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-image: linear-gradient(0deg, #fcfcfc, #e4e4e4);
    margin-top: -8px; }

.info-box {
  position: absolute;
  bottom: 30px;
  left: 10px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  font-size: 16px; }

.help {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 30px;
  right: 10px;
  z-index: 1;
  border: 1px solid black;
  border-radius: 5px;
  background-color: #343332; }
  @media screen and (max-width: 479px) {
    .help {
      bottom: 40px; } }
  .help #help-button {
    font-size: 40px;
    color: white;
    padding: 5px 15px; }
    @media screen and (max-width: 479px) {
      .help #help-button {
        font-size: 30px;
        color: white;
        padding: 3px 8px; } }
  .help #help-button:hover {
    cursor: pointer; }
  .help #help-button.fa-times-circle {
    align-self: flex-end;
    font-size: 20px;
    padding: 0px;
    margin-top: 5px;
    margin-right: 5px; }
  .help #instructions {
    display: none; }
  .help #instructions.show {
    display: block;
    color: white;
    width: 300px;
    font-size: 14px;
    text-align: center;
    padding: 5px;
    padding-top: 0px; }

.info-box {
  padding: 5px 10px;
  border: 1px solid black;
  background-color: #343332;
  border-radius: 5px;
  color: white;
  font-size: 16px;
  line-height: 25px; }

@media screen and (min-width: 480px) {
  .map-container {
    width: 90%;
    position: relative;
    padding: 15px 20px;
    background-color: #343332;
    border-radius: 5px; }
  .slidecontainer {
    top: 20px; } }

.mapboxgl-popup-content {
  display: flex;
  flex-direction: column;
  color: black;
  font-size: 13px; }

section.graphs {
  position: relative;
  padding: 15px 40px; }
  section.graphs .graph-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px; }
  @media screen and (max-width: 479px) {
    section.graphs {
      display: none; } }

#graph {
  background-color: white;
  height: 600px;
  color: black; }
  #graph text {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 14px; }
  #graph text.axis-label {
    font-size: 24px; }

.about {
  width: 90%; }
  .about p {
    line-height: 20px; }
    .about p a {
      color: white; }

#selectButtons {
  margin-bottom: 5px; }
  @media (max-width: 479px) {
    #selectButtons {
      display: none; } }
  #selectButtons button {
    padding: 5px 10px;
    background-color: #343332;
    color: white;
    border-radius: 5px;
    width: 100px; }

#map-container, #graphs {
  display: none; }

#map-container.display, #graphs.display {
  display: flex; }
