.tractor-search-page {
  padding: 48px 0 64px;
}

.tractor-search-form {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.tractor-search-field {
  margin-bottom: 22px;
}

.tractor-search-field label {
  display: block;
  margin: 0 0 8px;
  color: #24372c;
  font-size: 14px;
  font-weight: 700;
}

.tractor-search-field label span {
  color: #737b76;
  font-size: 12px;
  font-weight: 400;
}

.tractor-search-page .select2-container {
  width: 100% !important;
}

.tractor-search-page .select2-container .select2-selection--single {
  display: flex;
  align-items: center;
  height: 48px;
  border: 1px solid #c9cec9;
  border-radius: 5px;
  background: #fff;
}

.tractor-search-page .select2-container .select2-selection--single .select2-selection__rendered {
  width: 100%;
  padding: 0 42px 0 14px;
  color: #24372c;
  font-size: 14px;
  line-height: 46px;
}

.tractor-search-page .select2-container .select2-selection--single .select2-selection__placeholder {
  color: #7b827d;
}

.tractor-search-page .select2-container .select2-selection--single .select2-selection__arrow {
  top: 50%;
  right: 10px;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
}

.tractor-search-page .select2-container .select2-selection--single .select2-selection__arrow b {
  width: 7px;
  height: 7px;
  margin: -5px 0 0 -4px;
  border: 0;
  border-right: 2px solid #087b36;
  border-bottom: 2px solid #087b36;
  transform: rotate(45deg);
}

.tractor-search-page .select2-container--open .select2-selection--single,
.tractor-search-page .select2-container--focus .select2-selection--single,
.tractor-search-page .select2-selection--single:focus {
  border-color: #087b36;
  box-shadow: 0 0 0 3px rgba(8, 123, 54, .12);
  outline: none;
}

.tractor-search-page .select2-container--disabled .select2-selection--single {
  border-color: #dfe2df;
  background: #f2f3f2;
  cursor: not-allowed;
}

.tractor-search-dropdown {
  border: 1px solid #c9cec9 !important;
  border-radius: 5px !important;
  box-shadow: 0 8px 20px rgba(23, 50, 38, .12);
  overflow: hidden;
}

.tractor-search-dropdown .select2-search--dropdown {
  padding: 8px;
}

.tractor-search-dropdown .select2-search__field {
  min-height: 38px;
  border: 1px solid #c9cec9 !important;
  border-radius: 4px;
  outline: none;
}

.tractor-search-dropdown .select2-search__field:focus {
  border-color: #087b36 !important;
  box-shadow: 0 0 0 3px rgba(8, 123, 54, .1);
}

.tractor-search-dropdown .select2-results__option {
  padding: 9px 12px;
  color: #24372c;
  font-size: 13px;
}

.tractor-search-dropdown .select2-results__option--highlighted[aria-selected] {
  background: #087b36;
  color: #fff;
}

.tractor-search-feedback {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
  color: #68726c;
  font-size: 12px;
  line-height: 1.4;
}

.tractor-search-feedback[hidden] {
  display: none;
}

.tractor-search-feedback.is-error {
  color: #a23b25;
}

.tractor-search-feedback__spinner {
  display: none;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(8, 123, 54, .2);
  border-top-color: #087b36;
  border-radius: 50%;
}

.tractor-search-feedback.is-loading .tractor-search-feedback__spinner {
  display: inline-block;
  animation: tractor-search-spin 650ms linear infinite;
}

.tractor-search-feedback__retry {
  padding: 1px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.tractor-search-feedback__retry:focus-visible {
  outline: 2px solid #087b36;
  outline-offset: 3px;
}

.tractor-search-submit {
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 5px;
  background: #087b36;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 160ms ease, opacity 160ms ease;
}

.tractor-search-submit:not(:disabled):hover {
  background: #056429;
}

.tractor-search-submit:focus-visible {
  outline: 3px solid rgba(8, 123, 54, .28);
  outline-offset: 3px;
}

.tractor-search-submit:disabled {
  cursor: not-allowed;
  opacity: .4;
}

.tractor-search-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

@keyframes tractor-search-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 575px) {
  .tractor-search-page {
    padding: 30px 0 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tractor-search-feedback__spinner {
    animation: none;
  }

  .tractor-search-submit,
  .tractor-search-page .select2-selection--single {
    transition: none;
  }
}
