@charset "UTF-8";
/* CSS Document */

#toTop {
	display: none;
	position: fixed; /* Fixed/sticky position */
	bottom: 12px;
	right: 20px;
	z-index: 99; /* Make sure it does not overlap */
	border: none;
	outline: none;
	background-color: #ffffffaa;
	color: #ce59a0!important;
	cursor: pointer;
	padding: 8px 10px 4px 10px;
	border-radius: 50%;
 
	font-size: 18px; /* Increase font size */
	list-style:none !important; 
	text-decoration: none !important;
	text-decoration-thickness: 0px !important;
	text-underline-offset: 0px !important;
}

#toTop:hover {
  background-color: #DADADA;
}

#toTop:focus, #toTop:focus-visible {
	color: #ffffff!important;
	background-color: #ce59a0;
}