﻿@keyframes moveRightToLeft1
{
    0%
    {
        transform: translate3d(100%,0,0);
    }
    to
    {
        transform: translateZ(0);
    }
}
@keyframes moveRightToLeft2
{
    0%
    {
        transform: translate3d(100%,0,0);
    }
    to
    {
        transform: translateZ(0);
    }
}
@keyframes moveRightToLeftIn
{
    0%
    {
        transform: translate3d(100%,0,0);
    }
    to
    {
        transform: translateZ(0);
    }
}
.animated-row-horizontal:nth-child(odd)
{
    animation: moveRightToLeft1 .5s forwards;
}
.animated-row-horizontal:nth-child(2n)
{
    animation: moveRightToLeft2 .5s forwards;
}
.animated-row-horizontal:first-child
{
    animation: moveRightToLeftIn .5s forwards;
}/*# sourceMappingURL=0336657f51fb7ba6.css.map*/