﻿@keyframes move1
{
    0%
    {
        transform: translate3d(0,-100%,0);
    }
    to
    {
        transform: translateZ(0);
    }
}
@keyframes move2
{
    0%
    {
        transform: translate3d(0,-100%,0);
    }
    to
    {
        transform: translateZ(0);
    }
}
@keyframes in
{
    0%
    {
        transform: translate3d(0,-100%,0);
    }
    to
    {
        transform: translateZ(0);
    }
}
.animated-row:nth-child(odd)
{
    animation: move1 .5s forwards;
}
.animated-row:nth-child(2n)
{
    animation: move2 .5s forwards;
}
.animated-row:first-child
{
    animation: in .5s forwards;
}/*# sourceMappingURL=2f5c6177e6d0a847.css.map*/