/* ********** RETOUR EN HAUT  ********** */

/* mw-backtotop */
#mw-backtotop {
	display: flex;
	align-items:center;
	justify-content:center;
	position: fixed;
	font-size: var(--wp--preset--font-size--x-large);
	background: var(--wp--preset--color--free-1);
	color: var(--wp--preset--color--txt-2);
	line-height: 1;
	right: 20px;
	bottom: 20px;
	width: 44px;
	height: 44px;
	text-decoration: none;
	border-radius: 5px;
	z-index: 9999;
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	transition: opacity .25s ease, transform .25s ease, background .2s ease;
}

#mw-backtotop span{
	transform:translateY(-5px);
}

#mw-backtotop:hover {
	background: var(--wp--preset--color--txt-2);
	color: var(--wp--preset--color--free-1);
}

#mw-backtotop.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
	
/* ***** Fin ***** */