

.search-input-area {
  width: 160px;
}

.search-input {
  width: 135px;
  box-shadow: rgba(0, 0, 0, 0.4) 0 2px 4px;
  -moz-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 4px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 4px;
  font-family: Roboto,Arial,sans-serif;
  padding: 4px 5px 3px 5px;
  border: 1px solid #A9BBDF;
}

.search-results {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  text-align: center;
  position: relative;
  font-family: Arial, sans-serif;
  font-size: 13px;
  box-shadow: rgba(0, 0, 0, 0.4) 0 2px 4px;
  -moz-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 4px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 4px;
  color: #000;
  border: 1px solid #717B87;
  background-color: #fff;
  overflow-y: auto;
}

.search-results-item {
  padding: 1px 5px 3px 5px;
  text-align: left;
}

.search-results-item:hover {
  background: #ebebeb;
}



.clear-icon {
  position: relative;
  padding: 0;
  background-color: transparent;
  top: 1px;
  vertical-align: middle;
  outline: 0;
  cursor: pointer;
}
.clear-icon:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30px;
}
.clear-icon:after {
  content: "X";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  background-color: gray;
  z-index:1;
  right: 5px;
  top: -2px;
  bottom: 0;
  margin: auto;
  padding: 0px;
  border-radius: 50%;
  text-align: center;
  color: white;
  font-weight: normal;
  font-size: 12px;
  box-shadow: 0 0 2px lightgray;
  cursor: pointer;
}
