@keyframes alert {
  0% {
    translate: -50% 200%;
  }
  3% {
    translate: -50% 0;
  }
  50% {
    translate: -50% 0;
  }
  97% {
    translate: -50% 0;
  }
  100% {
    translate: -50% 200%;
  }
}
.alert {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 10;
  translate: -50% 0;
  width: auto;
  padding: 0.75rem 2rem;
  border-radius: 0.25rem;
  box-shadow: 0 0.2rem 0.4rem -0.1rem rgb(0 0 0 / 0.4);
  animation: alert 5s ease-out forwards;

  pre {
    line-height: 1.6;
  }

  button {
    position: absolute;
    top: -0.75rem;
    right: -0.5rem;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    width: 1.5rem;
    height: 1.5rem;
    display: grid;
    place-content: center;
    font-size: 0.75rem;
  }

  &.success {
    background: #cfffcf;
    button {
      background: #3f9d3f;
    }
  }
  &.danger {
    background: #ffd4cf;
    button {
      background: #dc4231;
    }
  }
}
