:host {
  display: block;
}

dl {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  cursor: default;
}

dt {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 4px;
}

dt,
dt.subTitle {
  color: #757575;
}

dt.mainTitle {
  color: #212121;
}

dt,
dd {
  overflow-wrap: anywhere;
}

dd {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  color: #212121;
}

dd:not(:last-child) {
  margin-bottom: 16px;
}

dl.spacedout,
dl.horizontal {
  display: flex;
  flex-direction: row;
  width: 100%;
}

dl.spacedout {
  justify-content: space-between;
}

dl.horizontal div {
  flex-grow: 1;
}

@media (max-width: 769px) {
  dl.horizontal {
    flex-wrap: wrap;
  }

  dl.horizontal div {
    width: 50%;
    max-width: 50% !important;
  }
}
@media (max-width: 600px) {
  dl.horizontal div {
    width: 100%;
    max-width: 100% !important;
  }
}