/*----------------Sharing Function Block-----------------*/
#shareBlock{
	 position:fixed;
	 top: 50%;
	 left: 0;
	 width: 40px;
	 height: auto;
	 z-index: 99;
	 margin-top: -60px;
	 border-radius: 0 3px 3px 0;
	 overflow: hidden;
	 background-color: #811954;
 }
#shareBlock a { cursor: pointer; }
#shareBlock img { opacity: 0.7; }
#shadowBlock { display: none; }
.shareIcon{
	 float: left;
	 width: 40px;
	 height: 40px;
	 text-align:center;
	 transition: background-color 0.3s ease;
}
 .shareIcon:hover { background: rgba(255,255,255,0.1); }
 .version{ float: left; }

@media (max-width: 991px) {
	/*----------------Sharing Function Block-----------------*/
	#shareBlock { bottom: 0; left: 2%; top: auto; /*width: 100%;*/ width: calc(96% - 70px); border-radius: 5px 0 0 0; }
	#shadowBlock {
		 position: absolute;
		 top: -30px;
		 display: block;
		 width: 100%; 
		 height: 30px; 
		/* background: url(../img/diviShd_Up.png) no-repeat; */
		 background-position: center top;
		 background-size: cover;
		 pointer-events: none;
		 
	}
	.shareIcon { width: 25%; height: 40px; margin: 0; }
	.share { height: inherit; }
	.version{ float: none; width: auto; }
}

/* BACK TO TOP */
.back-to-top {
	opacity: 0.8;
	text-indent: -9999px;
	width: 50px;
	height: 50px;
	right: 15px;
	bottom: 15px;
	position: fixed;
	z-index: 100;
	background-color: #811954;
	transition: all 0.2s ease;
	border-radius: 3px;
}
.back-to-top:after {
	content: '';
    border: solid white;
    border-width: 0 2px 2px 0;
    width: 20px;
    height: 20px;
    display: block;
    padding: 5px;
    top: 50%;
    left: 50%;
    position: absolute;
    margin-top: -4px;
    margin-left: -10px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}
.back-to-top:hover {	
	opacity: 1;
}
@media only screen and (max-width: 991px) {
	.back-to-top { width: 70px; bottom: 0px; height: 40px; border-radius: 0 5px 0 0;  }
}