/*
 * Default styling for products outside the current user's plan
 * (BD_CS_Plan_Status). Overridable from a child theme or Divi's own
 * Theme Options > Custom CSS via normal CSS specificity/cascade.
 */
.bd-cs-out-of-plan {
	opacity: 0.45;
	filter: grayscale(1);
	transition: opacity 0.2s ease, filter 0.2s ease;
}

.bd-cs-out-of-plan:hover {
	opacity: 0.7;
}
