@-webkit-keyframes line-scale-party
{
    0%
    {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
    50%
    {
        -webkit-transform: scale(.5);
                transform: scale(.5);
    }
    100%
    {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
}

@-moz-keyframes line-scale-party
{
    0%
    {
        -moz-transform: scale(1);
             transform: scale(1);
    }
    50%
    {
        -moz-transform: scale(.5);
             transform: scale(.5);
    }
    100%
    {
        -moz-transform: scale(1);
             transform: scale(1);
    }
}

@-o-keyframes line-scale-party
{
    0%
    {
        -o-transform: scale(1);
           transform: scale(1);
    }
    50%
    {
        -o-transform: scale(.5);
           transform: scale(.5);
    }
    100%
    {
        -o-transform: scale(1);
           transform: scale(1);
    }
}

@keyframes line-scale-party
{
    0%
    {
        -webkit-transform: scale(1);
           -moz-transform: scale(1);
             -o-transform: scale(1);
                transform: scale(1);
    }
    50%
    {
        -webkit-transform: scale(.5);
           -moz-transform: scale(.5);
             -o-transform: scale(.5);
                transform: scale(.5);
    }
    100%
    {
        -webkit-transform: scale(1);
           -moz-transform: scale(1);
             -o-transform: scale(1);
                transform: scale(1);
    }
}

.line-scale-party > div:nth-child(1)
{
    -webkit-animation-duration: .52s;
       -moz-animation-duration: .52s;
         -o-animation-duration: .52s;
            animation-duration: .52s; 
    -webkit-animation-delay: .04s;
       -moz-animation-delay: .04s;
         -o-animation-delay: .04s;
            animation-delay: .04s;
}

.line-scale-party > div:nth-child(2)
{
    -webkit-animation-duration: 1.28s;
       -moz-animation-duration: 1.28s;
         -o-animation-duration: 1.28s;
            animation-duration: 1.28s; 
    -webkit-animation-delay: .65s;
       -moz-animation-delay: .65s;
         -o-animation-delay: .65s;
            animation-delay: .65s;
}

.line-scale-party > div:nth-child(3)
{
    -webkit-animation-duration: .98s;
       -moz-animation-duration: .98s;
         -o-animation-duration: .98s;
            animation-duration: .98s; 
    -webkit-animation-delay: .52s;
       -moz-animation-delay: .52s;
         -o-animation-delay: .52s;
            animation-delay: .52s;
}

.line-scale-party > div:nth-child(4)
{
    -webkit-animation-duration: .65s;
       -moz-animation-duration: .65s;
         -o-animation-duration: .65s;
            animation-duration: .65s; 
    -webkit-animation-delay: .33s;
       -moz-animation-delay: .33s;
         -o-animation-delay: .33s;
            animation-delay: .33s;
}

.line-scale-party > div
{
    display: inline-block;

    width: 4px;
    height: 3.45rem;
    margin: 2px;

    -webkit-animation-name: line-scale-party;
       -moz-animation-name: line-scale-party;
         -o-animation-name: line-scale-party;
            animation-name: line-scale-party;
    -webkit-animation-delay: 0;
       -moz-animation-delay: 0;
         -o-animation-delay: 0;
            animation-delay: 0; 
    -webkit-animation-iteration-count: infinite;
       -moz-animation-iteration-count: infinite;
         -o-animation-iteration-count: infinite;
            animation-iteration-count: infinite;

    border-radius: 2px;
    background-color: #55595c;

    -webkit-animation-fill-mode: both;
       -moz-animation-fill-mode: both;
         -o-animation-fill-mode: both;
            animation-fill-mode: both;
}
