.ListingSearchForm {
  margin: 0 auto;
  border-radius: 9px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  width: 593px;
  height: 146px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-left: 28px;
  padding-right: 28px;
  background-color: rgba(255,255,255,0.8);
}
@media screen and (max-width: 980px) {
  .ListingSearchForm {
    max-width: 100%;
    gap: 12px;
    padding: 18px 18px 22px;
  }
}
.ListingSearchForm-Label {
  color: #131313;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.85px;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .ListingSearchForm-Label {
    font-size: 14px;
  }
}
.ListingSearchForm__Row {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 9px;
}
.ListingSearchForm-Field {
  border: 2px solid #a1a1a1;
  border-radius: 6px;
  flex: 1;
  min-width: 0;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  background-color: #eee;
}
@media screen and (max-width: 980px) {
  .ListingSearchForm-Field {
    height: 52px;
  }
}
.ListingSearchForm-Icon {
  flex-shrink: 0;
  width: 24px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ListingSearchForm-Icon-Image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ListingSearchForm-Input {
  border: none;
  outline: none;
  flex: 1;
  min-width: 0;
  background: transparent;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.44px;
  color: #131313;
}
.ListingSearchForm-Input::placeholder {
  color: #9a9a9a;
}
@media screen and (max-width: 980px) {
  .ListingSearchForm-Input {
    font-size: 15px;
    letter-spacing: 1px;
  }
}
.ListingSearchForm-Submit {
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s;
  flex-shrink: 0;
  width: 102px;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0d366d;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 3.61px;
}
.ListingSearchForm-Submit:hover {
  opacity: 0.88;
}
@media screen and (max-width: 980px) {
  .ListingSearchForm-Submit {
    width: 80px;
    height: 52px;
    font-size: 15px;
    letter-spacing: 2px;
  }
}
