.panel-search {
  color: #828282;
  position: relative;
}
.panel-block--search {
  padding: 14px 40px;
  filter: drop-shadow(0px 4px 19px rgba(0, 0, 0, 0.08));
  border: none;
  outline: none;
  background: white;
  width: 100%;
  font-size: 20px;
  line-height: 26px;
}
.search-icon {
  position: absolute;
  right: 18px;
  top: 0;
  bottom: 0;
  color: #999999;
}
.search-results {
  position: absolute;
  top: 54px;
  z-index: 90;
  width: 100%;
  filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.15));
}
.search-result {
  padding: 15px 48px;
  background: white;
  border-bottom: 1px solid rgba(228, 228, 228, 0.2);
  cursor: pointer;
  display: block;
  text-decoration: none;
  font-size: 18px;
  line-height: 19px;
}
.search-result:hover {
  background: var(--accent-sub-color);
  color: #ffffff;
}

@media (max-width: 767px) {
  .panel-block--search {
    padding: 14px 15px;
    font-size: 18px;
  }
  .search-icon {
    right: 4px;
  }
  .search-result {
    padding: 14px 15px;
    font-size: 16px;
    line-height: 17px;
  }
}