/*
 ----------------------------- 
 PVII Scroll To Top
 by Project Seven Development
 www.projectseven.com
 Core CSS
 -----------------------------
*/

.p7STT {
	padding: 1em;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: right;
	position: fixed;
	display: none;
	z-index: 999999999;
	
}

/*For old browsers*/
.p7STT.dark {
	background-color: #222;
	color: #AAA;
}
.p7STT.light {
	background-color: #fff;
	color: #fff;
}
/*End Older Browsers*/

.p7STT.dark {
	background: rgba(0,0,0,.9);
}
.p7STT.light {
	background: rgba(255,255,255,0);
}
.p7STT.bottom {
	bottom: 0px;
	width: 100%;
	right: -16px;
}
.p7STT.right {
	right: 6px;
	bottom: 25px;
	padding: 0px 6px 2px 6px;
	font-size: 4.5em;
	border-radius: 5px;
}
.p7STT.right span {
	display: none;
}
.p7STT.right i:before {
	padding: 0px;
}
.p7STT-anchor {
	text-decoration: none;

	
}
.p7STT.dark .p7STT-anchor {
	color: #fff;
}
.p7STT.dark .p7STT-anchor:hover {
	color: #fff;
}
.p7STT.light .p7STT-anchor {
	color: #fff;
}
.p7STT.light .p7STT-anchor:hover {
	color: #fff;
}
.p7STT-anchor i {
   font-style: normal;
} 
.p7STT-anchor i:before {
	/*content: url(../assets/arrow-up.png);
	padding-right: -4px;*/
	
}

/* animations for arrows */

/* arrow on right */
.p7STT.right {
	opacity: 0;
	margin-bottom:60px;
	-webkit-transition: opacity 1s, margin-top .5s;
	transition: opacity 1s, margin-top .5s;
}
.p7STT.right.p7stt-on {
	opacity: 1;
	margin-top: 0px;
}

/* bottom overlay */
.p7STT.bottom {
	opacity: 0;
	bottom:-100px;
	-webkit-transition: opacity 1s, bottom 1s;
	transition: opacity 1s, bottom 1s;
}
.p7STT.bottom.p7stt-on {
	opacity: 1;
	bottom: 0px;
}

.p7STT-scroll-to-top {
	font-size: inherit;	
}

