
/*   EFFECTS   */
.fadeIn {
  animation-name: fadeIn;
}

.animated {
  animation-duration: 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*   FIGURE SLOTS   */
section.figure-slots {
  display: flex;
  flex: 1;
  max-height: 150px;
  height: 15vw;
  min-height: 75px;
}
section.figure-slots figure {
  display: flex;
  max-width: 220px;
  width: 15vw;
  min-width: 110px;
  height: 100%;
  background-color: #eee;
  overflow: hidden;
  justify-content: center;
  filter: grayscale(35%);
}
section.figure-slots figure:hover {
  filter: grayscale(0);
}
section.figure-slots figure img {
  transform: scale(1);
  transition: transform 1s ease;
  max-width: 300px;
  width: 46vw;
}
section.figure-slots.lr figure {
  box-shadow: 3px 0 8px rgba(0, 0, 0, 0.5);
  border-right: 2px solid #fff;
  transform: skewX(-25deg);
}
section.figure-slots.lr figure img {
  transform: skewX(25deg);
}
section.figure-slots.lr figure img:hover {
  transform: scale(1.1) skewX(25deg);
}
section.figure-slots.lr figure:first-child {
  z-index: 3;
}
section.figure-slots.lr figure:nth-child(2) {
  z-index: 2;
}
section.figure-slots.lr figure:nth-child(3) {
  z-index: 1;
}
section.figure-slots.rl figure {
  border-left: 2px solid #fff;
  transform: skewX(25deg);
  box-shadow: -3px 0 8px rgba(0, 0, 0, 0.5);
}
section.figure-slots.rl figure img {
  transform: skewX(-25deg);
}
section.figure-slots.rl figure img:hover {
  transform: scale(1.1) skewX(-25deg);
}