.show {display: block !important;}
#myInput {
  box-sizing: border-box;
  background-image: url('searchicon.png');
  background-position: 14px 12px;
  background-repeat: no-repeat;
  font-size: 16px;
  padding: 14px 20px 12px 45px;
  border: none;
  border-bottom: 1px solid #ddd;
  width: 100%;
}
#myInput:focus {outline: 3px solid #ddd;}
.dropdown {
  position: relative;
  display: block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f6f6f6;
  min-width: 230px;
  border: 1px solid #ddd;
  z-index: 100;
}
.dropdown.form-style .dropbtn {
  width: 35px;
  text-align: center;
  background-color: white;
  color: #333;
  padding: .5em .75em;
  font-size: 16px;
  border: 1px solid #d5d5d5;
  cursor: pointer;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
}
.dropdown.form-style .dropbtn:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 1em;
  margin-left: 4px;
  float: right;
}
.dropdown.form-style .dropdown-content {
  padding: 0 .5em;
  width: 100%;
}
.dropdown.form-style .dropdown-list {
  overflow: auto;
  max-height: 500px;
}
.dropdown.form-style .dropdown-content a {
  color: black;
  padding: .5em .75em;
  text-decoration: none;
  display: block;
}
.dropdown.form-style .dropdown-content a:hover {
  background: #1668d3;
  color: white;
}