
.scrollToTop{
	width:50px;
	height:50px;
	padding:10px;
	text-align:center;
	font-weight:bold;
	color:#444;
	text-decoration: none;
	position:fixed;
	right:30px;
	display:none;
	bottom:93px;
	background-color:#0098F6;
	border:1px solid #0098F6;
	color:#FFF;
	transition:all 0.5s ease-in-out;
	z-index:2;
	border-radius:30px;
	-webkit-animation: mymove 5s infinite; 
    animation: mymove 5s infinite;
}

@-webkit-keyframes mymove {
    0%   {bottom: 80px;}
}

/* Standard syntax */
@keyframes mymove {
    0%   {bottom: 80px;}
}

.scrollToTop:hover{
	background-color:#E5175A;
	border:1px solid #E5175A;
	color:#fff;
	transition:all 0.5s ease-in-out;
}
.scrollToTop i{ 
	font-size:16px; 
	text-align:center;
	line-height:30px;
}
