#cg-toast{
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0,0,0,.8);
  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: 90%;
  text-align: center;
}
#cg-toast.cg-show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
