
/* Фиксация Zero с поиском */
.uc-search {
  position: fixed;
  bottom: 0;
  top: auto;
  width: 100%;
  z-index: 999;
}

/* Стили для подсветки текста */
.current {
  border: 0px solid red;
  padding: 2px 5px;
  border-radius: 5px;
  background-color: black !important;
}
.highlight {
  background-color: grey;
  color: white;
  font-weight: 600;
}
/* Стили для формы поиска */
.searchwrap {
  display: flex;
  column-gap: 2%;
}
input#searchInput {
  width: 70%;
  padding: 10px 20px;
  font-family: 'TildaSans';
  font-size: 16px;
  background: #dfe1e8;
  border: none !important;
  border-radius: 10px;
}
#searchButton {
  height: 50px;
  width: 25%;
  background: black;
  border: none;
  border-radius: 10px;
  color: white;
  font-family: 'TildaSans';
  font-size: 16px;
  cursor: pointer;
}
#clearButton {
  position: absolute;
  top: 2px;
  right: 30%;
  left: auto;
  margin-top: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 100;
}
