#error {
  color: var(--text-color-light);
  transition-property: transform;
  transition-duration: 0.3s;
  transform: translateY(-100%);
  width: 100vw;
  height: min-content;
  word-break: break-word;
  overflow-wrap: break-word;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.error-success {
  background-color: darkgreen;
}

.error-error {
  background-color: var(--error-background-color);
}

.error-info {
  background-color: darkblue;
}

.error-open {
  transform: translateY(0) !important;
  visibility: visible !important;
}

.error-container {
  height: 100%;
}
