// This file is part of the Front Foundation package.
//
// Copyright (c) 2017-present LIN3S <info@lin3s.com>
//
// For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code.
//
// @author Mikel Tuesta <mikeltuesta@gmail.com>

$animation-vertical-node-in: vertical-node-in .5s ease-in-out;
$animation-infinite-scale-out: scale-out 1.5s infinite ease-in-out;

@keyframes vertical-node-in {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-out {
  0% {
    transform: scale(0);
  }

  66%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
