/* Dropdown Button */
/* for sorting on year and category
*/
button {
  background-color: #9de457;
  text-decoration: none;
  border: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin: 0.2em;
  padding: 8px 12px;
  cursor: pointer;
  border-width: 1px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  -webkit-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.filter {
  display: none;
}

.activebtn {
	background-color: #62b264;
}

.show {
  display: block;
}
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #9de457;
  min-width: 120px;
  border: 2px solid;
  z-index: 1;
  border-style: outset;
}

/* Links inside the dropdown */
.dropdown-content button {
  color: black;
  padding: 6px;
  border: none;
  min-width: inherit;
  text-align: left;
  text-decoration: none;
  display: block;
}
.dropbtn {
  margin-top: 1em;
}
/* Change color of dropdown links on hover */
.dropdown-content button:hover {background-color: #62b264;}


/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #62b264;}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px)  {
  .dropdown-content button {
      font-size: 0.7em;
  }
  .container > button {
      font-size: 0.7em;
  }
  .dropdown > button  {
      font-size: 0.7em;
  }
}
