:root {
	--color-045966: #045966;
	--color-ffffff: #ffffff;
	--color-FC4C02: #FC4C02;
	--color-03434d: #03434d;
  
	--color-131921: #131921;
	--color-3b4149: #3b4149;
	--color-febd69: #febd69;
	--color-232f3e: #232f3e;
	--color-c50492: #c50492;
  }
  


#back-to-top {
	
	position: fixed;
	bottom: 3em;
	right: 0.5em;
	background-color: var(--color-c50492);
	color: #fff;
	border: none;
	border-radius: 5px;
	padding: 1em;
	text-transform: uppercase;
	cursor: pointer;
	font-weight: 700;
	box-shadow: 0 0 2em 0 rgba(0, 0, 0, .25);
	transition: all .3s ease-in-out;
	display: inline-block;
	opacity: 0;
	text-decoration: none;
	font-size: .75em;
}

#back-to-top:hover {
	background-color: var(--color-c50492);
	padding: 1em;
}

#back-to-top.visible{
	opacity: 1;
}
	
#back-to-top img{
	width: 35px;
	height: 35px;
}