@mixin background-opacity($color, $opacity: 0.3) {
	background: $color; // fallback
	background: rgba($color, $opacity);
}
