.to-top {	position: fixed;	bottom: 230px;  right: 30px;	transform: scale(0);	display: flex;	align-items: center;	justify-content: center;	width: 50px;	height: 50px;	font-size: 1.25rem;	border-radius: 0;	box-shadow: none;	opacity: 0;	background: #9f5f80;	color: #fff;	will-change: transform;	z-index: 10;	transition: .2s;}.to-top.show {	transform: scale(1);	opacity: 1;	transition: all 0.2s, transform 0.2s cubic-bezier(0.5, 0, 1, 2);}.to-top.active, .to-top:hover {	background: #9F5F80;	color: #fff;	cursor: pointer;}@media (max-width: 375px){	.to-top {		width: 45px;		height: 45px;	}}