body { margin: 0; padding: 0; }
#map { position: absolute; top: 0; bottom: 0; width: 100%; }


/* general formatting, not necessary for sidebar menu to function */
* {
  margin: 0;
  padding: 0;
  color: #000;
}

/* sidebar menu */

.sidenavbar {
    height: 100%;
    width: 0; /* initial width is set to 0, slide happens with JS */
    position: fixed; /* keeps sidenavbar in place */
    z-index: 1000; /* makes sidenavbar stay on top */
    overflow-x: hidden; /* prevents unwanted scrollbar */
    top: 0;
    left: 0;
    background-color: #FFF;
    transition: all ease-in 0.1s;

    a {
      width:90px;
      height: 90px;
      margin:20px auto;
      display: block;
      position:relative;
      text-decoration: none;
      border: 2px solid #fff;
    }

    a span{
      background-color: #0071bc;
      color: #fff;
      position:absolute;
      bottom:0;
      left:0;
      width:100%;
      height:12px;
      padding:5px 0;
      text-align: center;
      font-size: 13px;
    }
    
    
    a:hover {
      color: #fff;
      border: 2px solid #0071bc;
    }
    a.active{
        color: #fff;
      border: 2px solid #0071bc;
    }
}


@media (min-width: 1200px) {
.sidebar{width:175px}
}

.openbtn {
    cursor: pointer;
    color: #000;
    background-color:#FFF;
    border: none;
    height: 40px;
    width: 40px;
    position: fixed;
    top: 85px;
    transition: all ease-in .1s;
    border-radius:  0 3px 3px 0;
    z-index: 999;
  }

/* double chevron wrapped in a span */
#chevron {
    transition: all ease-in  .1s;
    float: right;
    margin-top:-5px;
    font-size: 30px;
    margin-right: 12px;
    color: #000;  
}

/*Logo*/
#logo-container{
    margin-top:0;
    background-color: #0071bc;
    padding-top:15px;
    padding-bottom:10px
}
#logo{
    margin:0 auto 0 auto;
    max-width: 100px;
}

/*fonts*/
@font-face {
    font-family: 'montserratregular';
    src: url('fonts/mont-regular-webfont.woff2') format('woff2'),
         url('fonts/mont-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

#sidenav{
    font-family: 'montserratregular';
    text-transform: uppercase;
}

.distance-container {
position: absolute;
top: 10px;
right: 10px;
z-index: 1;
}
 
.distance-container > * {
background-color: rgba(0, 0, 0, 0.5);
color: #fff;
font-size: 11px;
line-height: 18px;
display: block;
margin: 0;
padding: 5px 10px;
border-radius: 3px;
}