.alert {
  position: fixed;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.alert .alert-container {
  height: fit-content;
  width: fit-content;
  background-color: white;
  border-radius: 15px;
  border: 1px solid grey;
  transition: top 0.3s ease, height 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  top: -60px;
  position: absolute;
}
.alert .alert-container.active {
  top: 20px;
}
.alert .alert-instance {
  display: none;
}
.alert .alert-instance.active {
  display: initial;
}

/*# sourceMappingURL=alert.css.map */
