:root {
  --aunt-toast-z-index: var(--aunt-z-index-full-screen);
  --aunt-toast-content-background-color: rgba(0, 0, 0, 0.8);
  --aunt-toast-content-padding: var(--aunt-padding-xs) var(--aunt-padding-m);
  --aunt-toast-content-border-radius: var(--aunt-border-radius-md);
  --aunt-toast-content-color: var(--aunt-white-color);
  --aunt-toast-content-top: 20%;
  --aunt-toast-content-bottom: 20%;
  --aunt-toast-content-text-size: var(--aunt-font-size-lg);
  --aunt-toast-content-text-margin-left: var(--aunt-padding-base);
  --aunt-toast-content-text-margin-top: var(--aunt-padding-base);
}
.aunt-toast {
  z-index: var(--aunt-toast-z-index);
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  box-sizing: border-box;
}
.aunt-toast--pointer {
  pointer-events: none;
}
.aunt-toast__content {
  position: absolute;
  display: inline-flex;
  background-color: var(--aunt-toast-content-background-color);
  padding: var(--aunt-toast-content-padding);
  border-radius: var(--aunt-toast-content-border-radius);
  align-items: center;
  justify-content: center;
  color: var(--aunt-toast-content-color);
}
.aunt-toast__content--vertical {
  flex-direction: column;
}
.aunt-toast__content--horizontal {
  flex-direction: row;
}
.aunt-toast__content--center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.aunt-toast__content--top {
  top: var(--aunt-toast-content-top);
  left: 50%;
  transform: translate(-50%, -50%);
}
.aunt-toast__content--bottom {
  bottom: var(--aunt-toast-content-bottom);
  left: 50%;
  transform: translate(-50%, -50%);
}
.aunt-toast__content--spacing .aunt-toast__content--text {
  margin-left: var(--aunt-toast-content-text-margin-left);
}
.aunt-toast__content--margin {
  margin-top: var(--aunt-toast-content-text-margin-top);
}
.aunt-toast__content--text {
  white-space: pre-wrap;
  word-wrap: break-word;
  text-align: center;
  font-size: var(--aunt-toast-content-text-size);
}
