/* Disabled look used for blacked buttons and pills */
.btn.disabled,
.btn[aria-disabled="true"] {
  background: #111 !important;
  color: #fff !important;
  opacity: .6 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  text-decoration: none !important;
}
.pill.is-disabled {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}
select option[disabled] { color: #999; }
/* Black (disable) any Buy rendered in cards or items */
.actions .btn[href="#"],
.actions .btn[aria-disabled="true"],
.actions .btn.disabled {
  pointer-events: none !important;
  cursor: not-allowed !important;
  opacity: .55 !important;
  filter: grayscale(100%) !important;
  background: #111 !important;
  color: #fff !important;
  text-decoration: none !important;
}
