.flash {
  display: flex;
  inset-block-start: var(--block-space);
  inset-inline-start: 50%;
  justify-content: center;
  position: fixed;
  transform: translate(-50%);
  z-index: 6;
}

.flash__inner {
  align-items: center;
  animation: appear-then-fade 4s 300ms both;
  background-color: var(--flash-background, var(--color-positive));
  border-radius: 2em;
  color: white;
  display: flex;
  gap: 0.5em;
  padding: 0.75em 1.5em;

  img {
    flex-shrink: 0;
  }
}

.flash__text {
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}
