html.wcg-active,
body.wcg-active,
body.wcg-active * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
body.wcg-active input,
body.wcg-active textarea,
body.wcg-active select,
body.wcg-active option,
body.wcg-active button,
body.wcg-active [contenteditable="true"],
body.wcg-active .wcg-allow-copy,
body.wcg-active .weisewelt-allow-copy,
body.wcg-active .woocommerce input,
body.wcg-active .woocommerce textarea,
body.wcg-active .woocommerce select,
body.wcg-active .woocommerce button,
body.wcg-active .woocommerce-cart,
body.wcg-active .woocommerce-checkout,
body.wcg-active .woocommerce-account {
  -webkit-touch-callout: auto !important;
  -webkit-user-select: text !important;
  -khtml-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}
#wcg-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2147483647;
  max-width: 320px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(17,24,39,.94);
  color: #fff;
  font: 14px/1.35 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
#wcg-toast.wcg-show {
  opacity: 1;
  transform: translateY(0);
}
