/*Back top top*/
.to-top {
	display:block;
	height:40px;
	width:40px;
	position:fixed;
	bottom:40px;
	right:10px;
	box-shadow:0 0 10px rgba(0,0,0,0.05);
	overflow:hidden;
	text-indent:100%;
	white-space:nowrap;
	background:#ff8a00  url(../images/chevron-up.png) no-repeat center 50%;
	background-size: 30px;
	visibility:hidden;
	opacity:0;
	-webkit-transition:all .3s;
	-moz-transition:all .3s;
	transition:all .3s;
    z-index:999999;
}

.to-top.top-is-visible {
	visibility:visible;
	opacity:1;
	
}

.to-top.top-fade-out {
	opacity:1;
}

.no-touch .to-top:hover {
	background-color:#ff8a00;
	opacity:1;
}

@media only screen and (min-width: 768px) {
	.to-top {
		right:20px;
		bottom:20px;
			}
}

@media only screen and (min-width: 1024px) {
	.to-top {
		height:50px;
		width:50px;
		right:30px;
		bottom:30px;
	
	}
}

