/*
*   Mise en forme des loaders liés aux appels ajax.
*/


.loader {
    width:20px; /*width of your image*/
    height:20px; /*height of your image*/
    background-image: url('loader.gif');
    background-repeat: no-repeat;
    margin-bottom: 6px; /* If you want no margin */
    padding:0;

}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
