/* CSS for dropdowns by Viis, adapted from Quinn's */

.dd-show {
  display: block !important;
}

.dd-right {
  right: 0;
}

.dropbtn {
  background-color: #429AB2;
  background-image: none;
  color: #FDCB00;
  cursor: pointer;
  font-size: 13px;
  padding: 16px;
}

.dropbtn:hover,
.dropbtn:focus {
  background-color: #007899;
}

.dropdown {
  display: inline-block;
  position: relative;
}

.dropdown-content {
  background-color: #F9F9F9;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  display: none;
  min-width: 500px;
  position: absolute;
  white-space: nowrap;
  width: auto;
  z-index: 2;
}

.c_forum .dropdown-content {
  min-width: 350px;
}

.dropdown-content a {
  color: black;
  display: block;
  padding: 12px 16px;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #F1F1F1;
}