.dropdown{
  height: 38px;
  display: flex;
  width: 164px;
  background-color: #EBEBEB;
  border-radius: 3px;
  position: relative;
  margin: 25px 0;
}
.dropdown.dropdown_open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.dropdown .dropdown_content {
  background: #fff;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  margin: 38px 0 0;
  width: 162px;
}
.dropdown .dropdown_content li {
  border: 1px solid #ebebeb;
  display: block;
  width: 100%;
}
.dropdown .dropdown_content li a {
  background: url(../../img/search-blue.svg) no-repeat 15px center / 20px;
  color: #000;
  display: block;
  font-weight: bold;
  padding: 10px 0;
  text-align: center;
}
