/* Filter Button Box*/
.filterPopdown {
background:black
}
/* Popdown Button */
.popbtn {
  background-color: black;
  color: white;
  padding: 3px 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.popbtn:hover, .popbtn:focus {
  background-color: #b37500;
}

/* The container <div> - needed to position the dropdown content */
.popdown {
  position: relative;
  display: inline-block;
}
.popdown button{
    color: #007bff;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

/* Dropdown Content (Hidden by Default) */
.popdown-content {
    background-color:#e9ecef;
    position: relative;
    width: 400px;
    height: 180px;
    text-align: center;
    border: 4px solid #b37500;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 2px 2px 4px #888;
    -moz-box-shadow: 2px 2px 4px #888;
    box-shadow: 2px 2px 4px #888;
    display:none;
  z-index: 1;
}
.popdown-content img{height:150px;float:left;padding:10px 0 0 10px}
.popdown-content p{height:1em;padding:0;margin:5px;}

@media only screen and (max-width: 600px) {
    .popdown-content{
        width: 100%;
    }
}

/* Links inside the dropdown */
.popdown-content a {
  color: white;
  padding: 3px 10px;
  text-decoration: none;
  display: block;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}