@charset "utf-8";
/* CSS Document */

.scrollToTop {
	width:30px; height:30px; margin:0 auto; padding:0px; display:block; position:fixed; bottom:-30px; right:20px; z-index:999;
	color:#8fb73f; font-weight:bold; text-align:center;
	background-color:transparent;
	border:1px solid #8fb73f; 
	border-radius:3px;
	transition: all 0.20s linear 0s;
	-o-transition: all 0.20s linear 0s;
	-ms-transition: all 0.20s linear 0s;
	-moz-transition: all 0.20s linear 0s;
	-webkit-transition: all 0.20s linear 0s;
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
	}
.scrollToTop:hover {
	color:#fff; cursor:pointer;
	background-color:#8fb73f;
	transition: all 0.20s linear 0s;
	-o-transition: all 0.20s linear 0s;
	-ms-transition: all 0.20s linear 0s;
	-moz-transition: all 0.20s linear 0s;
	-webkit-transition: all 0.20s linear 0s;
	}

.scrollToTop .icon-arrow_up { color:#8fb73f;}
.scrollToTop:hover .icon-arrow_up { color:#fff;}