
#dropmenu-wrapper {
	z-index: 2; /* TODO Solve this in HTML */
}

@media only screen and (max-width: 590px){
  .dropmenu {
	  position: absolute;
    width: 100%;
    text-align: center;
    bottom: 10px;
    z-index: 2;
    position: fixed;
  }
}

@media only screen and (min-width: 591px), print {
  .dropmenu {
    position: absolute;
    right: 30px;
    bottom: 10px;
    z-index: 2;
    position: fixed;
  }
}
.dropbtn {
  padding: 8px 4px;
  border: none;
}

.dropup {
  position: relative;
  display: inline-block;
}

.dropup-content {
  display: none;
  position: absolute;
  min-width: 48px;
  bottom: 68px;
  z-index: 2;
}

.dropup-content a {
  color: black;
  padding: 0px 4px;
  text-decoration: none;
  display: block;
}
/*
.dropup-content a:hover {background-color: #ccc}
*/
.dropup:hover .dropup-content {
  display: block;
}

.dropup:hover .dropbtn {
}