body .custom-html table.brand tbody tr {
    align-items: stretch;
    display: flex;
    flex-direction: column;
  }

  body .custom-html table.brand tbody th,
  body .custom-html table.brand tbody td {
    align-items: center;
    align-self: stretch;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    min-height: 3rem;
    overflow: hidden;
    padding: 0 1rem 0 0;
    text-align: left;
    text-overflow: ellipsis;
  }

  body .custom-html table.brand tbody th {
    border: none;
  }

  body .custom-html table.brand tbody td {
    border-top: none;
  }

  body .custom-html table.brand tbody th:before,
  body .custom-html table.brand tbody td:before {
    align-items: center;
    align-self: stretch;
    border-right: 1px solid var(--color-table-border);
    content: attr(data-col);
    display: flex;
    margin-right: 1rem;
    min-width: 30%;
    padding-left: 8px;
    padding-right: 12px;
    text-align: left;
    text-transform: uppercase;
    white-space: normal;
    word-break: break-word;
    width: 30%;
  }

  body .custom-html table.brand tbody th:before {
    border: none;
    background-color: var(--color-secondary);
  }

  body .custom-html table.brand tbody td:before {
    color: var(--color-secondary);
    font-family: var(--font-family-heading);
    text-transform: uppercase;
    font-weight: 500;
  }
}

/* Form */

form.form > footer {
  justify-content: flex-end;
}

.ta-center {
  text-align: center;
}

div.invert {
  background-color: var(--color-primary);
  color: #fff;
  padding: var(--gap-small) var(--gap) var(--gap);
}

div.invert h3 {
  color: var(--color-secondary);
}

div.invert p {
  font-size: var(--font-size-small);
}

.button.primary:hover {
  background-color: #fff !important;
  color: var(--color-brand) !important;
}

body .main-header nav.signed-out.desktop .button.flat > a,
body .main-header nav.signed-out.desktop .button.primary > a {
  padding-left: 2rem;
  padding-right: 2rem;
}

body .main-logo.link > img {
  height: auto !important;
  width: 12rem;
}

@media (max-width: 767px) {
  label.option.client-radio-option > span .email {
    text-overflow: ellipsis;
    max-width: 72vw;
    overflow: hidden;
  }
}

.profile-details-page .side-menu-list li.menu-item:last-child {
  display: none;
}