::-webkit-scrollbar {
  width: 4px;
  display: none;
}
::-webkit-scrollbar-thumb {
  background: #cbd5f5;
  border-radius: 10px;
}

.toast {
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.4s ease;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.hide {
  transform: translateX(100%);
  opacity: 0;
}
@media (max-width: 640px) {

/* toast.css */
.toast {
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.hide {
  transform: translateY(-20px);
  opacity: 0;
}
}
