/**
 *
 * All animations must live in their own file
 * in the animations directory and be included
 * here.
 *
 */
/**
/*
 * Loading Dots
 * Can we use pseudo elements here instead :after?
 */
.loader-inner .text div
{
    animation: loader-inner 1s infinite alternate;
    background: #ed7632;
    border-radius: 0;
    display: inline-block;
    height: 10px;
    margin: 0 5px;
    vertical-align: top;
    width: 10px;
}

/*
 * Dots Colors
 * Smarter targeting vs nth-of-type?
 */
.loader-inner div:nth-of-type(2)
{
    animation-delay: .2s;
    background: #ed7632;
}
.loader-inner div:nth-of-type(3)
{
    animation-delay: .4s;
    background: #f17b38;
}
.loader-inner div:nth-of-type(4)
{
    animation-delay: .6s;
    background: #f58240;
}
.loader-inner div:nth-of-type(5)
{
    animation-delay: .8s;
    background: #f98746;
}
.loader-inner div:nth-of-type(6)
{
    animation-delay: 1.0s;
    background: #fc8b4a;
}
.loader-inner div:nth-of-type(7)
{
    animation-delay: 1.2s;
    background: #ff8f4f;
}

/*
 * Animation keyframes
 * Use transition opacity instead of keyframes?
 */
@keyframes loader-inner
{
    0%
    {
        opacity: 0;
    }
    100%
    {
        opacity: 1;
    }
}
