

/* back to top (top go) */
.scroll-top {
	z-index: 999;
	display: none;
	font-size: 24px;
	position: fixed;
	right: 25px;
	bottom: 25px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 35px;
	text-align: center;
	color: #9c0;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	text-decoration: none;
	background-color: rgba(183, 231, 27, 0.43);
	z-index: 9999;
	
 }
 .scroll-top:hover {
		 background: #9c0;
		 color: #fff
 }