.header {
  width: 100%;
  height: 45px;
  background-color: var(--bg-highlight);
  border-bottom: 1px solid var(--white);
}
@media (min-width: 1024px) {
  .header {
    display: none;
  }
}

.header__block {
  height: 45px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 24px 1fr 24px;
  grid-template-columns: 24px 1fr 24px;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-grid-column: 2;
  grid-column: 2;
}

.header__info {
  cursor: pointer;
}

.header-input-search {
  background: var(--bg-highlight);
  width: 100%;
  display: none;
  padding: 0 12px;
}
.header-input-search.active {
  display: block;
}

.header-search.active {
  margin-bottom: 29px;
}

.field-search__input-wrapper {
  height: 30px;
  position: relative;
  width: 100%;
}
.field-search__input-wrapper input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 14px;
  line-height: 10px;
  padding: 0 30px 0 40px;
}

.field-search__icon {
  position: absolute;
  z-index: 1;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.field-search__clear {
  position: absolute;
  z-index: 1;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.field-search__cancel {
  padding: 7px 0;
  font-size: 14px;
  display: block;
  line-height: 120%;
  color: var(--text-primary);
}

#search-form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}