/* stylelint-disable scss/at-import-no-partial-leading-underscore */
/* stylelint-disable-next-line number-max-precision */
.toast-notification {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background-color: var(--dh-color-accent-100);
  color: var(--dh-color-text);
  display: flex;
  flex-direction: row;
  align-content: center;
  padding-left: 1em;
  padding-right: 1em;
  padding-bottom: 0;
}
.toast-notification.error {
  background: var(--dh-color-negative-bg);
  color: var(--dh-color-text);
}
.toast-notification .message-container {
  flex-grow: 1;
  font-weight: 600;
  text-overflow: ellipsis;
  display: flex;
  flex-direction: row;
  align-items: center;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
}
.toast-notification .message {
  text-overflow: ellipsis;
  overflow: hidden;
}
.toast-notification .buttons-container {
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 1em;
}

.toast-notification-slide-up-enter {
  transform: translate3d(0, 100%, 0);
}

.toast-notification-slide-up-enter-active {
  transform: none;
  transition: transform 0.15s ease-out;
}

.toast-notification-slide-up-exit {
  transform: none;
}

.toast-notification-slide-up-exit-active {
  transform: translate3d(0, 100%, 0);
  transition: transform 0.15s ease-out;
}

/*# sourceMappingURL=ToastNotification.css.map */
