ion-toast {
  /**
   * @prop --background: Background of the toast
   * @prop --button-color: Color of the button text
   * @prop --color: Color of the toast text
   */
  left: 0;
  top: 0;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  color: var(--color);
  contain: strict;
  z-index: 1000;
  pointer-events: none; }

.toast-wrapper {
  background: var(--background); }

.toast-wrapper.toast-top {
  transform: translate3d(0,  -100%,  0);
  top: 0; }

.toast-wrapper.toast-bottom {
  transform: translate3d(0,  100%,  0);
  bottom: 0; }

.toast-container {
  display: flex;
  align-items: center;
  pointer-events: auto;
  contain: content; }

.toast-button {
  font-size: 15px; }

.toast-message {
  flex: 1; }

.toast-ios {
  --background: var(--ion-background-color-step-50, #f2f2f2);
  --button-color: var(--ion-text-color-step-400, #666666);
  --color: var(--ion-text-color-step-150, #262626);
  font-family: var(--ion-font-family, inherit);
  font-size: 14px; }

.toast-ios .toast-wrapper {
  left: 10px;
  right: 10px;
  margin: auto;
  border-radius: 14px;
  display: block;
  position: absolute;
  max-width: 700px;
  z-index: 10; }

.toast-translucent-ios .toast-wrapper {
  background: rgba(var(--ion-background-color-rgb, 255, 255, 255), 0.8);
  backdrop-filter: saturate(180%) blur(20px); }

.toast-ios .toast-wrapper.toast-middle {
  opacity: .01; }

.toast-ios .toast-message {
  padding: 15px; }

.toast-ios .toast-button {
  color: var(--button-color); }
