#oais-alert-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  width: 348px;
  height: auto;
  max-height: 100vh;
  overflow-y: hidden;
  z-index: 99999;
  padding: 1rem 1rem 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.oais-alert-box {
  display: flex;
  border-radius: 4px;
  background-color: #4cb050;
  color: #fff;
  cursor: pointer;
  user-select: none;
  min-height: 48px;
  align-items: center;
  transition: opacity 300ms;
}

.oais-alert-box.oais-alert-error {
  background-color: #e65e5e;
}

.oais-alert-box.oais-alert-info {
  background-color: #ffa500;
}

.oais-alert-box.oais-alert-warn {
  background-color: #5192db;
}

.oais-alert-box-icon {
  width: 64px;
  min-width: 64px;
  margin-right: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
}

.oais-alert-box-content {
  padding: 6px 1rem 6px 0;
  font-size: 0.875rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
}
