.lcNotify.lcNotify-notes {
  width: calc(100% - 1rem);
  max-width: 350px;
  top: auto;
  left: .5rem;
  right: auto;
  bottom: .5rem;
  overflow: hidden;
}

.lcNotify .note .notifyRemove {
  position: static;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  margin: -0.5rem;
  border-radius: 4px;
}

.lcNotify .note .notifyRemove .icon {
  width: 1rem;
  height: 1rem;
}

.lcNotify.lcNotify-notes {
  display: flex;
  flex-direction: column-reverse;
}

.lcNotify.lcNotify-notes .note:not(:last-child) {
  margin-bottom: 0;
  margin-top: .75rem;
}

.lcNotify .note {
  position: relative;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  animation: lcNotifyIn .15s ease-in-out both;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1rem;
  font-family: var(--bs-font-sans-serif);
  border-radius: 4px;
  font-size: small;
  gap: 1rem;
}

.lcNotify .notify-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

.lcNotify .note[style] {
  animation: lcNotifyOut .15s ease-in-out both;
}

.lcNotify .note .content a {
  color: var(--tb-mono-white);
  text-decoration: underline;
}

.lcNotify .note.note-success,
.lcNotify .note.note-success:hover {
  background-color: var(--bs-gray-800);
  color: var(--tb-mono-white);
}

.lcNotify .note.note-success .notify-icon {
  fill: var(--bs-success);
}

.lcNotify .note.note-danger,
.lcNotify .note.note-danger:hover {
  color: var(--tb-mono-white);
  background-color: var(--acre-error-state);
}

.lcNotify .note.note-danger .notify-icon {
  fill: #FFF;
}

.lcNotify .note .content {
  margin-right: auto;
}

.lcNotify .note .content :where(p:last-child, ul:last-child) {
  margin-bottom: 0;
}

@media (min-width: 992px) {

  .lcNotify.lcNotify-notes {
    max-width: 450px;
    top: 1rem;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translateX(-50%);
  }

  .lcNotify .note {
    padding: 1rem 1.5rem;
    font-size: inherit;
    animation: lcNotifyInLg .15s ease-in-out both;
  }

  .lcNotify .note[style] {
    animation: lcNotifyOutLg .15s ease-in-out both;
  }
}