.tariff-top {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 12px !important;
  justify-content: stretch !important;
}

.tariff-dialog select,
.tariff-dialog input {
  width: 100%;
  border: 1px solid #dbe1dc;
  border-radius: 8px;
  background: white;
  padding: 10px;
  font: inherit;
}

.tariff-mode {
  display: grid;
  gap: 12px;
  padding: 15px;
  border-radius: 10px;
  background: #f5f8f6;
}

.product-marking-dialog {
  width: min(850px, calc(100vw - 32px));
}

.product-marking-dialog form {
  max-height: calc(100vh - 80px);
}

#productMarkingSearch {
  width: 100%;
}

#productMarkingRows {
  display: grid;
  gap: 7px;
  overflow: auto;
  min-height: 160px;
  max-height: 52vh;
}

.marking-product {
  display: grid !important;
  grid-template-columns: 28px 150px 1fr 90px;
  align-items: center;
  justify-content: stretch !important;
  gap: 10px !important;
  padding: 9px 11px;
  border-radius: 8px;
  background: #f4f7f5;
}

.marking-product input {
  width: 18px;
  height: 18px;
}

.marking-product small {
  color: #718078;
}

@media (max-width: 700px) {
  .tariff-top {
    grid-template-columns: 1fr;
  }

  .marking-product {
    grid-template-columns: 28px 1fr;
  }

  .marking-product small {
    grid-column: 2;
  }
}
