.wm-np-selector-host > td {
  padding-top: 0 !important;
}

.wm-np-selector {
  position: relative;
  margin: 12px 0 16px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #e30613;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(17, 24, 39, .06);
  color: #2d3748;
}

.wm-np-selector__title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  font-size: 16px;
  font-weight: 600;
}

.wm-np-selector__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 24px;
  border-radius: 4px;
  background: #e30613;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}

.wm-np-selector__grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.4fr);
  gap: 14px;
}

.wm-np-field {
  min-width: 0;
}

.wm-np-field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.wm-np-required {
  color: #e30613;
}

.wm-np-city-field,
.wm-np-warehouse-field {
  position: relative;
}

.wm-np-results {
  position: absolute;
  z-index: 10050;
  top: calc(100% + 3px);
  right: 0;
  left: 0;
  max-height: 270px;
  overflow-y: auto;
  border: 1px solid #d6d9df;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 9px 24px rgba(17, 24, 39, .16);
}

.wm-np-result {
  display: block;
  width: 100%;
  padding: 9px 11px;
  border: 0;
  border-bottom: 1px solid #eef0f3;
  background: #fff;
  color: #252b35;
  text-align: left;
  line-height: 1.35;
  cursor: pointer;
}

.wm-np-result:last-child {
  border-bottom: 0;
}

.wm-np-result:hover,
.wm-np-result:focus {
  outline: 0;
  background: #fff1f2;
  color: #b60712;
}

.wm-np-result.is-empty {
  color: #6b7280;
  cursor: default;
}

.wm-np-status {
  min-height: 18px;
  margin-top: 10px;
  font-size: 13px;
}

.wm-np-status.is-success {
  color: #16803a;
}

.wm-np-status.is-error {
  padding: 8px 10px;
  border-radius: 4px;
  background: #fff1f2;
  color: #b4232d;
}

.wm-np-status.is-loading,
.wm-np-status.is-notice {
  color: #697386;
}

@media (max-width: 767px) {
  .wm-np-selector {
    padding: 13px;
  }

  .wm-np-selector__grid {
    grid-template-columns: 1fr;
  }
}
