@charset "utf-8";
/* CSS Document */

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.productPhoto img {
	animation: 1.5s ease-out 0s 1 fadeIn;
}