jqury back to top
jQuery(".backtotop").addClass("hidden-top");
jQuery(window).scroll(function () {
if (jQuery(this).scrollTop() === 0) {
jQuery(".backtotop").addClass("hidden-top")
} else {
jQuery(".backtotop").removeClass("hidden-top")
}
});
---------------------------------------------------
.csn_block_user_avatar:hover {
transform: rotate(-360deg);
transition: all 0.3s ease-in-out 0s;
}