
/*-----------------------------------------------------------------------------------*/
/*	26. GO BACK BUTTON
/*-----------------------------------------------------------------------------------*/
.go-back-wrapper {
    position: fixed;
	visibility: hidden;
	overflow: hidden;
	text-align: center;
	z-index: 99999999;
    background: rgba(21,69,107,0.65);
	color: #fff;
	width: 50px;
	height: 48px;
	line-height: 48px;
	right: 12px;
	bottom: 30px;
	padding-top: 2px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.go-back-wrapper:hover {
	background-color: #15456b;
}

.go-back-wrapper.show {
    visibility:visible;
    cursor:pointer;
	opacity: 1.0;
}
.go-back-wrapper i.fa {
	line-height: inherit;
}