.scrollToTop{
	position:fixed;
	right:20px;
	bottom:20px;
	z-index:350;
	display:flex;
	align-items:center;
	justify-content:center;
	/*width:50px;*/
	height:40px;
	border-radius:100px;
	background-color:rgba(var(--bgcolor-white-rgb), 0.9);
	box-shadow:0 0 5px rgba(0,0,0,0.17);
	color:var(--color-gray-800);
	font-size:14px;
	opacity:0;
	pointer-events:none;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
	transform:translateX(100%);
	padding-right:15px;
	padding-left:15px;
}
.scrollToTop.button-show{
	opacity:1;
	transform:none;
	pointer-events:visible;
}
.scrollToTop:before{
	content:"\f115";
	font-family:"woodmart-font";
	margin-right: 10px;
}
.scrollToTop:hover{
	color:var(--color-gray-500);
}
.wd-search-opened .scrollToTop{
	display:none;
}
@media (max-width: 1024px){
	.scrollToTop{
		right:12px;
		bottom:12px;
		width:40px;
		height:40px;
		font-size:14px;
	}
}
