.toast {
  position: fixed;
  right: 20px;
  bottom: 82px;
  z-index: 30;
  max-width: 320px;
  padding: 13px 16px;
  background: var(--deep);
  color: #fff;
  box-shadow: -4px 4px 0 var(--coral);
  font-size: 11px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: 0.2s;
}

.toast.visible {
  opacity: 1;
  transform: none;
}

.js-group-link:disabled {
  cursor: wait;
  opacity: 0.8;
}
