.showscroll {
	opacity: 0;
	transform: translateY(40px);
}

.showscroll-visible {
	opacity: 1;
	transform: translateY(0);
    /* simple transition */
	/* transition: 1s; */
    /* pour une transition avec effet acceleration */
    transition: 1s cubic-bezier(.5, 0, 0, 1);
}