.main-search {
  height: 44px;
  width: 100%;
  background-color: var(--bg-highlight);
  padding: 7px 0;
}
@media (min-width: 1024px) {
  .main-search {
    display: none;
  }
}

.main-search_input-container {
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  height: 100%;
}
.main-search_input-container span {
  color: var(--text-disabled);
  font-size: 14px;
  line-height: 12px;
  display: inline-block;
  margin-top: 2px;
}

.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;
}