#search {
  position: relative;
}
#search .input_wrap {
  display: block;
  box-sizing: border-box;
  line-height: 20px;
  border-bottom: 1px solid #221e1a;
  border-radius: 0;
  -webkit-appearance: none;
  padding-right: 25px;
}
#search input {
  display: block;
  width: 100%;
  line-height: 20px;
  outline: none;
  background-color: transparent;
  border: none;
  overflow: hidden;
  margin: 0;
  color: #000;
}
#search a {
  position: absolute;
  right: 0px;
  bottom: 5px;
  color: #363636;
  cursor: pointer;
  font-size: 21px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#search a:hover {
  text-decoration: none;
  color: #db4304;
}
