/* Toast component styles */

.toast-container {
  transition: all 0.3s ease-in-out;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 500;
  transform: translateY(100%);
}

.toast-container.toast-open {
  transform: translateY(0%);
}

.toast {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  color: var(--white);
  box-shadow: var(--grey-700) 0px 0px 10px;
}

.toast-success {
  background-color: var(--success);
}

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

.toast-icon {
  width: 1.1rem;
  height: 1.1rem;
}

.toast-text {
  font-family: "Lato";
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
}

/* 640px */
@media (min-width: 40rem) {
}

/* 768px */
@media (min-width: 48rem) {
  .toast-container {
    left: auto;
    max-width: 600px;
  }
}

/* 1024px */
@media (min-width: 64rem) {
  .toast-container {
    max-width: 50rem;
  }
}

/* 1280px */
@media (min-width: 80rem) {
  .toast-container {
    max-width: 60rem;
  }
}

/* 1536px */
@media (min-width: 96rem) {
}

/* 1920px */
@media (min-width: 120rem) {
}
