.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 16px;
}

.search-row label {
  display: grid;
  gap: 7px;
  color: #33484f;
  font-weight: 780;
}

.search-row input {
  width: 100%;
  min-height: 50px;
  border: 1px solid #dbe7e8;
  border-radius: 10px;
  padding: 0 14px;
  color: #102026;
  font: 15px inherit;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.search-row input::placeholder {
  color: #98a6aa;
}

.search-row input:focus {
  border-color: #008f93;
  box-shadow: 0 0 0 4px rgba(0, 143, 147, .09);
  outline: none;
}

.table-wrap {
  overflow: auto;
  border: 1px solid #dfe9ea;
  border-radius: 16px;
  background: #fff;
}

.table-wrap table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
}

.table-wrap th,
.table-wrap td {
  padding: 15px 14px;
  border-top: 1px solid #edf3f3;
  text-align: left;
  vertical-align: top;
}

.table-wrap th {
  position: sticky;
  top: 0;
  z-index: 1;
  border-top: 0;
  background: #f5fbfa;
  color: #617078;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.table-wrap tr {
  transition: background .16s ease;
}

.table-wrap tbody tr:hover {
  background: #f0fbf9;
}

.table-wrap th:nth-child(1) {
  width: 49%;
}

.table-wrap th:nth-child(2) {
  width: 21%;
}

.table-wrap th:nth-child(3),
.table-wrap th:nth-child(4) {
  width: 15%;
  white-space: nowrap;
}

.table-wrap td:first-child {
  min-width: 340px;
  color: #102026;
  font-weight: 780;
}

.table-wrap td:nth-child(2),
.table-wrap td:nth-child(3),
.table-wrap td:nth-child(4) {
  color: #50646b;
  white-space: nowrap;
}

.table-wrap td:nth-child(3) {
  color: #007f82;
  font-weight: 760;
}

.table-wrap .empty {
  text-align: center;
}

@media (max-width: 800px) {
  .search-row {
    grid-template-columns: 1fr;
  }

  .search-row .button {
    width: 100%;
  }
}
