.dropdown {
	position: relative;
	display: inline-block;
	width: 100%;
}

.dropdown input{
	padding-left:8px;    
	padding-right: 33px !important;
}
.dropdown:before{
	font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f002";
    position: absolute;
    right: 6px;
    top: 0px;
    font-size: 19px;
    line-height: 41px;
}

.dropdown .dropdown-content {
  position: absolute;
  background-color: #f6f6f6;
  min-width: 230px;
  border: 1px solid #ddd;
  z-index: 1;
  max-height: 200px;
  overflow: auto;
  padding: 0px;
  top: calc(100% + 0px);
  width: 100%;
  border-radius: 3px;
}
.dropdown .dropdown-content:not(.shown){
  display: none;
}

/* Links inside the dropdown */
.dropdown .dropdown-content a {
  color: black;
  padding: 9px 10px;
  text-decoration: none;
  width: 100%;
  display: inline-block;
  background-color: #fff;
  border-bottom: 1px solid #efefef;
}

/* Change color of dropdown links on hover */
.dropdown .dropdown-content a.selected,
.dropdown .dropdown-content a:hover {
	background-color: #f1f1f1;
}