input[type=text] {
  font-family: "Helvetica", "IcoFont", Arial, sans-serif;
  font-weight: 500;
  min-width: 275px;
  height: 40px;
  margin-top: 1.5em;
  padding-left: 15px;
  font-size: 14px;
  border-style: none;
  margin-bottom: 1em;
  border-radius: 7px;
  background-color: rgb(200,200,205,0.15);
}
input[type=text]:focus {
  background-color: transparent;
  outline: black;
  border: 2px;
  border-style: solid;
  border-color: #e14504;
  border-radius: 7px;
}
::placeholder{
  color: rgb(0,0,0,0.8);
  padding-left: 5px;
}

.search i {
  position: absolute;
  left: 10px;
  top: 55%;
  transform: translateY(-50%);
  color: #666;
}
.search input {
  padding-left: 30px;
}

.search {
  float: top; 
  position: relative;
  display: inline-block;
}
.search-results {
  border-radius: 7px;
  margin-top: -0.75em;
  display: none;
  background-color: #e14504;
  position: absolute;
  min-width: 275px;
  box-shadow: 0px 6px 12px 0px rgba(0,0,0,0.5);
  z-index: 1;
}
.search-results a {
  color: white;
  padding: 12px 10px;
  text-decoration: none;
  font-family: "Helvetica", "IcoFont", Arial, sans-serif;
  font-size: 12px;
  display: block;
  min-height: 40px;
  border: none;
  border-radius: 7px;
  background-color: #e14504;
}
.search-results a:hover {
  color: white;
  background-color: rgb(255,255,255,0.3);
}    