#myInput {
    background-image: url('/css/searchicon.png'); /* Add a search icon to input */
    background-position: 10px 12px; /* Position the search icon */
    background-repeat: no-repeat; /* Do not repeat the icon image */
    width: 90%; /* Full-width */
    font-size: 16px; /* Increase font-size */
    padding: 15px 10px 12px 15px; /* Add some padding */
    border: 1px solid #ddd; /* Add a grey border */
    margin-bottom: 20px; /* Add some space below the input */
  }
  
  #myUL {
    /* Remove default list styling */
    list-style-type: none;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 20px;
    margin-top: -35px;
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 50px;
  }
  
  #myUL li a {
    border: 0px solid #ddd; /* Add a border to all links */
    margin-top: -1px; /* Prevent double borders */
    background-color: #e0e0e0; /* Grey background color */
    padding: 12px; /* Add some padding */
    text-decoration: none; /* Remove default text underline */
    font-size: 18px; /* Increase the font-size */
    color: black; /* Add a black text color */
    display: block; /* Make it into a block element to fill the whole list */
  }
  
  #myUL li a:hover:not(.header) {
    box-sizing: border-box;
    background-color: #eee; /* Add a hover effect to all links, except for headers */
  }

  .container {
    overflow:none;
  }
  
  .filterDiv {
    float: none;
    color: #000000;
    width:100%;
    font-size: 1rem;
    text-align: left;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 40px;
    margin-top: -35px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    display: none; /* Hidden by default */
  }
  
  /* The "show" class is added to the filtered elements */
  .show {
    display: block;
  }


  .floatShowAll {
    margin-top: -130px;
    margin-left: 233px;
    margin-right: 0px;
    margin-bottom: 0px;
  }

  .mg10px {
    margin-right: 14px;
  }