.to-top {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 64px;
	height: 64px;
	border: 2px solid white;
	border-radius: 50%;
	background-color: var(--wp--preset--color--custom-bleu-fonc);
	color: white;
	opacity: 0;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	visibility: hidden;
}

.to-top.show {
	opacity: 1;
	visibility: visible;
}

.to-top:hover {
	background-color: var(--wp--preset--color--custom-bleu-clair);
}
