/*--------------------------------------------------------------------------*\
    Object "shaken" (example : error message)
\*--------------------------------------------------------------------------*/

@keyframes loading {

	0% {
		/*box*/
		left: 0;
		width: 0%;
	}

	50% {
		/*box*/
		left: 0;
		width: 100%;
	}

	100% {
		/*box*/
		left: 100%;
		width: 0%;
	}

}

.anim-name-loading {
    /*animation*/
    animation-name: loading;
    -webkit-animation-name: loading;
}