/* Image style */
#scrollUp {
    background: url("./images/top.png") left top no-repeat;
    background-size: contain;
    bottom: 25px;
	right: 25px;
    width: 65px;    /* Width of image */
    height: 65px;   /* Height of image */
	font-size: 0;
	line-height: 0;
	text-indent: -9999px;
    transition: 0.3s ;
}

#scrollUp:hover {
    transform:rotateY(180deg);
}

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

#scrollUp {
    width: 40px;    /* Width of image */
    height: 40px;   /* Height of image */
}

}
