#toast-container {
  .ngx-toastr {
    @extend .toaster__body;
    box-shadow: unset;

    &.toast-success {
      @extend .success;
    }

    &.toast-error {
      @extend .error;
    }

    &.toast-warning {
      @extend .warning;
    }

    &.toast-info {
      @extend .info;
    }

    &:hover {
      box-shadow: unset;
    }

    .toast-close-button {
      @extend .close-button;

      span {
        display: none;
      }
    }

    background-image: unset;
  }
}
