@charset "utf-8";
/* CSS Document */

*{
	scroll-behavior: smooth;
}
.scrollTop{
	position: fixed;
	bottom: 30px;
	right: 30px;
	padding: 10px 15px;
	background-color: rgba(73,35,101,.7);
	color: #fff;
	border-radius: 5px;
	border: 1px solid #fff;
	cursor: pointer;
	/*transition: all 0.5s ease 0s;*/
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	opacity: 0;
	transition: all 0.09s linear;
}
.scrollTop:hover{
	background-color: rgba(73,35,101,1);
}