.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);
}

.Row {
  display: flex;
  margin-top: 0;
}
.Row > :not(:first-child) {
  margin-left: var(--sl-spacing-large);
}
.Row > * {
  flex: 1;
}

.ErrorStyles::part(base) {
  background: var(--sl-color-danger-10);
  border-color: var(--sl-color-danger-500);
  outline: var(--sl-color-danger-500);
}
.ErrorStyles:host {
  --something-random: red;
  --focus-ring: 0 0 0 var(--sl-focus-ring-width) red !important;
}
.ErrorStyles::part(input) {
  color: var(--sl-color-danger-500);
}
.ErrorStyles::part(input):-webkit-autofill, .ErrorStyles::part(input):-webkit-autofill:hover, .ErrorStyles::part(input):-webkit-autofill:focus, .ErrorStyles::part(input):-webkit-autofill:active {
  box-shadow: 0 0 0 var(--sl-input-height-large) var(--sl-input-background-color-hover) inset !important;
  -webkit-text-fill-color: var(--sl-color-danger-500);
}
.ErrorStyles::part(help-text) {
  color: var(--sl-color-danger-500);
}

:host {
  display: block;
}

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

.LoadingWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  right: 0;
  left: 0;
  position: absolute;
}

.LoadingCSS {
  position: relative;
  margin-top: 64px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #ccc;
  color: #ccc;
  animation: dotFlashing 1s infinite linear alternate;
  animation-delay: 0.5s;
}
.LoadingCSS::before, .LoadingCSS::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
}
.LoadingCSS::before {
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #ccc;
  color: #ccc;
  animation: dotFlashing 1s infinite alternate;
  animation-delay: 0s;
}
.LoadingCSS::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #ccc;
  color: #ccc;
  animation: dotFlashing 1s infinite alternate;
  animation-delay: 1s;
}
@keyframes dotFlashing {
  0% {
    background-color: #ccc;
  }
  50%, 100% {
    background-color: #eee;
  }
}

:host {
  margin: 0 auto;
  width: 100%;
}