/* C O L O R S */
/*
#00b1e6 - hellblau
#004a99 - dunkelblau
#ee7f00 - orage
#008d36 - gruen
#87888a - textgrau
*/

nav {
  display: none;
  background: #004a99;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 6;
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background-color: #004a99;
}

nav ul li {
  float: left;
}

nav a, nav a:visited {
  color: white;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-align: center;
}

nav a:hover {
  background-color: #00b1e6;
  cursor: pointer;
}

nav .is-active {
  background-color: #00b1e6;
  color: white;
}

nav .right-element {
  float: right;
}

.shrinkedHidden {
  display: none;
  padding-top: 16px;
  padding-right: 8px;
  padding-left: 8px;
  cursor: pointer;
}

.iconContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  line-height: 0;
  flex-wrap: wrap;
}

@media only screen and (min-width: 800px) {
   #btnMenu {
     display: none;
   }
   
   #btnReload {
     display: none;
   }
   
   .shrinkedHidden {
    display: block;
    padding-bottom: 16px;
  }
}
