body{
  margin:0;
  padding:0;
  font-family: Lato, sans-serif;
}
main#map{
  width:100vw;
  height: 100vh;
  margin:0;
}
.hidden,
#list > button.hidden{
  display:none;
}
.clickable{
  cursor: pointer;
}

#menu{
  position: fixed;
  top: 4rem;
  left: 14rem;
  z-index: 10;
  width: 2rem;
  height: 2.5rem;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 0 0.5rem 0.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: left 1s;
}
#menu.folded{
  left:0;
  transition: left 1s;
}

#list{
  display: block;
  box-sizing: border-box;
  position: fixed;
  top:0;
  left:0;
  margin:0;
  padding:0.5rem 0.5rem 2rem;
  width: 14rem;
  height: 100vh;
  z-index: 10;
  overflow-y: auto;
  transition: left 1s;
}
#list.folded{
  left:-14rem;
  transition: left 1s;
}
#list>h1{
  margin: 0.5rem auto 0.2rem;
  text-align: center;
}
#list>button{
  display: block;
  margin: 0 auto 1rem;
  width: 80%;
  height: 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 1s;
}
#list button:hover{
  width: 100%;
  transition: 1s;
}
#list ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

#list li{
  margin: 0.5rem 0;
}

#list footer{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 0.75em;
  text-align: center;
  padding: 0.5em 0;
  box-sizing: border-box;
}

article h1{
  font-size:1.2em;
  margin: 0;
  padding: 0;
}
article h2{
  font-size:1em;
  margin: 0;
  padding: 0;
}
article p{
  margin: 0;
  padding: 0;
}

#toast{
  position: fixed;
  bottom: 1rem;
  width: 100vw;
}
#toast ul{
  list-style: none;
  margin: 1rem;
  padding: 0;
}
#toast li{
  margin: 0.1rem auto;
  display: table;
}
#toast article{
  background-color: #c0c0c0;
  border-radius: 0.5rem;
  padding: 0.5rem;
}
#toast label,
#toast progress{
  display: block;
  margin: auto;
  text-align: center;
}
