/* =========================
   TOAST GLOBAL
========================= */

.ro-toast{
  position: fixed;
  bottom: 80px;
  right: 32px;
  z-index: 9999;

  background: var(--ro-bg-0);
  border: 1px solid var(--ro--border-dolphing);
  border-radius: var(--ro-radius-16);
  padding: 12px 16px;

  box-shadow: 0 10px 30px rgba(0,0,0,.15);

  font-size: 14px;
  line-height: 1.3;

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;

  transition: opacity .2s ease, transform .2s ease;
}

@media (max-width: 640px){
  .ro-toast{
    right: 16px;
    left: 16px;
    bottom: 90px;
  }
}

.ro-toast.is-open{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* =========================
   TOAST PREMIUM
========================= */

.ro-toast{
  display: flex;
  align-items: center;
  gap: 10px;
}

.ro-toast__icon{
  display: flex;
  align-items: center;
  font-size: 18px;
}

/* SUCCESS */
.ro-toast.is-success{
  border-color: #2e7d32;
  background: #edf7ed;
  color: #1b5e20;
}

/* ERROR */
.ro-toast.is-error{
  border-color: #c62828;
  background: #fdecea;
  color: #b71c1c;
}