.customer-card {
  align-items: center;
}

.customer-b2b {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(120px, 0.45fr) minmax(170px, 0.7fr) minmax(220px, 1.4fr) auto;
  gap: 10px;
  align-items: end;
  padding: 13px;
  border: 1px solid #d7e0e7;
  border-radius: 10px;
  background: #f5f8fa;
}

.customer-b2b label {
  display: grid;
  gap: 5px;
  color: #50657a;
  font-size: 11px;
  font-weight: 800;
}

.customer-b2b input,
.customer-b2b select {
  min-width: 0;
  width: 100%;
  height: 38px;
  border: 1px solid #bdcad4;
  border-radius: 7px;
  background: white;
  color: #102b44;
  padding: 0 10px;
}

.customer-b2b button {
  height: 38px;
  border: 0;
  border-radius: 7px;
  background: #173d63;
  color: white;
  padding: 0 15px;
  font-weight: 900;
  cursor: pointer;
}

.customer-b2b-state {
  display: inline-flex;
  width: max-content;
  margin-top: 6px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #edf1f4;
  color: #52697d;
  font-size: 10px;
  font-weight: 900;
}

.customer-b2b-state.active {
  background: #e3f5eb;
  color: #14734d;
}

.customer-b2b-state.pending {
  background: #fff2d5;
  color: #8a5a00;
}

@media (max-width: 1050px) {
  .customer-b2b {
    grid-template-columns: 1fr 1fr;
  }

  .customer-b2b button {
    grid-column: 1 / -1;
  }
}
.source-badge.ertline {
  background: #fff2bf;
  color: #735300;
}
