.invoiceDeliveryIdentity {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 10px;
  margin: 14px 0;
  padding: 13px 14px;
  border: 1px solid #cfe0d2;
  border-radius: 14px;
  background: #f4f9f4;
}

.invoiceDeliveryIdentity > div {
  min-width: 0;
}

.invoiceDeliveryIdentity > div:last-child {
  padding-left: 12px;
  border-left: 1px solid #d9e6dc;
}

.invoiceDeliveryIdentity span:not(.invoiceShareSectionLabel) {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.invoiceDeliveryIdentity strong {
  display: block;
  overflow: hidden;
  margin-top: 5px;
  color: #254334;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.invoiceDeliveryIdentity.needsSetup {
  border-color: #e7cf9b;
  background: #fff9ed;
}

.invoiceDeliveryIdentity.needsSetup strong {
  color: #8a5a13;
}

.invoiceDeliverySetup {
  margin: 14px 0 22px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8faf8;
}

.invoiceDeliverySetup label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.invoiceDeliverySetup input {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border: 1px solid #d9e2dc;
  border-radius: 11px;
  background: #fff;
  color: var(--navy);
}

.invoiceDeliverySetup .primary {
  width: 100%;
  margin-top: 12px;
}

.invoiceTemplateIntroSecondary {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.invoiceShareSend:disabled {
  cursor: not-allowed;
  opacity: .55;
}

@media (max-width: 560px) {
  .invoiceDeliveryIdentity {
    grid-template-columns: 1fr;
  }

  .invoiceDeliveryIdentity > div:last-child {
    padding-top: 10px;
    padding-left: 0;
    border-top: 1px solid #d9e6dc;
    border-left: 0;
  }
}
