/*========================================*/
/*              ANIMATION                 */
/*========================================*/

@keyframes slideIn {
  0% {
    transform: translateX(0px) scale(.95);
    opacity: .0;
  }
  100% {
    transform: translateX(0px) scale(1);
    opacity: 1;
  }
}

.slidein.is-visible {
  animation: slideIn .2s ease-in-out forwards;
}