body{
  font-family: 'everett_regularregular',sans-serif;
  font-weight: normal;
  font-style: normal;
  margin: 0px;
  padding:0px;
  /* overflow: hidden; */
}
div{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#header{
  position: fixed;
  width:100%;
  height:80px;
    background: #2a2ab8;
    color: white;
    font-size: 12vw;
    z-index:2;
    user-select: none;
    border-bottom:solid 1px white;
}
#header img{
  max-width:90%;
}
#legend{
  position: fixed;
  top:80px;
  width:100%;
  height:79px;
  color:white;
  background: #2a2ab8;;
  border-bottom:solid 1px white;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
}

#legend div,#legend div p{
  width:auto;
  align-items:left;
  justify-content:left;
  text-align: left;
}
#legend div{
  display: flex;
  align-items: center;
}
#legend i{
  margin-left:10px;
  font-size:11vw;
}
#legend p{
  display: block;
  width:70%;
  font-size:3.5vw;
  margin: 0;
  line-height: 5vw;
}
#legend img{
  margin-right:20px;
}
#content{
  position: fixed;
  width:100%;
  top:160px;
  bottom:80px;
  overflow-y: auto;
  background: black;
}
ul{
  list-style: none;
  padding:0px;
  margin: 0px;
  width: 100%;
  cursor:pointer;
}
#content ul li{
    box-sizing: border-box;
  width:100%;
    list-style: none;
  height:calc((100%-240px)/5);
  color:white;
  background: black;
  display: flex;
align-items: center;
justify-content: center;
font-size:8vw;
cursor:pointer;
border-top:1px solid white;
user-select: none;
}
/* #content ul li:focus{
  background:white;
  color:black;
  cursor:pointer;
} */
#content ul li:first-child{
  border-top:none;
}
#footer{
  position: fixed;
  width:100%;
  height:80px;
  bottom:0px;
  background:#2a2ab8;
  border-top: 1px solid white;
  color:white;
  font-size:12vw;
  user-select: none;
}
#footer span{
  position: relative;
  display: flex;
align-items: center;
justify-content: center;
  width:33.33%;
  height:100%;
}
#footer span i{
  /* position: absolute;
  top:0px;
  left:0px; */
  font-size:13vw;
}

#footer span form,
#footer span input{
  top:0px;
  left:0px;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  font-size:18vw;
}

#infoPanel div{
  height: 100%;
  width: 100%;
  display: block;
  /* align-items: top; */
  justify-content: left;
  text-align: left;

}
#infoPanel{
  position: absolute;
  width: 100%;
  bottom:0px;
  background: black;
  top:80px;
  transform: translateY(-100%);
  transition: transform 0.5s ease;
  color:white;
  font-size:6.7vw;
  line-height: 8vw;
  display: block;
box-sizing: border-box;
padding:15px;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
#infoPanel.show{
  transform: translateY(0px);
}
#confirm,#confirm2{
  display: flex;
  width: 100%;
  display: flex;
align-items: center;
justify-content: center;
margin:0px;
margin-bottom:10px;
}
#confirm2{
  position: absolute;
  bottom:20px;
}
#confirm i{
  display: block;
  margin:0px;
  width: 30px;
  height:30px;
  font-size:30px;
  color:white;
  text-align:center;
  background-color: #2a2ab8;
  border-radius:50% 50%;
}
a:link,
a:visited,
a:active{
  color:white;
}
#content ul li.active{
  background:white;
  color:black
}


#loader,
#message{
  position: absolute;
  top:0px;
  left:0px;
  bottom:0px;
  right:0px;
  background-color: rgba(255,255,255,0.5);
}
.mdl-spinner.loader{
  width:30vw;
  height:30vw;
}
#loader.hide,
#message.hide{
  display:none;
}
#message.hide{
  opacity:0;
}
#message{
  color:white;
  font-size:7vw;
  line-height:9vw;
  background-color: #2a2ab8;
  padding:20px;
  text-align:left;
  align-items:unset;
  opacity:1;
  transition:opacity 0.5s ease-out;
}

/* Portrait */
@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
    #legend p{
      font-size: 1.5vw;
      line-height: 2vw;
    }
}