#order-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #fff;
  padding: 12px 16px;
  font-size: 13px;
  box-shadow: 0 0px 12px rgba(0,0,0,.3);
  border-radius: 14px;
  z-index: 99998;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s, transform .4s;
  max-width: 720px;
  line-height: 1.4;
}

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

#order-toast-label {
  font-size: 10px;
  color: #666666;
  margin-bottom: 6px;
}

#order-toast-label span {
  color: #e1005b;
  margin-right: 4px;
}

#order-toast-divider {
  border: none;
  border-top: 1px solid #eee;
  margin-bottom: 6px;
}

@media screen and (max-width: 599px) {
  #order-toast {
    font-size: 12px;
    max-width: 280px;
    padding: 8px 16px;
  }
}