
 .splfilter .filterDiv {
    float: left;
    
    color: #000000;
    width: 330px;
    line-height: 20px;
    text-align: center;
    margin: 10px;
    display: none; /* Hidden by default */
  }
  
  /* The "show" class is added to the filtered elements */
 .splfilter .show {
    display: block;
  }
  
  /* Style the buttons */
  .splfilter .btn {
    border: none;
    outline: none;
    padding: 7px 7px;
    background-color: #5ccbf3;
    cursor: pointer;
  }
  
  /* Add a light grey background on mouse-over */
  .splfilter .btn:hover {
    background-color:#F57F13;
  }
  
  /* Add a dark background to the active button */
  .splfilter .btn.active {
    background-color: #F1471D;
    color: white;
  }