.publication-search {
  position: relative;
  max-width: 720px;
  margin: 30px 0;
}

.publication-search::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 18px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

#publication-search-input {
  width: 100%;
  height: 52px;
  padding: 12px 18px 12px 50px;
  border: 1px solid #b8b8b8;
  border-radius: 0;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.4;
  color: #333;
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

#publication-search-input::placeholder {
  color: #777;
  opacity: 1;
}

#publication-search-input:hover {
  border-color: #777;
}

#publication-search-input:focus {
  border-color: #222;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

#publication-search-input::-webkit-search-cancel-button {
  cursor: pointer;
}

.publication-search__icon {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  fill: #555;
  pointer-events: none;
}