@charset "utf-8";
/* CSS Document */
#prodclick {
    opacity: 0;
    animation: fadeInRight 2s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

#prodclick2 {
    opacity: 0;
    animation: fadeInRight 2s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
}

.fadeInRight {
  -webkit-animation-name: fadeInRight 2s;
  animation-name: fadeInRight;
}