.container {
  overflow: hidden;
}

.filterDiv {
  display: none; /* Hidden by default */
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

/* Style the buttons */
.btn {
    font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  color:#ffb46d;
  background-color:#06383186;
  cursor: pointer;
  border: 1px solid #fff;
  outline: none;
  transition: 0.2s;
}

/* Add a light grey background on mouse-over */
.btn:hover {
    background-color: #088178;
    border: 1px solid #088178;
    color:bisque;
}

/* Add a dark background to the active button */
.btn.active {
    color:#ffb46d;
    background-color:#063831;
}