@keyframes toast-anim {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0%);
  }
}
.toast-container {
  width: 40vw;
  height: auto;
  position: fixed;
  display: inline-flex;
  align-items: start;
  padding: 0.5rem;
  padding-bottom: 2rem;
  gap: 1.5rem;
  background-color: var(--panel);
  border-radius: 3px;
  box-shadow: 0px 0px 3px var(--border);
  z-index: 99999;
  animation: toast-anim 0.2s forwards;
}

.toast-container button {
  margin-left: auto;
  border: none;
  background-color: transparent;
  font-size: medium;
}

.toast-content {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.toast-content h1 {
  font-size: small;
  font-weight: bold;
}

.toast-content p {
  margin: 0;
  font-size: smaller;
}

.toast-icon {
  width: fit-content;
  height: fit-content;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 0.2rem;
  padding-bottom: 0;
  border-radius: 999px;
  color: #fff;
}

.toast-close-btn {
  color: var(--text);
  font-size: small;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .toast-container {
    width: 60vw;
  }
}

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