<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	transition:all 0.3s;
  background-color: var(--main);
  width: 65px;
  height: 65px;
  border-radius: 100px;
  text-decoration: none;
  color: #fff;
  padding: 2px;
	font-size: 0.8rem;
	line-height: 1.1rem;
}
#page-top a:hover{
	opacity: 0.8;
}

#page-top {
	position: fixed;
	right: 50px;
	z-index: 1;
	opacity: 0;
	transform: translateY(100px);
}
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}


@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}


#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 1;
	transform: translateY(100px);
  }
}
@media(max-width:768px){
	#page-top{
		padding-top: 3px;
		right: 30px;
	}
	#page-top a{
		width: 60px;
		height: 60px;
		font-size: 0.7rem;
		opacity: 0.85;
	}
}</pre></body></html>