.Title {
  text-align: center;
}

.Wrapper {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--st-content-max-width);
  height: auto;
  padding: var(--sl-spacing-large);
  background-color: var(--st-content-background);
  display: flex;
}

.Column {
  display: flex;
  flex-direction: column;
}
.Column > :not(:first-child) {
  margin-top: var(--sl-spacing-medium);
}

.SeperateContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

:host {
  display: block;
}

:host([hidden]) {
  display: none;
}

.SummaryWrapper {
  display: flex;
  flex-direction: column;
}
.SummaryWrapper ::slotted(*) {
  margin-top: var(--sl-spacing-medium);
}