#cg-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0,0,0,.84);
  color: #fff;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: all .2s ease;
  z-index: 999999;
  max-width: 92%;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
#cg-toast.cg-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
