.vce-card-top {
  margin: 2rem 2rem 0 2rem;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.vce-card {
  position: relative;
  background-color: var(--p-surface, white);
  border-radius: var(--p-border-radius-wide, 3px);
  box-shadow: var(--p-card-shadow, 0 0 0 1px rgba(63, 63, 68, 0.05), 0 1px 3px 0 rgba(63, 63, 68, 0.15));
  margin: 2rem;
}
.vce-card.small-margin {
  margin: 1rem;
}
.vce-card .vce-card__header {
  padding: 1.4rem 2rem;
  border-top-left-radius: var(--p-border-radius-wide, 3px);
  border-top-right-radius: var(--p-border-radius-wide, 3px);
  font-weight: 700;
  background-color: #F9FAFD;
  min-height: 60px;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.vce-card .vce-card__header > i {
  margin-right: 0.7em;
}
.vce-card .vce-card__section {
  position: relative;
}
.vce-card .vce-card__section.padding {
  padding: 1.2em 2rem 2rem 2rem;
}
.vce-card .vce-card__section .table-padding tr th:first-of-type,
.vce-card .vce-card__section .table-padding tr td:first-of-type {
  padding-left: 2rem !important;
}
.vce-card .vce-card__section .table-padding tr th:last-of-type,
.vce-card .vce-card__section .table-padding tr td:last-of-type {
  padding-right: 2rem !important;
}
.vce-card .vce-card__section .table-padding tr:first-of-type th {
  padding-top: 1rem !important;
}
.vce-card .vce-card__footer {
  border-bottom-right-radius: var(--p-border-radius-wide, 3px);
  border-bottom-left-radius: var(--p-border-radius-wide, 3px);
  padding: 1.4rem 2rem;
  border-radius: 0 0 var(--p-border-radius-wide, 3px) var(--p-border-radius-wide, 3px);
  font-weight: 700;
  background-color: #F9FAFD;
  min-height: 50px;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.vce-value-block {
  display: flex;
  flex-wrap: wrap;
}
.vce-value-block .block {
  flex-basis: 15em;
  min-width: 10em;
}
.vce-value-block .block:not(:last-child) {
  margin-right: 1em;
}
.vce-value-block .block .entry {
  margin-bottom: 1em;
}
.vce-value-block .block .entry .label {
  padding-bottom: 0.2em;
  opacity: 0.7;
  line-height: 1.4em;
}
.vce-value-block .block .entry .value {
  color: #667181;
  font-weight: 700;
  max-width: 15em;
  text-overflow: ellipsis;
  word-wrap: none;
  overflow: hidden;
}
.vce-popup {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  transform: translateY(-50px);
  transition: transform 0.1s, opacity 0.05s linear 0.05s;
  opacity: 0;
  visibility: hidden;
  background-color: white;
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15);
}
.vce-popup.visible {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
  z-index: 10;
}
.vce-content-header {
  margin: 2rem 2rem 0 2rem;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.vce-content-header > div {
  display: flex;
  align-items: center;
}
.vce-content-header > div:not(:last-child) {
  margin-right: 0.5em;
}
.vce-content-header .vce-content-header__title {
  font-weight: 700;
  font-size: large;
  margin-left: 0.5em;
}
