/**
 *  TapToTop Plugin. Tap the element to jump to the top of the page.
 */
#tapToTop {
	border: 1px solid #bebebe;
	border-radius: 7px;
	width: 49px;
	height: 49px;
	font-size: 0px;
	color: white;
	background: -webkit-gradient(linear,left top,left bottom,from(#f6f6f6),to(#e2e2e2));
	position: fixed;
	bottom: -52px;
	right: 20px;
	opacity: 0;
	-webkit-transform: translate3d(0,0,0);
    -webkit-transition: all ease-out .5s;

}
#tapToTop.shown {
    bottom: 20px;
    opacity: .8;
}
#tapToTop:active {
    background: #eee;
}
#tapToTop .circumflex {
    position: absolute;
    top: 19px;
    left: 20px;
}
#tapToTop .bar {
	width: 22px;
	height: 5px;
	border-top: 1px solid #a66d00;
	border-radius: 8px;
	background: #fbc300;
	position: absolute;
}
#tapToTop .circumflex .bar {
	-webkit-transform: rotate(45deg);
}
#tapToTop .circumflex .bar:first-child {
	-webkit-transform: rotate(-45deg);
	left: -13px;
}
