.selection-box {
  border: var(--panel-border);
  color: var(--panel-color);
  background-color: var(--panel-bgcolor);
  margin-bottom: 3rem;
  padding-bottom: 0.2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.selection-box .header-row {
  font-weight: bold;
  font-size: var(--font-size-header3);
  display: grid;
  grid-template-columns: auto 1fr 3rem;
}
.selection-box .header-row .header-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.5rem 1rem 1rem 0;
}
.selection-box .header-row .arrow-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    width: 2rem;
    height: 2rem;
}
.selection-box .col > div {
  margin-right: 0.3rem;
}
.selection-box select {
  width: 100%;
}
.selection-box .select-narrow {
  width: 50%;
}
.selection-box label,
.selection-box label-like {
  font-weight: bold;
  white-space: nowrap;
}
.selection-box fieldset .form-row .col div div[class$="-fields"] {
  display: grid;
  grid-gap: 0rem;
  margin-top: 1rem;
  height: 3.6rem;
}
.selection-box select[id$="-transport-select"] {
  position: relative;
  top: -0.1rem;
}
.selection-box button[class^="add-"],
.selection-box button[class^="edit-"] {
  width: auto;
  text-transform: none !important;
  text-decoration: underline;
  border: none;
  background-color: transparent;
  color: var(--color-palette4);
  padding: 0 0 1rem 0;
  vertical-align: top;
  align-self: flex-start;
}
.selection-box button[class^="edit-"] {
  height: 1.3125rem;
  margin-left: 1rem;
}
.selection-box input {
  width: 100%;
}

.address-fields {
  display: grid;
  grid-template-columns: 25% 30% 45%;
}
.address-fields dl dd {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-info-fields {
  display: grid;
  grid-template-columns: 40% 30% 30%;
}
.contact-info-fields dl dd {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notify-info-fields {
  display: grid;
  grid-template-columns: 100%;
}
.notify-info-fields dl dd {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
