// adduse

.dx-toast-content {
  display: flex;
  padding: 10px;
  align-items: center;
}

.dx-toast-icon {
  display: inline-flex;
  background-size: contain;
  width: 35px;
  height: 35px;
  background-position: left center;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.dx-toast-message {
  display: inline-flex;
}

.dx-toast-info {
  background-color: #80b9e4;
}

.dx-toast-warning {
  background-color: #ffb277;
}

.dx-toast-error {
  background-color: #f77;
}

.dx-toast-success {
  background-color: #6ec881;
}

.dx-rtl {
  .dx-toast-icon {
    margin-left: 10px;
    margin-right: 0;
  }
}

.dx-toast-stack {
  position: fixed;
  display: flex;
  gap: 3px;
  align-items: center;
  z-index: 9500;
  .dx-toast-wrapper {
    transform: translate(0) !important;
    position: static !important;
    height: auto !important;
    width: auto !important;

    .dx-toast-content {
      position: static !important;
    }
  }
}

.dx-toast-stack-down-push-direction {
  flex-direction: column-reverse;
  justify-content: flex-end;
}

.dx-toast-stack-up-push-direction {
  flex-direction: column;
  justify-content: flex-end;
}

.dx-toast-stack-left-push-direction {
  flex-direction: row;
  justify-content: flex-end;
}

.dx-toast-stack-right-push-direction {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.dx-toast-stack-down-stack-direction {
  flex-direction: column;
  justify-content: flex-start;
}

.dx-toast-stack-up-stack-direction {
  flex-direction: column-reverse;
  justify-content: flex-start;
}

.dx-toast-stack-left-stack-direction {
  flex-direction: row-reverse;
  justify-content: flex-start;
}

.dx-toast-stack-right-stack-direction {
  flex-direction: row;
  justify-content: flex-start;
}
