
#fixedTop {
	right: 50px;
	top: 50px;
	width: 150px;
	height: 150px;
	position: fixed;
	z-index: 9999;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	transform: scale(0);
	display: block;
}

#fixedTop img { width: 100%; }

#fixedTop:hover { opacity: 0.8; }

#fixedTop.show {
	transform: scale(1);
	-webkit-transform: translateZ(1);
}

@media screen and (max-width: 767px) {

#fixedTop {
	right: 10px;
	top: 20px;
	width: 70px;
	height: 70px;
}

}