/* Efecto aparición templates - auto_detail */
.bmw-reveal:not(.bmw-visible) {
	opacity: 0 !important;
	transform: translate3d(0, 70px, 0) !important;
}

.bmw-reveal.bmw-visible {
	animation: bmwRevealIn 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
}

@keyframes bmwRevealIn {
	from {
		opacity: 0;
		transform: translate3d(0, 70px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}
