/* Minification failed. Returning unminified contents.
(15,5): run-time error CSS1060: Expected closing curly-brace, found '0'
(18,1): run-time error CSS1019: Unexpected token, found '}'
 */
.line {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: #4b9cdb;
}


.load .line:nth-last-child(1) {animation: loading .6s .1s linear infinite;}
.load .line:nth-last-child(2) {animation: loading .6s .2s linear infinite;}
.load .line:nth-last-child(3) {animation: loading .6s .3s linear infinite;}

@keyframes loading {
    0 {transform: translate(0,0);}
    50% {transform: translate(0,8px);}
    100% {transform: translate(0,0);}
}
